:root {
    --bg: #f8f3ee;
    --paper: #fffdf9;
    --surface: #ffffff;
    --text: #1f1a17;
    --muted: #6f655f;
    --line: rgba(31, 26, 23, 0.1);
    --accent: #ba8d4a;
    --accent-dark: #8a6231;
    --shadow: 0 20px 60px rgba(42, 26, 10, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #FFF;
    color: var(--text);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

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

a:hover,
a:focus,
a:active,
a:visited {
    color: inherit;
    text-decoration: none;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

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

.site-main {
    padding-bottom: 110px;
}

.header-top {
    border-bottom: 1px solid var(--line);
    background: #20675f;
}

.header-top__inner,
.site-header__inner,
.main-nav__inner,
.search-form__row,
.section-heading,
.product-card__footer,
.product-meta-list div,
.cart-summary__line,
.admin-panel__head,
.admin-topbar,
.header-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-top__inner {
    min-height: 46px;
    font-size: 13px;
    color: var(--muted);
}

.header-top__links {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.header-top__links a,
.header-top__links span,
.header-top__inner p {
    color: rgba(255, 255, 255, 0.92);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: #FFF;
    border-bottom: 1px solid rgba(31, 26, 23, 0.06);
}

.site-header__inner {
    padding: 20px 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.mobile-header-tools {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-icon-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #20675f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.site-logo img {
    width: 194px;
   
}

.site-logo strong,
.hero-card__content h1,
.hero-card__content h2,
.section-heading h2,
.listing-hero h1,
.product-summary h1,
.detail-panel h2,
.admin-topbar h1,
.admin-panel h2,
.empty-state h3,
.cart-summary h3 {
    font-family: "Outfit", Arial, sans-serif;
}

.site-logo strong {
    display: block;
    font-size: 28px;
}

.site-logo small,
.price-block span,
.product-card__meta,
.footer-copy,
.remove-link,
.product-short-description,
.review-card p,
.side-panel a,
.results-bar,
.admin-topbar p,
.admin-stats-inline,
.admin-card span {
    color: var(--muted);
}

.search-form {
    flex: 1;
    max-width: 620px;
}

.search-form__row {
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.search-form select,
.search-form input,
.search-form button,
.admin-form input,
.admin-form textarea,
.admin-form select,
.cart-row input {
    border: 0;
    outline: 0;
    background: transparent;
}

.search-form select,
.search-form input {
    padding: 12px 14px;
}

.search-form input {
    flex: 1;
}

.search-form button,
.btn-primary,
.btn-secondary {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.search-form button,
.btn-primary {
    min-width: 48px;
    min-height: 48px;
    background: #20675f;
    color: white;
}

.btn-primary {
    padding: 14px 24px;
    font-weight: 700;
}

.btn-primary--small,
.btn-secondary--small {
    min-height: auto;
    padding: 12px 18px;
    font-size: 9px;
}

.btn-primary--small i,
.btn-secondary--small i,
.btn-primary--large i,
.btn-secondary--block i {
    margin-right: 6px;
}

.btn-primary--large {
    width: 100%;
}

.btn-secondary {
    padding: 14px 24px;
    background: rgba(186, 141, 74, 0.12);
    color: var(--accent-dark);
    font-weight: 700;
}

.btn-secondary--block {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-form button:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.header-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.header-pill strong,
.mobile-bottom-nav__cart strong {
    min-width: 24px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #20675f;
    color: white;
    font-size: 12px;
}

.main-nav {
    border-top: 1px solid var(--line);
}

.main-nav__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0;
}

.main-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    color: #1d2340;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav__link i {
    font-size: 18px;
    color: #11182e;
}

.main-nav__link:hover,
.side-panel a:hover,
.side-panel .is-active {
    background: rgba(186, 141, 74, 0.14);
    color: var(--accent-dark);
    transform: translateY(-1px);
}

.main-nav__link:hover i {
    color: var(--accent-dark);
}

.hero-section,
.listing-hero,
.product-detail-hero,
.section-block,
.checkout-hero {
    padding: 36px 0;
}

.hero-mosaic {
    padding: 28px 0 20px;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 18px;
}

.mosaic-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.mosaic-card--primary {
    grid-row: span 2;
    min-height: 580px;
}

.mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 15%, rgba(17, 13, 11, 0.72) 100%);
}

.mosaic-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    color: #fff;
}

.mosaic-copy h1,
.mosaic-copy h2 {
    margin: 10px 0 0;
    font-family: "Outfit", Arial, sans-serif;
}

.mosaic-copy h1 {
    font-size: clamp(38px, 4vw, 60px);
}

.mosaic-copy h2 {
    font-size: 34px;
}

.benefit-strip {
    padding: 8px 0 24px;
}

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

.benefit-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.benefit-chip i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(32, 103, 95, 0.12);
    color: #20675f;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    min-height: 320px;
    box-shadow: var(--shadow);
}

.hero-card--main {
    grid-row: span 2;
    min-height: 660px;
}

.hero-card::after,
.product-card__media::after,
.product-gallery__main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(15, 12, 9, 0.68) 100%);
}

.hero-card img,
.product-card__media img,
.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__media img {
    height: 180px;
    object-fit: contain;
    padding: 14px;
}

.hero-card__content,
.product-card__zoom {
    position: absolute;
    z-index: 2;
}

.hero-card__content {
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: white;
}

.hero-card__content span,
.eyebrow,
.product-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card__content h1 {
    font-size: clamp(42px, 5vw, 68px);
    margin: 14px 0 18px;
    line-height: 0.96;
}

.hero-card__content h2,
.section-heading h2,
.listing-hero h1,
.product-summary h1,
.detail-panel h2,
.cart-summary h3,
.admin-panel h2,
.admin-topbar h1 {
    margin: 0;
}

.hero-card__content h2 {
    margin-top: 14px;
    font-size: 34px;
}

.section-block--soft {
    background: rgba(255, 255, 255, 0.45);
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading a,
.text-link {
    color: var(--accent-dark);
    font-weight: 700;
}

.product-grid,
.category-grid,
.footer-grid,
.admin-cards,
.admin-panel-grid,
.detail-lower {
    display: grid;
    gap: 20px;
}

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

.product-card,
.category-card,
.detail-panel,
.cart-summary,
.admin-card,
.admin-panel,
.side-panel,
.empty-state,
.product-detail-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-card {
    position: relative;
    overflow: hidden;
    padding: 14px 14px 16px;
    border-radius: 28px;
    background: #fff;
    box-shadow: none;
    border: 1px solid rgba(226, 220, 231, 0.9);
}

.product-card__media {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffe6f1, #fdf5ef);
    margin-bottom: 12px;
}

.product-card__media::after {
    display: none;
}

.product-card__content,
.category-card,
.detail-panel,
.cart-summary,
.admin-card,
.admin-panel,
.side-panel,
.empty-state {
    padding: 24px;
}

.product-card__content {
    padding: 0;
}

.product-card__cta {
    margin-top: 16px;
}

.product-card__cta form {
    margin: 0;
}

.product-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.25;
    color: #132060;
}

.product-card__tag {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 28px);
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #20675f, #20675f);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card__slug {
    color: #7b7893;
    font-size: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-card__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
    color: #f4a21a;
    font-size: 13px;
}

.product-card__cta--single {
    display: block;
}

.product-card__add-btn {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #20675f, #20675f);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 14px 30px rgba(183, 72, 98, 0.22);
}

.product-card__add-btn i {
    font-size: 15px;
}

.price-block strong,
.price-line strong,
.admin-card strong {
    font-size: 14px;
    color: #4b536e;
}

.price-block span,
.price-line span {
    text-decoration: line-through;
}

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

.category-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-slider__item {
    min-height: 220px;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    align-items: flex-end;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    background:
        linear-gradient(180deg, transparent, rgba(15, 12, 9, 0.72)),
        linear-gradient(135deg, rgba(32, 103, 95, 0.72), rgba(186, 141, 74, 0.52));
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.offer-panels {
    padding: 10px 0 32px;
}

.offer-panels__grid,
.auth-grid,
.checkout-layout,
.testimonial-grid {
    display: grid;
    gap: 20px;
}

.offer-panels__grid {
    grid-template-columns: 1.2fr 1fr;
}

.offer-panel {
    display: block;
    min-height: 280px;
    padding: 30px;
    border-radius: 30px;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: var(--shadow);
}

.offer-panel--accent {
    background: linear-gradient(135deg, rgba(242, 92, 105, 0.18), rgba(255, 255, 255, 0.96));
}

.product-grid--compact .product-card__media {
    height: auto;
}

.collection-showcase {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.collection-showcase__media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.collection-showcase__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-showcase__overlay {
    position: absolute;
    inset: auto 20px 20px 20px;
    color: #fff;
    text-align: center;
}

.collection-showcase__overlay p {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.1;
    font-family: "Outfit", Arial, sans-serif;
}

.collection-showcase__overlay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #20675f, #20675f);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.collection-showcase__content {
    min-width: 0;
}

.collection-showcase__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.collection-showcase__tabs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px;
}

.collection-tab {
    padding: 0 0 10px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #132060;
    font-size: 16px;
    font-weight: 700;
}

.collection-tab.is-active {
    color: #20675f;
    border-bottom-color: #20675f;
}

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

.collection-card {
    position: relative;
    padding: 14px 14px 18px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(18, 30, 99, 0.08);
}

.collection-card__tag {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #20675f, #20675f);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.collection-card__image {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffe6f1, #fdf5ef);
    margin-bottom: 16px;
}

.collection-card__image img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    padding: 18px;
}

.collection-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.2;
    color: #132060;
}

.collection-card__meta {
    color: #7b7893;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.collection-card__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    color: #f4a21a;
}

.collection-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.collection-card__price strong {
    color: #4b536e;
    font-size: 16px;
}

.collection-card__cart {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #20675f, #20675f);
    color: #fff;
    box-shadow: 0 14px 30px rgba(183, 72, 98, 0.22);
}

.rail-showcase {
    padding-top: 10px;
}

.rail-showcase__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    gap: 22px;
    align-items: stretch;
}

.rail-showcase__content {
    padding: 32px;
    border-radius: 30px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(123, 92, 214, 0.92), rgba(255, 196, 196, 0.56)),
        url("../images/banner-home-7.jpg") center/cover no-repeat;
    box-shadow: var(--shadow);
}

.rail-showcase__content h2 {
    margin: 14px 0 10px;
    font-size: 48px;
    line-height: 0.95;
    font-family: "Outfit", Arial, sans-serif;
}

.rail-showcase__content p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.88);
}

.rail-showcase__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
}

.rail-controls {
    display: flex;
    gap: 10px;
}

.rail-arrow {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #5a357d;
    box-shadow: var(--shadow);
}

.rail-showcase__products {
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    padding: 18px;
}

.product-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 32px) / 2);
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
    display: none;
}

.product-rail__item .product-card {
    height: 100%;
}

.lookbook-section {
    padding: 24px 0 34px;
}

.about-story-section {
    padding: 20px 0 34px;
}

.about-story {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 38px;
    align-items: center;
}

.about-story__media {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
    min-height: 480px;
    background: rgba(186, 141, 74, 0.08);
}

.about-story__media img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.eyebrow--rose {
    background: transparent;
    padding: 0;
    color: #a33c55;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.about-story__content h2 {
    margin: 14px 0 18px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 0.98;
    color: #121e63;
    font-family: "Outfit", Arial, sans-serif;
}

.about-story__content p {
    max-width: 700px;
    margin: 0;
    color: #60708f;
    font-size: 18px;
    line-height: 1.9;
}

.about-story__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    background: linear-gradient(135deg, #20675f, #20675f);
}

.about-story__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.diamond-spotlight-section {
    padding: 6px 0 34px;
}

.diamond-spotlight {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 28px;
    align-items: center;
}

.diamond-spotlight__content h2 {
    margin: 14px 0 18px;
    color: #132060;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1;
    font-family: "Outfit", Arial, sans-serif;
}

.diamond-spotlight__content h2 span {
    color: #20675f;
}

.diamond-spotlight__content p {
    margin: 0;
    color: #60708f;
    line-height: 1.9;
    font-size: 18px;
    max-width: 430px;
}

.diamond-spotlight__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    background: linear-gradient(135deg, #20675f, #20675f);
}

.diamond-spotlight__products {
    position: relative;
    min-width: 0;
}

.diamond-spotlight__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 3);
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 6px 0;
}

.diamond-spotlight__rail::-webkit-scrollbar {
    display: none;
}

.diamond-spotlight__item .collection-card {
    height: 100%;
}

.collection-card--spotlight {
    box-shadow: none;
    border: 1px solid rgba(226, 220, 231, 0.9);
}

.diamond-spotlight__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #20675f, #20675f);
    color: #fff;
    box-shadow: 0 14px 30px rgba(183, 72, 98, 0.24);
}

.diamond-spotlight__arrow--prev {
    left: -22px;
}

.diamond-spotlight__arrow--next {
    right: -22px;
}

.about-stat-card {
    padding: 28px 24px 24px;
    border-radius: 26px;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(17, 30, 60, 0.08);
}

.about-stat-card__icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #20675f, #20675f);
    color: #fff;
    font-size: 28px;
}

.about-stat-card strong {
    display: block;
    font-size: clamp(38px, 3vw, 52px);
    line-height: 1;
    color: #121e63;
}

.about-stat-card strong span {
    font-size: 0.5em;
    vertical-align: top;
}

.about-stat-card p {
    margin: 12px 0 0;
    color: #121e63;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.lookbook-grid__item {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.lookbook-grid__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.testimonial-band {
    padding: 30px 0 22px;
    background: linear-gradient(180deg, rgba(255, 225, 233, 0.68), rgba(255, 255, 255, 0.9));
}

.testimonial-slider {
    position: relative;
    padding-bottom: 22px;
}

.testimonial-card {
    height: 100%;
    padding: 26px 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(186, 141, 74, 0.12);
    box-shadow: 0 18px 40px rgba(18, 30, 99, 0.08);
}

.testimonial-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-card__head strong {
    display: block;
    font-size: 20px;
    color: #132060;
}

.testimonial-card__head small {
    color: #8d7a7d;
    font-size: 13px;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #20675f, #20675f);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.testimonial-card p {
    margin: 0;
    color: #5f6c8a;
    line-height: 1.85;
}

.testimonial-slider__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.testimonial-slider__arrow {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #1b245f;
    box-shadow: 0 12px 28px rgba(18, 30, 99, 0.12);
}

.quality-story-section,
.choose-us-section {
    padding: 28px 0 18px;
}

.quality-story,
.choose-us__top {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: center;
}

.quality-story__visuals {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 18px;
    align-items: center;
}

.quality-story__frame {
    position: relative;
    min-height: 340px;
    padding: 10px;
    border-radius: 34px;
}

.quality-story__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 4px solid #20675f;
    border-radius: 34px;
    transform: translate(-8px, 8px);
}

.quality-story__frame > img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 14px 28px rgba(18, 30, 99, 0.1);
}

.quality-story__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 10px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(18, 30, 99, 0.1);
}

.quality-story__badge-icon,
.choose-us-card__icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #20675f, #20675f);
    color: #fff;
    font-size: 20px;
}

.quality-story__badge strong {
    max-width: 110px;
    font-size: 13px;
    line-height: 1.35;
    color: #132060;
}

.quality-story__round {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(18, 30, 99, 0.1);
}

.quality-story__round img,
.choose-us__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-story__round--bottom {
    margin-top: 8px;
}

.quality-story__content h2,
.choose-us__intro h2 {
    margin: 10px 0 14px;
    color: #132060;
    font-size: clamp(32px, 3.2vw, 46px);
    line-height: 0.98;
    font-family: "Outfit", Arial, sans-serif;
}

.quality-story__content h2 span,
.choose-us__intro h2 span {
    color: #20675f;
}

.quality-story__content p,
.choose-us__copy p {
    margin: 0;
    color: #60708f;
    line-height: 1.75;
    font-size: 16px;
}

.quality-story__checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin-top: 20px;
}

.quality-story__checks div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #132060;
    font-weight: 700;
    font-size: 15px;
}

.quality-story__checks i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #20675f, #20675f);
    color: #fff;
}

.choose-us-section {
    background: linear-gradient(180deg, rgba(255, 247, 248, 0.72), rgba(255, 255, 255, 0.88));
}

.choose-us__top {
    grid-template-columns: 0.95fr 0.85fr 0.9fr;
    margin-bottom: 28px;
}

.choose-us__hero {
    height: 190px;
    overflow: hidden;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.choose-us__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.choose-us-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 24px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(18, 30, 99, 0.08);
}

.choose-us-card h3 {
    margin: 0 0 8px;
    color: #132060;
    font-size: 28px;
    font-family: "Outfit", Arial, sans-serif;
}

.choose-us-card p {
    margin: 0;
    color: #60708f;
    line-height: 1.75;
}

.newsletter-band {
    padding: 34px 0 0px;
}

.newsletter-band__inner {
    position: relative;
    overflow: hidden;
   
    padding: 42px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.28), transparent 24%),
        linear-gradient(135deg, #173153 0%, #20675f 56%, #ba8d4a 100%);
    color: #fff;
    display: grid;

    align-items: center;
   
    box-shadow: 0 26px 55px rgba(19, 32, 96, 0.16);
}

.newsletter-band__content {
    position: relative;
    z-index: 1;
   
}

.newsletter-band__content h2 {
    margin: 10px 0 14px;
    text-align: center;
    color: #fff;
    font-family: "Outfit", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
}

.newsletter-band__content p {
    margin: 0 0 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
}

/* Form ko center karo */
.newsletter-band__form {
  display: flex;
  align-items: center;
  width: min(100%, 540px);
  margin: 0 auto; /* ← yahi center karega horizontally */
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
}

/* Input field flex mein stretch ho */
.newsletter-band__form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 12px;
  font-size: 14px;
}

/* Button fixed size */
.newsletter-band__form .btn-primary {
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: 999px;
}

.newsletter-band__form input::placeholder {
    color: #7e8998;
}

.newsletter-band__form .btn-primary {
    height: 48px;
    border: 0;
    white-space: nowrap;
}

.newsletter-band__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  justify-content: center; /* ← yahi center karega */
}

.newsletter-band__meta i {
    margin-right: 7px;
    color: #f0d99b;
}

.newsletter-band__media {
    position: relative;
    z-index: 1;
    align-self: stretch;
    min-height: 280px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.newsletter-band__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 54%, rgba(23, 49, 83, 0.25));
    pointer-events: none;
}

.newsletter-band__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
    object-fit: cover;
}

.category-card {
    min-height: 220px;
    background:
        linear-gradient(150deg, rgba(186, 141, 74, 0.18), rgba(255, 255, 255, 0.96)),
        white;
}

.category-card__count {
    color: var(--accent-dark);
    font-weight: 700;
}

.listing-hero,
.product-detail-hero {
    background:
        radial-gradient(circle at top right, rgba(186, 141, 74, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
}

.listing-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.side-panel {
    position: sticky;
    top: 140px;
}

.side-panel a {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    margin-bottom: 8px;
}

.side-panel__child {
    margin-left: 14px;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    padding: 28px;
    background:
        radial-gradient(circle at left top, rgba(186, 141, 74, 0.14), transparent 35%),
        rgba(255, 255, 255, 0.92);
}

.product-gallery__main {
    position: relative;
    display: block;
    height: 540px;
    overflow: hidden;
    border-radius: 28px;
}

.product-gallery__stage {
    position: relative;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.gallery-nav--prev {
    left: 16px;
}

.gallery-nav--next {
    right: 16px;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.gallery-thumb {
    overflow: hidden;
    border-radius: 18px;
    height: 120px;
    border: 2px solid transparent;
    padding: 0;
    background: transparent;
}

.gallery-thumb.is-active {
    border-color: #20675f;
}

.product-gallery__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-summary {
    align-self: center;
}

.price-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.product-meta-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.product-meta-list div {
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(186, 141, 74, 0.08);
}

.add-cart-form {
    display: flex;
    gap: 14px;
    margin: 24px 0 16px;
}

.add-cart-form input,
.admin-form input,
.admin-form textarea,
.admin-form select,
.cart-row input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
}

.add-cart-form input {
    max-width: 110px;
}

.detail-lower {
    grid-template-columns: 1fr 1fr;
}

.review-list {
    display: grid;
    gap: 14px;
}

.review-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(248, 243, 238, 0.8);
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}

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

.auth-panel,
.checkout-card {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.auth-form,
.checkout-card__section {
    display: grid;
    gap: 14px;
}

.auth-form input,
.auth-form textarea,
.checkout-card input,
.checkout-card textarea,
.checkout-card select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
}

.account-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(32, 103, 95, 0.06);
}

.checkout-layout {
    grid-template-columns: 1fr 340px;
}

.checkout-summary {
    align-self: start;
}

.checkout-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.cart-row {
    display: grid;
    grid-template-columns: 2fr 1fr 120px 1fr 80px;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.cart-row__product,
.admin-product-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-row__product img,
.admin-product-cell img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 18px;
}

.remove-link {
    font-weight: 700;
}

.footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 28px 0;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
}

.site-footer a,
.site-footer p {
    display: block;
    margin-bottom: 10px;
}

.footer-copy {
    border-top: 1px solid var(--line);
    padding: 18px 0 28px;
    margin: 0;
}

.mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 40;
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(31, 26, 23, 0.92);
    box-shadow: var(--shadow);
}

.mobile-bottom-nav a {
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 10px 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.mobile-bottom-nav i {
    font-size: 18px;
}

.flash-message {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 700;
}

.flash-message--success {
    background: rgba(20, 148, 92, 0.12);
    color: #0b7d4d;
}

.flash-message--info {
    background: rgba(65, 108, 215, 0.12);
    color: #315db0;
}

.empty-state {
    text-align: center;
}

.admin-body {
    background: #f4ede6;
}

.admin-shell {
    display: grid;
    grid-template-columns: 290px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    padding: 28px;
    background: #1f1a17;
    color: rgba(255, 255, 255, 0.84);
}

.admin-brand {
    display: block;
    margin-bottom: 28px;
}

.admin-brand strong {
    display: block;
    color: white;
    font-size: 30px;
    font-family: "Outfit", Arial, sans-serif;
}

.admin-brand span {
    display: block;
    margin-top: 8px;
}

.admin-nav a {
    display: block;
    margin-bottom: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.admin-main {
    padding: 28px;
}

.admin-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-card,
.admin-panel {
    background: rgba(255, 255, 255, 0.88);
}

.admin-card strong {
    display: block;
    margin-top: 8px;
}

.admin-panel-grid {
    grid-template-columns: 1.2fr 1fr;
    margin-top: 20px;
}

.admin-mini-list {
    display: grid;
    gap: 12px;
}

.admin-mini-list__item {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(32, 103, 95, 0.06);
}

.admin-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-table {
    display: grid;
}

.admin-table__head,
.admin-table__row {
    display: grid;
    grid-template-columns: 1.2fr 2fr 120px;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.admin-table__head {
    font-weight: 800;
}

.admin-table__head--products,
.admin-table__row--products {
    grid-template-columns: 1.5fr 1.4fr 120px 100px;
}

.admin-table__head--category,
.admin-table__row--category {
    grid-template-columns: 120px 1fr 1.6fr 100px;
}

.admin-table__head--users,
.admin-table__row--users {
    grid-template-columns: 1fr 1.2fr 1fr 180px;
}

.admin-table__head--orders,
.admin-table__row--orders {
    grid-template-columns: 120px 1.5fr 140px 120px;
}

.admin-category-thumb {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: rgba(186, 141, 74, 0.08);
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.admin-category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-image-preview {
    width: min(100%, 280px);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(186, 141, 74, 0.08);
    border: 1px solid var(--line);
}

.admin-image-preview img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.admin-gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.admin-gallery-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(186, 141, 74, 0.08);
}

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

.form-grid__full {
    grid-column: 1 / -1;
}

.admin-form span {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.admin-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-row input {
    width: auto;
}

.cart-heading h1,
.checkout-hero h1,
.dashboard-hero h1,
.dashboard-panel h2 {
    margin: 8px 0 0;
    color: #132060;
    font-family: "Outfit", Arial, sans-serif;
}

.cart-heading h1,
.checkout-hero h1,
.dashboard-hero h1 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
}

.cart-heading p,
.checkout-hero p,
.dashboard-hero p {
    max-width: 640px;
    margin: 12px 0 0;
    color: #60708f;
    line-height: 1.8;
}

.premium-cart,
.premium-summary,
.checkout-card,
.dashboard-panel,
.dashboard-hero,
.dashboard-stat {
    border: 1px solid rgba(226, 220, 231, 0.88);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 52px rgba(18, 30, 99, 0.08);
}

.premium-cart {
    overflow: hidden;
    border-radius: 28px;
    padding: 4px 24px;
}

.premium-cart__head {
    display: grid;
    grid-template-columns: 2fr 1fr 120px 1fr 70px;
    gap: 18px;
    padding: 18px 0;
    color: #7b7893;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
}

.cart-row__price,
.cart-row__total {
    color: #132060;
    font-weight: 800;
}

.cart-row small,
.cart-mobile-label {
    display: none;
    color: #7b7893;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.remove-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(208, 65, 86, 0.1);
    color: #b11f3a;
}

.premium-summary {
    position: sticky;
    top: 150px;
    border-radius: 28px;
}

.cart-summary__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 18px 0;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(32, 103, 95, 0.12), rgba(186, 141, 74, 0.12));
}

.cart-summary__total span {
    color: #60708f;
    font-weight: 800;
}

.cart-summary__total strong {
    color: #132060;
    font-size: 22px;
}

.premium-summary__note {
    margin: 14px 0 0;
    color: #60708f;
    font-size: 13px;
    line-height: 1.7;
}

.premium-empty {
    padding: 44px 28px;
}

.premium-empty > i {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(32, 103, 95, 0.1);
    color: #20675f;
    font-size: 24px;
}

.checkout-hero__panel {
    overflow: hidden;
    padding: 42px;
    border-radius: 28px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(19, 32, 96, 0.92), rgba(32, 103, 95, 0.84)),
        url("../images/banner-home-19.jpg") center/cover no-repeat;
    box-shadow: 0 24px 58px rgba(18, 30, 99, 0.16);
}

.checkout-hero__panel h1,
.checkout-hero__panel p {
    color: #fff;
}

.checkout-card {
    display: grid;
    gap: 20px;
}

.checkout-card .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.checkout-card label span {
    display: block;
    margin-bottom: 8px;
    color: #132060;
    font-weight: 800;
}

.checkout-card__title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.checkout-card__title h2 {
    margin: 4px 0 0;
    color: #132060;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 34px;
}

.checkout-step {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #20675f;
    color: #fff;
    font-weight: 800;
}

.checkout-card__section--soft {
    padding: 20px;
    border-radius: 22px;
    background: rgba(32, 103, 95, 0.05);
}

.checkout-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.checkout-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: #132060;
    font-weight: 800;
    font-size: 13px;
}

.checkout-line span {
    color: #60708f;
}

.checkout-line strong {
    color: #132060;
}

.dashboard-page {
    padding: 32px 0 56px;
    background:
        radial-gradient(circle at 12% 10%, rgba(32, 103, 95, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 243, 238, 0.4));
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.dashboard-sidebar {
    position: sticky;
    top: 138px;
    display: grid;
    gap: 22px;
    padding: 24px;
    border-radius: 28px;
    color: rgba(255, 255, 255, 0.84);
    background: linear-gradient(180deg, #132060, #174b57);
    box-shadow: 0 24px 52px rgba(18, 30, 99, 0.18);
}

.dashboard-brand img {
    width: 150px;
    filter: brightness(0) invert(1);
}

.dashboard-user {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
}

.dashboard-user span {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #132060;
    font-size: 24px;
    font-weight: 900;
}

.dashboard-user strong {
    color: #fff;
}

.dashboard-user small {
    color: rgba(255, 255, 255, 0.68);
    overflow-wrap: anywhere;
}

.dashboard-nav,
.dashboard-logout {
    display: grid;
    gap: 10px;
}

.dashboard-nav a,
.dashboard-logout button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 14px;
    border: 0;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
    text-align: left;
}

.dashboard-nav a.is-active,
.dashboard-nav a:hover,
.dashboard-logout button:hover {
    background: #fff;
    color: #132060;
}

.dashboard-main {
    display: grid;
    gap: 22px;
}

.dashboard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 30px;
    border-radius: 28px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.dashboard-stat {
    padding: 22px;
    border-radius: 24px;
}

.dashboard-stat span,
.profile-grid span,
.order-detail-metrics span {
    display: block;
    color: #7b7893;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-stat strong {
    display: block;
    margin-top: 8px;
    color: #132060;
    font-size: 24px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    gap: 22px;
}

.dashboard-panel {
    padding: 24px;
    border-radius: 28px;
}

.dashboard-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.dashboard-panel__head > span,
.status-pill {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(32, 103, 95, 0.1);
    color: #20675f;
    font-size: 12px;
    font-weight: 900;
}

.dashboard-orders {
    display: grid;
    gap: 12px;
}

.dashboard-order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
}

.dashboard-order.is-active,
.dashboard-order:hover {
    border-color: rgba(32, 103, 95, 0.28);
    background: rgba(32, 103, 95, 0.06);
}

.dashboard-order strong {
    display: block;
    color: #132060;
}

.dashboard-order small {
    display: block;
    margin-top: 5px;
    color: #7b7893;
}

.dashboard-empty {
    padding: 26px;
    border-radius: 20px;
    text-align: center;
    background: rgba(32, 103, 95, 0.05);
}

.dashboard-empty h3 {
    margin-top: 0;
    color: #132060;
}

.order-detail-metrics,
.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.order-detail-metrics div,
.profile-grid div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(32, 103, 95, 0.05);
}

.order-detail-metrics strong,
.profile-grid strong {
    display: block;
    margin-top: 8px;
    color: #132060;
    overflow-wrap: anywhere;
}

.dashboard-items {
    display: grid;
    gap: 12px;
    margin: 18px 0;
}

.dashboard-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--line);
}

.dashboard-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
    background: rgba(32, 103, 95, 0.06);
}

.dashboard-item strong,
.dashboard-item b {
    color: #132060;
}

.dashboard-item span {
    display: block;
    margin-top: 6px;
    color: #60708f;
}

.delivery-card {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(19, 32, 96, 0.08), rgba(32, 103, 95, 0.08));
}

.delivery-card p {
    margin: 10px 0;
    color: #132060;
    font-weight: 800;
    line-height: 1.7;
}

.delivery-card small {
    color: #60708f;
}

.order-success-page {
    padding: 34px 0 58px;
    background:
        radial-gradient(circle at 12% 12%, rgba(32, 103, 95, 0.12), transparent 30%),
        linear-gradient(180deg, #fff, rgba(248, 243, 238, 0.55));
}

.order-success-card {
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(226, 220, 231, 0.88);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 62px rgba(18, 30, 99, 0.1);
}

.order-success-hero {
    position: relative;
    padding: 44px;
    border-radius: 26px;
    color: #fff;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(19, 32, 96, 0.94), rgba(32, 103, 95, 0.88)),
        url("../images/banner-home-10.jpg") center/cover no-repeat;
}

.success-mark {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #fff;
    color: #20675f;
    font-size: 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.order-success-hero h1 {
    margin: 12px 0;
    color: #fff;
    font-family: "Outfit", Arial, sans-serif;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1;
}

.order-success-hero p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

.success-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.success-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.success-detail,
.success-address,
.success-item,
.success-redirect {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(32, 103, 95, 0.04);
}

.success-detail {
    padding: 18px;
}

.success-detail span {
    display: block;
    color: #7b7893;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.success-detail strong {
    display: block;
    margin-top: 8px;
    color: #132060;
    overflow-wrap: anywhere;
}

.success-address {
    margin-top: 16px;
    padding: 20px;
}

.success-address p {
    margin: 10px 0 0;
    color: #132060;
    font-weight: 800;
    line-height: 1.75;
}

.success-items {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.success-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fff;
}

.success-item img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 16px;
    background: rgba(32, 103, 95, 0.06);
}

.success-item strong,
.success-item b {
    color: #132060;
}

.success-item span {
    display: block;
    margin-top: 6px;
    color: #60708f;
}

.success-redirect {
    margin-top: 18px;
    padding: 16px;
}

.success-redirect span {
    display: block;
    margin-bottom: 10px;
    color: #132060;
    font-weight: 800;
}

.success-progress {
    overflow: hidden;
    height: 9px;
    border-radius: 999px;
    background: rgba(32, 103, 95, 0.1);
}

.success-progress i {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, #20675f, #ba8d4a);
    transition: width 0.35s ease;
}

.listing-hero {
    padding: 34px 0 18px;
    background:
        linear-gradient(135deg, rgba(19, 32, 96, 0.88), rgba(32, 103, 95, 0.78)),
        url("../images/banner-home-12.jpg") center/cover no-repeat;
}

.listing-hero__inner {
    min-height: 230px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    padding: 34px 0;
    color: #fff;
}

.listing-hero h1,
.listing-hero p {
    color: #fff;
}

.listing-hero h1 {
    margin: 10px 0 12px;
    font-size: clamp(40px, 4vw, 64px);
    line-height: 1;
}

.listing-hero p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

.listing-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
}

.listing-sidebar .side-panel {
    border-radius: 22px;
    border: 1px solid rgba(226, 220, 231, 0.9);
    background: #fff;
    box-shadow: 0 18px 40px rgba(18, 30, 99, 0.07);
}

.listing-sidebar .side-panel h3 {
    margin: 10px 0 16px;
    color: #132060;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 30px;
}

.filter-divider {
    height: 1px;
    margin: 20px 0;
    background: var(--line);
}

.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(226, 220, 231, 0.9);
}

.results-bar strong {
    color: #132060;
}

.results-bar span {
    color: #60708f;
    font-size: 13px;
    font-weight: 700;
}

.listing-product-grid.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.listing-product-grid .product-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid rgba(226, 220, 231, 0.95);
    background: #fff;
    box-shadow: 0 14px 34px rgba(18, 30, 99, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing-product-grid .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(18, 30, 99, 0.12);
}

.listing-product-grid .product-card__media {
    position: relative;
    height: auto;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fbfa, #fff5f0);
}

.listing-product-grid .product-card__media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    padding: 18px;
}

.listing-product-grid .product-card__content {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.listing-product-grid .product-card h3 {
    min-height: 42px;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.35;
}

.listing-product-grid .product-card h3 a {
    color: #132060;
}

.listing-product-grid .product-card__tag {
    top: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 7px 11px;
    background: #20675f;
}

.listing-product-grid .product-card__slug {
    min-height: auto;
    margin-bottom: 8px;
    color: #60708f;
}

.listing-product-grid .product-card__rating {
    margin-bottom: 10px;
}

.listing-product-grid .price-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.listing-product-grid .price-block strong {
    color: #132060;
    font-size: 18px;
}

.listing-product-grid .product-card__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
}

.product-card__view {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(32, 103, 95, 0.08);
    color: #20675f;
    font-weight: 800;
}

@media (max-width: 1199px) {
    .product-grid,
    .category-grid,
    .admin-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .listing-layout,
    .product-detail-card,
    .cart-layout,
    .dashboard-shell,
    .dashboard-grid,
    .admin-shell,
    .admin-panel-grid,
    .detail-lower,
    .auth-grid,
    .offer-panels__grid,
    .benefit-strip__grid,
    .checkout-layout,
    .testimonial-grid,
    .rail-showcase__grid {
        grid-template-columns: 1fr;
    }

    .offer-panel {
        min-height: 0;
        aspect-ratio: 1740 / 850;
        border-radius: 22px;
        background-size: contain;
    }

    .side-panel {
        position: static;
    }

    .dashboard-sidebar,
    .premium-summary {
        position: static;
    }

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

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

    .product-rail {
        grid-auto-columns: calc((100% - 16px) / 2);
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .quality-story,
    .choose-us__top,
    .choose-us__cards {
        grid-template-columns: 1fr;
    }

    .collection-showcase {
        grid-template-columns: 1fr;
    }

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

    .diamond-spotlight {
        grid-template-columns: 1fr;
    }

    .diamond-spotlight__rail {
        grid-auto-columns: calc((100% - 18px) / 2);
    }

    .quality-story__visuals {
        grid-template-columns: 1fr 160px;
    }

    .quality-story__checks {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-band__inner {
        grid-template-columns: 1fr;
    }

    .newsletter-band__media {
        min-height: 320px;
    }
}

@media (max-width: 991px) {
    .header-top__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 0;
        min-height: auto;
    }

    .header-top__links {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }

    .site-header__inner,
    .search-form__row,
    .header-actions,
    .section-heading,
    .admin-topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-card--main {
        grid-row: auto;
        min-height: 420px;
    }

    .cart-row {
        grid-template-columns: 1fr;
    }

    .premium-cart__head {
        display: none;
    }

    .cart-row {
        gap: 12px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 20px;
        margin: 14px 0;
    }

    .cart-row small,
    .cart-mobile-label {
        display: block;
        margin-bottom: 6px;
    }

    .dashboard-hero,
    .dashboard-panel__head {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .listing-hero__inner,
    .results-bar {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .admin-cards,
    .admin-form .form-grid {
        grid-template-columns: 1fr;
    }

    .collection-showcase__head {
        flex-direction: column;
        align-items: stretch;
    }

    .collection-showcase__tabs {
        justify-content: flex-start;
    }

    .quality-story__visuals {
        grid-template-columns: 1fr;
    }

    .quality-story__round {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .quality-story__frame {
        min-height: 340px;
    }

    .quality-story__frame > img {
        min-height: 320px;
    }

    .quality-story__checks {
        grid-template-columns: 1fr;
    }

    .diamond-spotlight__arrow--prev {
        left: -10px;
    }

    .diamond-spotlight__arrow--next {
        right: -10px;
    }

    .newsletter-band__inner {
        padding: 30px;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .header-top {
        display: none;
    }

    .header-top__inner {
        align-items: center;
        text-align: center;
    }

    .header-top__links {
        justify-content: center;
    }

    .site-header__inner {
        padding: 12px 0;
        gap: 12px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .site-logo {
        justify-content: flex-start;
        width: auto;
        flex: 1;
    }

    .site-logo img {
        width: 140px;
        max-width: 100%;
    }

    .mobile-header-tools {
        display: flex;
        flex-shrink: 0;
    }

    .search-form {
        display: none;
        width: 100%;
        max-width: 100%;
        order: 3;
        flex-basis: 100%;
    }

    .search-form__row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
        border-radius: 24px;
    }

    body.mobile-search-open .search-form {
        display: block;
    }

    .search-form select,
    .search-form input {
        width: 100%;
        padding: 12px 10px;
        border-radius: 14px;
        background: rgba(32, 103, 95, 0.04);
    }

    .search-form button {
        width: 100%;
        min-width: 100%;
        border-radius: 999px;
    }

    .main-nav {
        display: none;
    }

    .main-nav__inner {
        gap: 8px;
        justify-content: center;
        padding: 10px 0 14px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .main-nav__inner::-webkit-scrollbar {
        display: none;
    }

    .main-nav__link {
        padding: 10px 14px;
        justify-content: flex-start;
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid var(--line);
        font-size: 14px;
        gap: 8px;
    }

    .main-nav__link i {
        font-size: 16px;
    }

    body.mobile-nav-open .main-nav {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .site-main {
        padding-bottom: 140px;
    }

    .product-grid,
    .category-grid,
    .product-gallery__thumbs,
    .lookbook-grid,
    .product-card__cta {
        grid-template-columns: 1fr;
    }

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

    .collection-showcase__media {
        min-height: 340px;
    }

    .collection-showcase__products {
        grid-template-columns: 1fr;
    }

    .diamond-spotlight__content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .diamond-spotlight__rail {
        grid-auto-columns: 86%;
    }

    .diamond-spotlight__arrow {
        width: 40px;
        height: 40px;
    }

    .collection-card__image img {
        height: 220px;
    }

    .product-card__media,
    .product-gallery__main {
       
    }

    .mobile-bottom-nav {
        display: grid;
    }

    .hero-card__content h1,
    .mosaic-copy h1 {
        font-size: 42px;
    }

    .hero-card__content h2,
    .mosaic-copy h2 {
        font-size: 28px;
    }

    .newsletter-band__inner {
        min-height: auto;
        padding: 22px;
        border-radius: 22px;
    }

    .newsletter-band__content h2 {
        font-size: 34px;
    }

    .newsletter-band__form {
        flex-direction: column;
        padding: 8px;
        border-radius: 22px;
        gap: 8px;
    }

    .newsletter-band__form input,
    .newsletter-band__form .btn-primary {
        width: 100%;
    }

    .newsletter-band__media,
    .newsletter-band__media img {
        min-height: 240px;
    }

    .newsletter-band__meta {
        flex-direction: column;
    }

    .premium-cart,
    .dashboard-panel,
    .dashboard-hero,
    .checkout-hero__panel,
    .order-success-card,
    .order-success-hero {
        border-radius: 22px;
        padding: 20px;
    }

    .checkout-card__title {
        align-items: flex-start;
    }

    .order-detail-metrics,
    .profile-grid,
    .checkout-card .form-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-item {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .success-detail-grid {
        grid-template-columns: 1fr;
    }

    .success-item {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .success-item b {
        grid-column: 2;
    }

    .listing-product-grid.product-grid {
        gap: 14px;
    }

    .listing-product-grid .product-card {
        padding: 9px;
        border-radius: 16px;
    }

    .listing-product-grid .product-card__media {
        border-radius: 13px;
    }

    .listing-product-grid .product-card__media img {
        padding: 12px;
    }

    .listing-product-grid .product-card h3 {
        min-height: 38px;
        font-size: 14px;
    }

    .listing-product-grid .price-block strong {
        font-size: 15px;
    }

    .listing-product-grid .product-card__tag {
        font-size: 10px;
    }

    .dashboard-item b {
        grid-column: 2;
    }

    .dashboard-sidebar {
        padding: 18px;
    }

    .about-story {
        gap: 24px;
    }

    .about-story__media,
    .about-story__media img {
        min-height: 320px;
    }

    .about-story__content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .about-story__stats {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .testimonial-card {
        padding: 22px 18px;
    }

    .quality-story__content p,
    .choose-us__copy p {
        font-size: 15px;
        line-height: 1.75;
    }

    .choose-us-card {
        align-items: flex-start;
        padding: 22px 18px;
    }

    .choose-us-card h3 {
        font-size: 24px;
    }

    .product-rail {
        grid-auto-columns: 88%;
    }
}

/* Products page final layout guard */
.products-page .products-layout-row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.products-page .listing-sidebar {
    width: 25.333333%;
}

.products-page .listing-products-col {
        width: 74.666667%;
    min-width: 0;
}

.products-page .listing-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.products-page .listing-layout > div {
    min-width: 0;
    width: 100%;
}

.products-page .listing-product-grid.product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    gap: 20px;
}

.products-page .listing-product-grid .product-card {
    width: 100%;
    min-width: 0;
}

.products-page .listing-product-grid .product-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.products-page .listing-product-grid .product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .products-page .listing-sidebar,
    .products-page .listing-products-col {
        width: 100%;
    }

    .products-page .listing-layout {
        grid-template-columns: 1fr;
    }

    .products-page .listing-sidebar {
        width: 100%;
    }

    .products-page .listing-product-grid.product-grid {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }
}

@media (max-width: 767px) {
    .products-page .products-layout-row {
        margin-left: 0;
        margin-right: 0;
    }

    .products-page .listing-sidebar,
    .products-page .listing-products-col {
        padding-left: 0;
        padding-right: 0;
    }

    .products-page .listing-hero__inner {
        min-height: 180px;
        padding: 24px 0;
    }

    .products-page .listing-layout {
        gap: 18px;
    }

    .products-page .listing-product-grid.product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .products-page .listing-product-grid .product-card {
        padding: 12px;
    }

    .products-page .listing-product-grid .product-card__media {
        min-height: 260px;
    }

    .products-page .listing-product-grid .product-card h3 {
        min-height: auto;
        font-size: 17px;
    }
}

