/* =========================================
   LIAM SONGSSTUDIO — SHOP-FIRST LAYOUT
   Etsy-inspired structure, Liam visual identity
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --background: #0d0b09;
    --background-soft: #12100d;
    --panel: #17130f;
    --card: #1a1612;
    --cream: #f4eadc;
    --cream-soft: #d9cab9;
    --muted: #9e9185;
    --gold: #d8af7c;
    --brown-light: #b98a60;
    --border: rgba(244, 234, 220, 0.12);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--background);
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
a {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================================
   NAV
========================================= */

.navbar {
    height: 78px;
    padding: 0 7%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 8, 7, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-script {
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 31px;
    color: var(--cream);
    transform: rotate(-3deg);
}

.brand-studio {
    margin-top: 3px;
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--cream-soft);
}

.desktop-nav {
    display: flex;
    gap: 34px;
    align-items: center;
}

.desktop-nav a {
    font-size: 12px;
    color: #c6bbb0;
    transition: 0.2s;
}

.desktop-nav a:hover {
    color: var(--cream);
}

.cart-button {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    color: var(--cream);
    background: transparent;
    border: 1px solid rgba(244, 234, 220, 0.27);
    border-radius: 999px;
}

.cart-count {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    color: #17110d;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================
   BANNER
========================================= */

.shop-banner {
    height: clamp(280px, 31vw, 520px);
    position: relative;
    overflow: hidden;
    background: #090806;
}

.shop-banner-image {
    position: absolute;
    inset: 0;
    background-image: url("images/liam-banner.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1.01);
}

.shop-banner-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 4, 3, 0.72) 0%,
        rgba(5, 4, 3, 0.24) 48%,
        rgba(5, 4, 3, 0.34) 100%
    );
}

.shop-banner-copy {
    position: absolute;
    left: 7%;
    bottom: 10%;
    z-index: 2;
    max-width: 600px;
    text-shadow: 0 2px 25px rgba(0, 0, 0, 0.75);
}

.shop-banner-copy > p {
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 10px;
}

.shop-banner-copy h1 {
    font-family: Georgia, serif;
    font-weight: 400;
    font-size: clamp(38px, 4vw, 68px);
    line-height: 0.98;
}

.shop-banner-copy h1 span {
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-weight: 400;
    color: var(--cream-soft);
}

.shop-banner-copy small {
    display: block;
    margin-top: 18px;
    color: #d8cdc0;
    letter-spacing: 1.5px;
}


/* =========================================
   SHOP PROFILE
========================================= */

.shop-profile-wrap {
    border-bottom: 1px solid var(--border);
    background: #0f0d0b;
}

.shop-profile {
    max-width: 1450px;
    margin: auto;
    padding: 25px 7% 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.shop-profile-left {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.shop-avatar {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: radial-gradient(
        circle at 30% 25%,
        #37281d,
        #17110d 62%,
        #090706
    );
    overflow: hidden;
}

.shop-avatar .brand-script {
    font-size: 28px;
}

.shop-meta h2 {
    font-family: Georgia, serif;
    font-weight: 400;
    font-size: 26px;
}

.shop-meta > p {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.shop-badges {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--cream-soft);
    font-size: 11px;
}

.shop-badges span:first-child {
    color: var(--gold);
}

.shop-profile-actions {
    display: flex;
    gap: 10px;
}

.profile-button {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--cream-soft);
    font-size: 11px;
    transition: 0.2s;
}

.profile-button:hover {
    border-color: rgba(244, 234, 220, 0.34);
    color: var(--cream);
}

.profile-button-solid {
    background: var(--cream);
    color: #16110d;
    border-color: var(--cream);
}

.profile-button-solid:hover {
    color: #16110d;
    opacity: 0.9;
}

.shop-tabs {
    max-width: 1450px;
    margin: auto;
    padding: 0 7%;
    display: flex;
    gap: 30px;
}

.shop-tabs a {
    padding: 13px 2px 12px;
    position: relative;
    color: var(--muted);
    font-size: 12px;
}

.shop-tabs a:hover,
.shop-tabs a.active {
    color: var(--cream);
}

.shop-tabs a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--cream);
}


/* =========================================
   STORE
========================================= */

.music-section {
    padding: 42px 7% 110px;
    background: var(--background);
}

.store-shell {
    max-width: 1450px;
    margin: auto;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 42px;
}

.store-sidebar {
    padding-top: 3px;
}

.sidebar-block {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.sidebar-label {
    margin-bottom: 12px;
    color: var(--brown-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.sidebar-link,
.sidebar-info {
    display: block;
    padding: 6px 0;
    color: var(--muted);
    font-size: 12px;
}

.sidebar-link.active {
    color: var(--cream);
    font-weight: 700;
}

.sidebar-note {
    padding: 18px;
    background: var(--panel);
    border: 1px solid var(--border);
}

.sidebar-note > span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 22px;
}

.sidebar-note p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.sidebar-note strong {
    color: var(--cream-soft);
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.section-eyebrow {
    margin-bottom: 6px;
    color: var(--brown-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
}

.catalog-toolbar h2 {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 400;
}

.catalog-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box {
    width: min(310px, 35vw);
    height: 42px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: #15120f;
    border: 1px solid var(--border);
    border-radius: 999px;
}

.search-box span {
    color: var(--muted);
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--cream);
    font-size: 12px;
}

.search-box input::placeholder {
    color: #72675d;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 11px;
}

.sort-box select {
    padding: 9px 10px;
    color: var(--cream-soft);
    background: #15120f;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 7px;
}

.catalog-count-row {
    margin: 18px 0 19px;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 10px;
}


/* =========================================
   PRODUCT GRID
========================================= */

.music-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.music-card {
    min-width: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    transition: transform 0.25s ease;
}

.music-card:hover {
    transform: translateY(-4px);
}

.music-card[hidden] {
    display: none !important;
}

.song-art {
    position: relative;
    aspect-ratio: 9 / 16;
    height: auto;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 5px;
    background: #17110e;
}

.song-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/liam-logo.jpg");
    background-size: cover;
    background-position: center;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.song-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 45%,
        rgba(0, 0, 0, 0.58)
    );
}

.song-art-two::before {
    background-position: 45% center;
}

.song-art-three::before {
    background-position: 60% center;
}

.music-card:hover .song-art::before {
    transform: scale(1.035);
    filter: brightness(0.94);
}

.song-art > video,
.song-art > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.song-art > video {
    cursor: pointer;
}

.song-number {
    position: absolute;
    top: 12px;
    left: 13px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.72);
    font-size: 9px;
    letter-spacing: 2px;
}

.play-button {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 4;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: rgba(5, 4, 3, 0.58);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 13px;
    opacity: 0;
    transform: scale(0.92);
    transition: 0.2s;
}

.music-card:hover .play-button,
.play-button:focus {
    opacity: 1;
    transform: scale(1);
}

.play-button:hover {
    background: var(--cream);
    color: #17110d;
}

.music-info {
    padding: 11px 2px 4px;
}

.song-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.song-type {
    color: var(--brown-light);
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.rating {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 1px;
}

.music-info h3 {
    margin-top: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--cream);
}

.artist-name {
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
}

.song-description {
    display: none;
}

.format-list {
    margin-top: 7px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.format-list span {
    padding: 3px 5px;
    color: #bcae9f;
    background: rgba(244, 234, 220, 0.04);
    border: 1px solid rgba(244, 234, 220, 0.06);
    font-size: 7px;
    letter-spacing: 0.3px;
}

.music-bottom {
    margin-top: 8px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 8px;
}

.music-bottom > div {
    display: flex;
    flex-direction: column;
}

.music-bottom small {
    color: #7e7369;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.price {
    margin-top: 1px;
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: 17px;
}

.add-cart-button {
    padding: 7px 8px;
    border: 1px solid rgba(244, 234, 220, 0.23);
    border-radius: 5px;
    background: transparent;
    color: var(--cream-soft);
    font-size: 8px;
    transition: 0.2s;
}

.add-cart-button:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: #17110d;
}


/* =========================================
   QUOTE
========================================= */

.quote-section {
    min-height: 420px;
    display: grid;
    place-items: center;
    padding: 80px 7%;
    background-image:
        linear-gradient(
            rgba(9, 7, 6, 0.78),
            rgba(9, 7, 6, 0.91)
        ),
        url("images/liam-banner.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quote-inner {
    max-width: 800px;
    text-align: center;
}

.quote-mark {
    display: block;
    height: 58px;
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 1;
    color: var(--brown-light);
}

.quote-inner p {
    font-family: Georgia, serif;
    font-size: clamp(28px, 4vw, 50px);
    font-style: italic;
    line-height: 1.25;
}

.quote-inner p span {
    display: block;
    color: var(--cream-soft);
}

.quote-inner small {
    display: block;
    margin-top: 24px;
    font-family: "Brush Script MT", cursive;
    font-size: 26px;
    color: var(--gold);
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    max-width: 1350px;
    margin: auto;
    padding: 120px 7%;
    display: grid;
    grid-template-columns: minmax(280px, 470px) 1fr;
    gap: 85px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    width: 92%;
    height: 92%;
    left: -18px;
    bottom: -18px;
    border: 1px solid rgba(216, 175, 124, 0.25);
}

.about-image img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-content h2,
.section-heading h2,
.cta-section h2 {
    font-family: Georgia, serif;
    font-weight: 400;
}

.about-content h2 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
}

.about-content h2 span {
    display: block;
    margin-top: 8px;
    color: #81756b;
    font-style: italic;
}

.about-content > p:not(.section-eyebrow) {
    max-width: 610px;
    margin-top: 22px;
    color: var(--muted);
    line-height: 1.85;
}

.text-link {
    display: inline-block;
    margin-top: 26px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--brown-light);
    font-size: 12px;
}


/* =========================================
   REVIEWS
========================================= */

.reviews-section {
    padding: 105px 7%;
    background: #110e0b;
    border-top: 1px solid var(--border);
}

.section-heading {
    max-width: 1450px;
    margin: 0 auto 42px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 52px);
}

.overall-rating {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.overall-rating strong {
    font-family: Georgia, serif;
    font-size: 40px;
    font-weight: 400;
}

.overall-rating span {
    color: var(--gold);
    letter-spacing: 2px;
}

.reviews-grid {
    max-width: 1450px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    min-height: 250px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--card);
    border: 1px solid var(--border);
}

.review-stars {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
}

.review-card > p {
    color: var(--cream-soft);
    font-family: Georgia, serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
}

.review-user {
    margin-top: 24px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #2e251e;
    font-size: 11px;
}

.review-user > div:last-child {
    display: flex;
    flex-direction: column;
}

.review-user strong {
    font-size: 10px;
}

.review-user small {
    color: #8d9c82;
    font-size: 8px;
}

.review-note {
    max-width: 1450px;
    margin: 20px auto 0;
    color: #756b62;
    font-size: 9px;
    text-align: right;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 120px 7%;
    text-align: center;
}

.cta-section h2 {
    max-width: 800px;
    margin: auto;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
}

.cta-section h2 span {
    display: block;
    margin-top: 10px;
    color: #82776d;
    font-style: italic;
}

.primary-button {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream);
    border-radius: 3px;
    background: var(--cream);
    color: #17110d;
    font-size: 12px;
    font-weight: 700;
}

.cta-section .primary-button {
    margin-top: 34px;
}


/* =========================================
   CART
========================================= */

.cart-panel {
    width: min(460px, 100%);
    height: 100vh;
    position: fixed;
    top: 0;
    right: -500px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    background: #15110e;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    transition: right 0.35s ease;
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    padding: 28px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.cart-header p {
    color: var(--brown-light);
    font-size: 8px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.cart-header h2 {
    font-family: Georgia, serif;
    font-weight: 400;
    font-size: 28px;
}

.cart-header button {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--cream);
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.cart-header button:hover {
    background: rgba(244, 234, 220, 0.07);
    border-color: rgba(244, 234, 220, 0.25);
}

.cart-items {
    flex: 1;
    padding: 24px 28px;
    overflow-y: auto;
}

.empty-cart {
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muted);
}

.empty-cart span {
    margin-bottom: 12px;
    font-size: 28px;
    color: var(--cream-soft);
}

.empty-cart p {
    font-family: Georgia, serif;
    font-size: 19px;
    color: var(--cream);
}

.empty-cart small {
    margin-top: 6px;
}


/* CART PRODUCT ROW */

.cart-item {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--border);
}

.cart-item > div {
    min-width: 0;
    flex: 1;
}

.cart-item h3 {
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

.cart-item p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
}


/* FIXED REMOVE BUTTON */

.remove-cart-item {
    flex: 0 0 auto;
    align-self: center;

    padding: 7px 12px;

    border: 1px solid rgba(185, 138, 126, 0.25);
    border-radius: 6px;

    background: rgba(185, 138, 126, 0.05);
    color: #c79a8d;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.4px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

.remove-cart-item:hover {
    background: rgba(185, 138, 126, 0.13);
    border-color: rgba(185, 138, 126, 0.48);
    color: #efd2ca;
    transform: translateY(-1px);
}

.remove-cart-item:active {
    transform: translateY(0);
    background: rgba(185, 138, 126, 0.18);
}


/* CART FOOTER */

.cart-footer {
    padding: 25px 28px 30px;
    border-top: 1px solid var(--border);
}

.cart-total {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-total span {
    color: var(--muted);
}

.cart-total strong {
    font-family: Georgia, serif;
    font-size: 24px;
}

.checkout-button {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--cream);
    background: var(--cream);
    color: #17110d;
    font-weight: 700;
    transition:
        background 0.2s ease,
        opacity 0.2s ease;
}

.checkout-button:hover:not(:disabled) {
    background: #fff8ef;
}

.cart-footer > p {
    margin-top: 10px;
    color: #756b62;
    font-size: 8px;
    text-align: center;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 2500;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.cart-overlay.active {
    visibility: visible;
    opacity: 1;
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 65px 7% 38px;
    text-align: center;
    background: #080706;
    border-top: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 8px;
    letter-spacing: 5px;
}

.footer-brand .brand-script {
    margin-bottom: 5px;
    font-size: 40px;
    letter-spacing: 0;
}

footer > p {
    margin-top: 12px;
    color: var(--muted);
    font-family: Georgia, serif;
    font-style: italic;
}

.footer-links {
    margin: 28px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
}

.footer-links a {
    color: var(--cream-soft);
    font-size: 10px;
}

footer > small {
    color: #5d554e;
    font-size: 8px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1180px) {

    .music-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .store-shell {
        grid-template-columns:
            160px minmax(0, 1fr);
        gap: 30px;
    }

}


@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .shop-profile {
        align-items: flex-start;
    }

    .shop-profile-actions {
        display: none;
    }

    .store-shell {
        grid-template-columns: 1fr;
    }

    .store-sidebar {
        display: none;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-controls {
        width: 100%;
    }

    .search-box {
        width: 100%;
        flex: 1;
    }

    .music-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .about-section {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .review-card:last-child {
        grid-column: span 2;
    }

}


@media (max-width: 620px) {

    .navbar {
        height: 70px;
        padding: 0 5%;
    }

    .brand-script {
        font-size: 26px;
    }

    .brand-studio {
        font-size: 7px;
        letter-spacing: 4px;
    }

    .cart-button {
        padding: 8px 11px;
    }

    .shop-banner {
        height: 260px;
    }

    .shop-banner-image {
        background-position: 43% center;
    }

    .shop-banner-copy {
        left: 5%;
        right: 5%;
        bottom: 9%;
    }

    .shop-banner-copy h1 {
        font-size: 38px;
    }

    .shop-banner-copy small {
        font-size: 9px;
    }

    .shop-profile {
        padding: 18px 5% 14px;
    }

    .shop-avatar {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .shop-meta h2 {
        font-size: 20px;
    }

    .shop-meta > p {
        display: none;
    }

    .shop-badges {
        gap: 7px;
        font-size: 9px;
    }

    .shop-tabs {
        padding: 0 5%;
        gap: 22px;
    }

    .music-section {
        padding: 28px 5% 75px;
    }

    .catalog-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-box {
        justify-content: space-between;
    }

    .catalog-count-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-count-row span {
        display: none;
    }

    .music-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 11px;
    }

    .play-button {
        opacity: 1;
        width: 40px;
        height: 40px;
    }

    .song-type,
    .rating {
        font-size: 7px;
    }

    .music-info h3 {
        font-size: 12px;
    }

    .format-list {
        display: none;
    }

    .music-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .add-cart-button {
        width: 100%;
    }

    .quote-section {
        min-height: 330px;
        padding: 60px 6%;
        background-attachment: scroll;
    }

    .about-section {
        padding: 85px 6%;
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .reviews-section {
        padding: 80px 5%;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card:last-child {
        grid-column: auto;
    }

    .review-note {
        text-align: left;
    }

    .cta-section {
        padding: 90px 6%;
    }

    .cart-panel {
        width: 100%;
    }

    .cart-header,
    .cart-items,
    .cart-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .remove-cart-item {
        padding: 6px 9px;
        font-size: 8px;
    }

}