/* =========================================================
   VARIABLES
========================================================= */

:root {

    --black: #0c0c0c;
    --black-soft: #151515;

    --white: #ffffff;
    --cream: #f7f4ee;
    --cream-dark: #eee9df;

    --gold: #c99732;
    --gold-light: #dfb75b;
    --gold-dark: #a8791f;

    --text: #171717;
    --text-light: #77736d;

    --border: rgba(201, 151, 50, 0.35);

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --container: 1390px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 154px;
    background: var(--black);
    color: white;
}

.header-container {
    width: min(94%, 1450px);
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* LOGO */

.logo {
    width: 245px;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}


/* NAV */

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
}

.nav-link {
    position: relative;

    color: #f5f5f5;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;

    padding: 15px 0;

    transition: color .3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link.active::after {
    content: "";

    position: absolute;

    width: 52px;
    height: 1px;

    background: var(--gold);

    bottom: 0;
    left: 50%;

    transform: translateX(-50%);
}

.nav-link.active::before {
    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    background: var(--gold);

    border-radius: 50%;

    bottom: -2px;
    left: 50%;

    transform: translateX(-50%);
}


/* HEADER ICONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-icon {
    position: relative;

    width: 30px;
    height: 30px;

    border: 0;
    background: transparent;

    color: white;

    cursor: pointer;

    font-size: 23px;

    transition: color .3s ease, transform .3s ease;
}

.header-icon:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;

    top: -9px;
    right: -9px;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: var(--gold);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
}


/* MOBILE MENU */

.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 1px;

    margin: 6px auto;

    background: white;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 760px;

    overflow: hidden;

    background: #f5f1e9;
}


/* HERO IMAGE */

.hero-image {
    position: absolute;

    inset: 0;

    z-index: 0;
}

.hero-image::before {
    content: "";

    position: absolute;

    z-index: 2;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(247,244,238,1) 0%,
            rgba(247,244,238,.98) 24%,
            rgba(247,244,238,.82) 37%,
            rgba(247,244,238,.25) 52%,
            rgba(247,244,238,0) 67%
        );
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* HERO CONTENT */

.hero-content {
    position: relative;

    z-index: 5;

    width: min(92%, 1390px);

    min-height: 760px;

    margin: auto;

    padding-top: 94px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* LABEL */

.hero-label {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-left: 3px;
    margin-bottom: 28px;
}

.hero-label span {
    width: 105px;
    height: 1px;

    background: var(--gold);
}

.hero-label p {
    color: var(--gold-dark);

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 5px;
}


/* HERO TITLE */

.hero h1 {
    max-width: 650px;

    font-family: var(--serif);

    font-size: clamp(70px, 6vw, 108px);

    line-height: .94;

    font-weight: 400;

    letter-spacing: -4px;

    color: #111;

    margin-bottom: 36px;
}

.hero h1 em {
    color: var(--gold);

    font-style: italic;
}


/* DESCRIPTION */

.hero-description {
    max-width: 650px;

    color: #696966;

    font-size: 19px;

    line-height: 1.8;

    font-weight: 400;

    margin-bottom: 38px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 38px;

    margin-bottom: 76px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 325px;
    height: 72px;

    padding: 0 35px;

    background: var(--black);
    color: white;

    border: 1px solid var(--gold);

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 3px;

    transition: .3s ease;

    box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

.btn-primary span {
    font-size: 25px;

    margin-left: 24px;

    font-weight: 300;
}

.btn-primary:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

.btn-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 24px;

    height: 55px;

    color: #171717;

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 3px;
}

.btn-link::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: var(--gold);
}

.btn-link span {
    color: var(--gold);

    font-size: 25px;
}


/* =========================================================
   HERO BENEFITS
========================================================= */

.hero-benefits {
    display: flex;
    align-items: center;

    gap: 27px;

    margin-left: 3px;
}

.benefit {
    display: flex;
    align-items: center;

    gap: 15px;

    min-width: 185px;
}

.benefit-icon {
    width: 45px;
    flex-shrink: 0;

    color: var(--gold);

    font-size: 28px;

    text-align: center;
}

.benefit h3 {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.benefit p {
    color: #777;

    font-size: 12px;
}

.benefit-divider {
    width: 1px;
    height: 70px;

    background: var(--border);
}


/* =========================================================
   SECTION COMMON
========================================================= */

.section-light {
    background: var(--cream);
}

.section-heading {
    text-align: center;

    margin-bottom: 50px;
}

.section-label {
    display: block;

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 13px;
}

.section-heading h2 {
    font-family: var(--serif);

    font-size: 47px;

    line-height: 1.1;

    font-weight: 400;
}

.section-heading h2 em {
    color: var(--gold);

    font-style: italic;
}

/* =========================================================
   CART PAGE
========================================================= */

.cart-page-section {
    padding: 80px 5% 100px;
}

.cart-page-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
    align-items: start;
    gap: 32px;
}

.cart-page-items,
.summary-card {
    min-width: 0;
    background: rgba(255,255,255,.42);
    border: 1px solid rgba(201,151,50,.22);
}

.cart-page-items {
    padding: 28px;
}

.cart-page-heading {
    margin-bottom: 28px;
}

.cart-page-item {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    align-items: start;
}

.cart-page-item:first-of-type {
    border-top: 1px solid rgba(201,151,50,.25);
}

.cart-page-item .cart-item-image {
    width: 104px;
    height: 104px;
}

.cart-page-item .cart-item-top h4 {
    font-size: 22px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.cart-page-item .cart-item-content {
    min-width: 0;
}

.cart-page-item .cart-item-controls {
    flex-wrap: wrap;
    align-items: center;
}

.cart-page-summary {
    min-width: 0;
}

.summary-card {
    padding: 28px;
}

.summary-card h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
}

.summary-card .cart-actions {
    margin-top: 24px;
}

.summary-card .btn-primary {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-inline: 18px;
    font-size: 11px;
    letter-spacing: 1.5px;
    white-space: normal;
    text-align: center;
}

.empty-state-page {
    width: min(720px, 100%);
    margin: 0 auto;
    padding: 70px 28px;
    text-align: center;
    background: rgba(255,255,255,.42);
    border: 1px solid rgba(201,151,50,.22);
}

.empty-state-page h2 {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 12px;
}

.empty-state-page p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.section-heading p {
    color: #777;

    margin-top: 12px;

    font-size: 14px;
}


/* =========================================================
   COLLECTIONS
========================================================= */

.collections {
    padding: 70px 5% 80px;
}

.collection-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 9px;
}

.collection-card {
    position: relative;

    height: 365px;

    overflow: hidden;

    background: #ddd;
}

.collection-image,
.collection-placeholder {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.collection-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 90px;

    transition: transform .7s ease;
}

.collection-placeholder.silver {
    background:
        linear-gradient(145deg,#d8d5cf,#f2f0ea,#aaa7a1);
    color: #eee;
}

.collection-placeholder.gold {
    background:
        linear-gradient(145deg,#b98b36,#f0d58d,#806020);
    color: #fff2bc;
}

.collection-placeholder.ring {
    background:
        linear-gradient(145deg,#d2b487,#f8ead5,#b8925d);
    color: #fff;
}

.collection-placeholder.gift {
    background:
        linear-gradient(145deg,#c2a36c,#eee2cc,#a57e3f);
    color: white;
}

.collection-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.72),
            rgba(0,0,0,.05) 65%
        );

    z-index: 2;
}

.collection-card:hover .collection-placeholder {
    transform: scale(1.06);
}

.collection-content {
    position: absolute;

    z-index: 3;

    left: 25px;
    bottom: 22px;

    color: white;
}

.collection-icon {
    display: block;

    color: var(--gold-light);

    font-size: 25px;

    margin-bottom: 10px;
}

.collection-content h3 {
    font-size: 18px;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.collection-content p {
    color: #eee;

    font-size: 12px;
}

.collection-arrow {
    display: block;

    color: var(--gold-light);

    margin-top: 8px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    padding: 70px 5% 90px;
}

.products-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.product-card {
    position: relative;

    background: #faf9f5;

    border: 1px solid #e4dfd4;

    transition: .3s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.product-image {
    position: relative;

    height: 265px;

    overflow: hidden;

    background: white;
}

.product-tag {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 3;

    background: var(--black);
    color: white;

    padding: 4px 7px;

    font-size: 8px;

    letter-spacing: 1px;
}

.favorite-button {
    position: absolute;

    z-index: 4;

    top: 12px;
    right: 12px;

    border: 0;
    background: transparent;

    color: var(--gold);

    font-size: 23px;

    cursor: pointer;
}

.product-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 100px;
}

.silver-product {
    color: #b8b8b8;

    background:
        radial-gradient(circle at center,
        white 0%,
        #eee 55%,
        #d7d3cb 100%);
}

.necklace-product {
    color: #aaa;

    background:
        radial-gradient(circle,
        white,
        #ddd 75%);
}

.earrings-product {
    color: #c6922b;

    background:
        radial-gradient(circle,
        #fff,
        #eee4d2);
}

.bracelet-product {
    color: #c59636;

    background:
        radial-gradient(circle,
        #fff,
        #eee5d3);
}

.product-info {
    padding: 18px 20px 20px;
}

.product-category {
    display: block;

    color: #888;

    font-size: 10px;

    margin-bottom: 6px;
}

.product-info h3 {
    font-family: var(--serif);

    font-size: 17px;

    font-weight: 500;

    margin-bottom: 8px;
}

.product-info strong {
    display: block;

    font-size: 16px;

    margin-bottom: 15px;
}

.product-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 13px;

    border-top: 1px solid #d9c59d;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.product-link span {
    color: var(--gold);

    font-size: 18px;
}

.products-button {
    display: flex;
    justify-content: center;

    margin-top: 40px;
}

.products-button .btn-primary {
    min-width: 310px;
    height: 55px;

    font-size: 10px;
}

/* =========================================================
   CATALOG & PRODUCT DETAIL MODES
========================================================= */

.product-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
}

.product-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-link {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    padding: 0;
}

.product-add-btn {
    flex-shrink: 0;
    border: 1px solid var(--gold);
    background: var(--black);
    color: white;
    padding: 9px 10px;
    font-size: 9px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity .2s ease;
}

.product-add-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.product-detail-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(12, 12, 12, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-detail-overlay.hidden {
    display: none;
}

.product-detail-panel {
    position: relative;
    width: min(1100px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--cream);
    border: 1px solid rgba(201, 151, 50, 0.35);
    box-shadow: 0 30px 80px rgba(0,0,0,.22);
}

.detail-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    background: rgba(12,12,12,0.8);
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.detail-content {
    padding: 28px 24px 40px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
}

.detail-gallery {
    padding: 24px 0 0 24px;
}

.detail-main-image {
    background: white;
    border: 1px solid #e7e0d3;
    height: 550px;
    overflow: hidden;
}

.detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.detail-thumb {
    border: 1px solid #dccca6;
    background: white;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    height: 90px;
}

.detail-thumb.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(201,151,50,0.45);
}

.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-info {
    padding: 32px 24px 0 0;
}

.detail-category {
    display: inline-block;
    color: #888;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.detail-info h2 {
    font-family: var(--serif);
    font-size: 40px;
    line-height: 1.02;
    font-weight: 400;
    margin-bottom: 14px;
}

.detail-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.detail-price-row strong {
    font-size: 24px;
}

.stock-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: 1px;
    border: 1px solid rgba(201,151,50,.35);
    background: rgba(255,255,255,.4);
}

.stock-status.in-stock {
    color: #1d5d3a;
}

.stock-status.out-of-stock {
    color: #7d332c;
}

.detail-description {
    color: #4d4d4d;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.detail-specs > div {
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(201,151,50,0.25);
    padding: 12px 14px;
}

.detail-specs span {
    display: block;
    color: #767676;
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.detail-specs strong {
    font-size: 14px;
}

.detail-features h3 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.detail-features ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.detail-features li {
    position: relative;
    padding-left: 16px;
    color: #3b3b3b;
    font-size: 13px;
}

.detail-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.detail-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.detail-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(201,151,50,0.35);
    background: rgba(255,255,255,0.3);
}

.detail-quantity button {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--black);
    font-size: 24px;
    cursor: pointer;
}

.detail-quantity span {
    min-width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.detail-add-to-cart {
    min-width: 240px;
}

.detail-back {
    border: 0;
    background: transparent;
    color: var(--black);
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0;
}

.detail-related {
    border-top: 1px solid rgba(201,151,50,0.3);
    padding: 24px 24px 30px;
}

.detail-related h3 {
    margin-bottom: 16px;
    font-size: 22px;
    font-family: var(--serif);
    font-weight: 400;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.related-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid rgba(201,151,50,0.25);
    cursor: pointer;
}

.related-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.related-card div {
    padding: 14px 16px 18px;
}

.related-card span {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    color: #7c7c7c;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.related-card h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}

.related-card strong {
    font-size: 16px;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(430px, 100%);
    height: 100vh;
    background: var(--cream);
    border-left: 1px solid rgba(201,151,50,0.28);
    box-shadow: -10px 0 40px rgba(0,0,0,0.18);
    z-index: 2100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 22px 18px;
    border-bottom: 1px solid rgba(201,151,50,0.25);
}

.cart-header h3 {
    font-size: 24px;
    font-family: var(--serif);
    font-weight: 400;
}

.cart-close {
    width: 38px;
    height: 38px;
    border: 0;
    background: rgba(12,12,12,0.07);
    font-size: 22px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    padding: 18px 18px 0;
    overflow-y: auto;
}

.cart-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201,151,50,0.25);
}

.cart-item-image {
    width: 84px;
    height: 84px;
    background: white;
    border: 1px solid rgba(201,151,50,0.25);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-content {
    display: flex;
    flex-direction: column;
}

.cart-page-item.cart-item {
    grid-template-columns: 104px minmax(0, 1fr);
}

.cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.cart-item-top h4 {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.1;
    margin: 0;
}

.cart-remove {
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
}

.cart-item-category {
    color: #7f7f7f;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 6px 0 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(201,151,50,0.35);
    background: rgba(255,255,255,0.5);
}

.qty-control button {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.qty-control span {
    min-width: 22px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.cart-summary {
    padding: 18px;
    border-top: 1px solid rgba(201,151,50,0.25);
    background: rgba(255,255,255,0.2);
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-row.total-row {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(201,151,50,0.25);
    font-size: 18px;
    font-weight: 700;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.cart-continue {
    border: 0;
    background: transparent;
    color: var(--black);
    font-size: 10px;
    letter-spacing: 2px;
    cursor: pointer;
    text-align: left;
    padding: 0;
}

.cart-checkout {
    width: 100%;
}

.cart-clear {
    border: 0;
    background: transparent;
    margin-top: 12px;
    color: #7a4d47;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
}

.cart-empty {
    padding: 30px 20px 20px;
    text-align: center;
}

.cart-empty p {
    color: #444;
    margin-bottom: 18px;
}

.cart-empty-button {
    margin: 0 auto;
}

@media (max-width: 780px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-gallery {
        padding: 18px 18px 0;
    }

    .detail-main-image {
        height: 380px;
    }

    .detail-info {
        padding: 0 18px 18px;
    }

    .detail-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-add-to-cart {
        width: 100%;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   STORY
========================================================= */

.story {
    position: relative;

    min-height: 360px;

    overflow: hidden;

    display: flex;

    background: var(--black);

    color: white;
}

.story-content {
    position: relative;

    z-index: 3;

    width: 50%;

    padding: 60px 6%;
}

.story-content h2 {
    max-width: 450px;

    font-family: var(--serif);

    font-size: 43px;

    line-height: 1;

    font-weight: 400;

    margin-bottom: 20px;
}

.story-content h2 em {
    display: block;

    color: var(--gold);

    font-style: italic;
}

.story-content p {
    max-width: 450px;

    color: #ccc;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 22px;
}

.story-link {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    color: white;

    font-size: 10px;

    letter-spacing: 2px;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 8px;
}

.story-link span {
    color: var(--gold);
}

.story-image {
    position: absolute;

    right: 0;
    top: 0;

    width: 58%;
    height: 100%;

    background:
        url("https://images.unsplash.com/photo-1611652022419-a9419f74343d?auto=format&fit=crop&w=1400&q=80") center / cover no-repeat,
        linear-gradient(
            90deg,
            #0c0c0c 0%,
            rgba(12,12,12,.4) 15%,
            rgba(12,12,12,0) 35%
        ),
        linear-gradient(
            135deg,
            #111,
            #555,
            #181818
        );
}

.story-image-overlay {
    width: 100%;
    height: 100%;

    background:
        radial-gradient(
            circle at 70% 45%,
            rgba(255,255,255,.18),
            transparent 25%
        );
}


/* =========================================================
   WHY US
========================================================= */

.why-us {
    padding: 60px 5%;

    background: var(--cream);
}

.why-us .section-heading {
    margin-bottom: 40px;
}

.why-us .section-heading h2 {
    font-size: 39px;
}

.why-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(5, 1fr);
}

.why-item {
    text-align: center;

    padding: 0 25px;

    border-right: 1px solid var(--border);
}

.why-item:last-child {
    border-right: none;
}

.why-icon {
    color: var(--gold);

    font-size: 30px;

    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 10px;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}

.why-item p {
    color: #777;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   SOCIAL
========================================================= */

.social-section {
    display: grid;

    grid-template-columns: 1fr 1.4fr;

    background: var(--black);

    color: white;
}

.testimonial,
.instagram {
    padding: 55px 6%;
}

.testimonial {
    border-right: 1px solid #333;
}

.social-section h2 {
    max-width: 420px;

    font-family: var(--serif);

    font-size: 40px;

    font-weight: 400;

    line-height: 1.05;

    margin-bottom: 20px;
}

.social-section h2 em {
    color: var(--gold);

    font-style: italic;
}

.stars {
    color: var(--gold);

    letter-spacing: 5px;

    margin-bottom: 18px;
}

.testimonial blockquote {
    max-width: 450px;

    color: #ddd;

    font-family: var(--serif);

    font-size: 14px;

    line-height: 1.7;

    font-style: italic;

    margin-bottom: 15px;
}

.testimonial-author {
    color: #aaa;

    font-size: 11px;
}

.testimonial-carousel {
    max-width: 450px;
    min-height: 205px;
}

.testimonial-track {
    position: relative;
    min-height: 155px;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: testimonialReveal .35s ease both;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.testimonial-arrow {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(201,151,50,.6);
    background: transparent;
    color: white;
    cursor: pointer;
}

.testimonial-dots {
    display: flex;
    gap: 7px;
}

.testimonial-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 1px solid #aaa;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.testimonial-dots button.active {
    border-color: var(--gold);
    background: var(--gold);
}

@keyframes testimonialReveal {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.instagram-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 7px;

    margin-top: 20px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    background: #292724;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s ease, opacity .3s ease;
}

.instagram-item:hover img {
    transform: scale(1.05);
    opacity: .88;
}

.instagram-link {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    color: white;

    font-size: 9px;

    letter-spacing: 2px;

    margin-top: 15px;
}

.instagram-link span {
    color: var(--gold);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 75px 6%;

    background: var(--cream);
}

.contact-container {
    max-width: 1100px;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.contact-container h2 {
    font-family: var(--serif);

    font-size: 43px;

    font-weight: 400;

    margin-bottom: 12px;
}

.contact-container h2 em {
    color: var(--gold);

    font-style: italic;
}

.contact-container p {
    max-width: 550px;

    color: #777;

    font-size: 14px;

    line-height: 1.7;
}

.contact-button {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 20px 28px;

    background: var(--black);

    color: white;

    border: 1px solid var(--gold);

    font-size: 11px;

    letter-spacing: 2px;
}

.contact-button span {
    color: var(--gold);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--black);

    color: white;
}

.footer-main {
    max-width: 1250px;

    margin: auto;

    padding: 60px 5% 45px;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;
}

.footer-brand img {
    width: 190px;

    margin-bottom: 12px;
}

.footer-brand p {
    color: #999;

    font-size: 11px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {
    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 7px;
}

.footer-column a {
    color: #aaa;

    font-size: 11px;

    transition: color .3s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.social-icons {
    display: flex;

    gap: 20px;
}

.social-icons a {
    color: white;

    font-size: 17px;
}

.footer-bottom {
    max-width: 1250px;

    margin: auto;

    padding: 15px 5%;

    border-top: 1px solid #292929;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #666;

    font-size: 9px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {
    position: fixed;

    right: 30px;
    bottom: 28px;

    z-index: 9999;

    width: 66px;
    height: 66px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;

    color: white;

    font-size: 34px;

    box-shadow:
        0 8px 30px rgba(0,0,0,.25);

    animation: whatsappPulse 2.2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.08);
}

.whatsapp-notification {
    position: absolute;

    top: 2px;
    right: 2px;

    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #ef3340;

    border: 2px solid white;
}

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37,211,102,.45),
            0 8px 30px rgba(0,0,0,.25);
    }

    70% {
        box-shadow:
            0 0 0 15px rgba(37,211,102,0),
            0 8px 30px rgba(0,0,0,.25);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37,211,102,0),
            0 8px 30px rgba(0,0,0,.25);
    }

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1150px) {

    .header {
        height: 125px;
    }

    .logo {
        width: 190px;
    }

    .nav {
        gap: 25px;
    }

    .nav-link {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .header-actions {
        gap: 15px;
    }

    .hero {
        min-height: 680px;
    }

    .hero-content {
        min-height: 680px;

        padding-top: 70px;
    }

    .hero h1 {
        font-size: 75px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-benefits {
        gap: 15px;
    }

    .benefit {
        min-width: auto;
    }

    .collection-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 850px) {

    .header {
        height: 90px;
    }

    .header-container {
        width: 90%;
    }

    .logo {
        width: 150px;
    }

    .nav {
        position: fixed;

        top: 90px;
        left: 0;

        width: 100%;

        height: calc(100vh - 90px);

        padding: 40px;

        background: var(--black);

        flex-direction: column;

        gap: 25px;

        transform: translateX(100%);

        transition: transform .35s ease;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 13px;
    }

    .header-actions {
        margin-left: auto;
    }

    .menu-toggle {
        display: block;
    }

        .header-actions{display:flex;gap:12px;margin-left:auto}


    /* HERO */

    .hero {
        min-height: auto;

        display: flex;

        flex-direction: column;
    }

    .hero-image {
        position: relative;

        height: 390px;

        order: 1;
    }

    .hero-image::before {
        background:
            linear-gradient(
                180deg,
                rgba(247,244,238,0) 60%,
                rgba(247,244,238,.95) 100%
            );
    }

    .hero-content {
        order: 2;

        min-height: auto;

        width: 90%;

        padding: 50px 0 55px;

        align-items: center;

        text-align: center;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-label span {
        width: 40px;
    }

    .hero-label p {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 58px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;

        line-height: 1.7;
    }

    .hero-buttons {
        margin-bottom: 45px;

        flex-direction: column;

        gap: 20px;
    }

    .btn-primary {
        min-width: 280px;
    }

    .hero-benefits {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 15px;
    }

    .benefit-divider {
        display: none;
    }

    .benefit {
        justify-content: center;
    }


    /* SECTIONS */

    .section-heading h2 {
        font-size: 36px;
    }

    .collections,
    .products-section {
        padding: 55px 5%;
    }

    .collection-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        height: 330px;
    }


    /* STORY */

    .story {
        min-height: 500px;
    }

    .story-content {
        width: 100%;

        padding: 55px 8%;
    }

    .story-image {
        width: 100%;

        opacity: .35;
    }


    /* WHY */

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .why-item {
        border-right: none;
    }


    /* SOCIAL */

    .social-section {
        grid-template-columns: 1fr;
    }

    .testimonial {
        border-right: 0;

        border-bottom: 1px solid #333;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* CONTACT */

    .contact-container {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;

        text-align: center;
    }

    .whatsapp-button {
        width: 58px;
        height: 58px;

        right: 18px;
        bottom: 18px;

        font-size: 29px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .header-actions {
        display: none;
    }

    .logo {
        width: 140px;
    }

    .hero-image {
        height: 310px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-benefits {
        flex-direction: column;

        align-items: flex-start;

        padding-left: 20px;
    }

    .benefit {
        text-align: left;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

}