:root {
    --silver: #C0C0C0;
    --gold: #C9A84C;
    --gold-light: #e8d49a;
    --cream: #FAF7F2;
    --deep: #1a1a2e;
    --teal: #4ECDC4;
    --pink: #E8B4B8;
    --bg: #fefefe;
    --text: #2d2d2d;
    --muted: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: clip; /* clip not hidden — preserves sticky positioning */
}

/* ANNOUNCE BAR */
.announce-bar {
    background: var(--deep);
    color: white;
    text-align: center;
    padding: 9px;
    font-size: 12px;
    letter-spacing: 1.5px;
    overflow: hidden;
}

.announce-scroll {
    display: inline-block;
    animation: scrollText 25s linear infinite;
    white-space: nowrap;
}

@keyframes scrollText {
    0% {
        transform: translateX(100vw)
    }

    100% {
        transform: translateX(-100%)
    }
}

/* HEADER */
.header-top {
    background-image: url("../assets/img/navbar_.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.store-locator-btn {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(201, 168, 76, .4);
    padding: 7px 16px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
}

.store-locator-btn:hover {
    background: rgba(201, 168, 76, .2);
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.logo-badge {
    background: white;
    border-radius: 50%;
    width: 82px;
    height: 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
    border: 2px solid rgba(201, 168, 76, .3);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-sub {
    font-size: 8px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-wrap {
    position: relative;
}

.search-wrap svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    color: #999;
}

.search-wrap input {
    border: 1px solid rgba(201, 168, 76, .4);
    background: rgba(255, 255, 255, .7);
    border-radius: 20px;
    padding: 7px 16px 7px 34px;
    font-size: 13px;
    font-family: 'Jost', sans-serif;
    outline: none;
    width: 170px;
    color: #333;
}

.icon-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(201, 168, 76, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.icon-btn:hover {
    background: rgba(201, 168, 76, .2);
}

.icon-btn svg {
    width: 17px;
    height: 17px;
    color: #555;
}

/* NAVBAR */
.navbar {
    background: white;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 68px;            /* JS overrides this at runtime */
    z-index: 9999;        /* below header (10000) but above everything else */
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.nav-item {
    position: relative;
    padding: 16px 20px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    transition: color .2s;
}

.nav-item:hover {
    color: var(--gold);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s;
}

.nav-item:hover::after {
    width: 60%;
}

.nav-digital {
    background: var(--gold);
    color: white !important;
    border-radius: 4px;
    margin-left: 8px;
    padding: 10px 16px;
}

.nav-digital:hover {
    background: #b8963e;
}

.nav-digital::after {
    display: none;
}

/* DROPDOWN */
.nav-item .dropdown {
    display: none;
    position: fixed;
    /* top is set by JS: applyOffsets() → dd.style.top = total + "px" */
    top: 116px;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border-top: 3px solid var(--teal);
    border-bottom: 1px solid #eee;
    border-radius: 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
    padding: 32px 80px;
    z-index: 100000;    /* above header (10000) and navbar (9999) */
    gap: 0;
    animation: fadeDD .18s ease;
    min-width: unset;
    transform: none;
}

.nav-item:hover .dropdown {
    display: flex;
}

@keyframes fadeDD {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Dropdown columns layout */
.dropdown-col {
    flex: 1;
    padding-right: 40px;
    border-right: 1px solid #f0f0f0;
    margin-right: 40px;
}
.dropdown-col:last-of-type {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.dropdown-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 13.5px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s, padding-left .2s;
    border-bottom: 1px solid #f8f8f8;
}
.dropdown-col a:last-child { border-bottom: none; }

.dropdown-col a:hover {
    color: var(--teal);
    padding-left: 5px;
}

.mat-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dd-img {
    flex: 0 0 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f0e8, #ede4d0);
    align-self: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.dd-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* ===================== HERO SLIDESHOW — FULL WIDTH IMAGE FIX ===================== */

.hero-slider {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Each slide takes full width */
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* The image container — covers the ENTIRE slide */
.slide-model {
  position: absolute;
  inset: 0;               /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Remove the old ::after pseudo-element gradient that was shrinking the model */
.slide-model::after {
  display: none;
}

/* Overlay content sits on top of the full-width image */
.slide-content {
  position: absolute;
  z-index: 2;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 480px;
  text-align: center;
}

/* Arrow buttons */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-arrow:hover {
  background: rgba(201, 168, 76, 0.55);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow-left  { left: 24px; }
.hero-arrow-right { right: 24px; }
.hero-arrow svg   { display: block; }

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 28px;
  border-radius: 5px;
}


/* SECTIONS */
section {
    padding: 72px 60px;
}

.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    text-align: center;
    color: var(--deep);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.sec-title em {
    color: var(--gold);
    font-style: italic;
}

.sec-div {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 12px auto 44px;
}

/* COLLECTIONS — staggered offset layout (Image 1 style) */
.coll-section-wrap {
    background: #faf7f2;
    padding: 72px 60px 100px;
}

.coll-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
    padding-bottom: 20px;
}

/* Each card is a tall portrait tile */
.coll-card {
    position: relative;
    flex: 1;
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.25,.8,.25,1), box-shadow .35s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

/* Staggered vertical offsets like Image 1 */
.coll-card:nth-child(1) { margin-top: 0;    height: 440px; }
.coll-card:nth-child(2) { margin-top: 48px; height: 480px; }
.coll-card:nth-child(3) { margin-top: 16px; height: 460px; }
.coll-card:nth-child(4) { margin-top: 60px; height: 430px; }

.coll-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0,0,0,0.18);
}

/* Full-bleed image fills card */
.coll-emoji {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.coll-emoji img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.coll-card:hover .coll-emoji img {
    transform: scale(1.06);
}

/* Gradient overlay at bottom */
.coll-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px 22px;
    background: linear-gradient(to top,
        rgba(30,18,10,0.78) 0%,
        rgba(30,18,10,0.25) 45%,
        transparent 100%);
}

.coll-text-block {
    display: flex;
    flex-direction: column;
}

.coll-sub {
    font-size: 9.5px;
    letter-spacing: 2.5px;
    color: rgba(255,230,160,0.92);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 6px;
}

.coll-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 14px rgba(0,0,0,.5);
}

/* Hover arrow badge */
.coll-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .3s, transform .3s;
    color: #fff;
    font-size: 16px;
}

.coll-card:hover .coll-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* BEST SELLERS */
.bsell {
    background: var(--cream);
}

.cat-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.tab-btn {
    padding: 8px 22px;
    border-radius: 24px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid #ddd;
    background: transparent;
    color: #555;
    transition: all .2s;
    font-family: 'Jost', sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
}

.prod-row {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 6px;
    max-width: 1200px;
    margin: 0 auto;
    scrollbar-width: none;
}

.prod-row::-webkit-scrollbar {
    display: none;
}

.prod-card {
    flex: 0 0 215px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s;
    border: 1px solid #f0f0f0;
    position: relative;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

.prod-img {
    height: 190px;
    background: linear-gradient(135deg, #f8f4ee, #ede4d4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    position: relative;
}

.wish-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 13px;
}

.prod-info {
    padding: 14px;
}

.prod-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #222;
    margin-bottom: 7px;
}

.prod-price {
    display: flex;
    align-items: center;
    gap: 7px;
}

.price-cur {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.price-old {
    font-size: 11.5px;
    color: #aaa;
    text-decoration: line-through;
}

.disc-badge {
    font-size: 10px;
    color: var(--teal);
    background: rgba(78, 205, 196, .1);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 4px;
    display: inline-block;
}

/* STICKY SECTION */
/* ══ STICKY RING SECTION ══
   The left image is position:sticky — it stays fixed while the page
   scrolls the right product grid. Works because:
   1. body uses overflow-x:clip (not hidden) — doesn't break sticky
   2. .sticky-section has align-items:flex-start so left child isn't stretched
   3. .sticky-left has align-self:flex-start (belt + suspenders)
   4. .sticky-right is normal page flow — NO overflow, NO max-height
*/
.sticky-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;   /* CRITICAL — stops flex from stretching sticky child */
    background: #f2f2f2;
}

/* Left sticky image — pinned while page scrolls right column */
.sticky-left {
    flex: 0 0 44%;
    flex-shrink: 0;
    position: sticky;
    top: 116px;                /* JS sets this to real header+navbar height */
    height: calc(100vh - 116px);
    align-self: flex-start;    /* CRITICAL — belt + suspenders */
    overflow: hidden;
}

.sticky-img-div {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 40px;
    overflow: hidden;
}

.sticky-img-div img.sticky-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.sticky-img-div::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.20) 45%, rgba(0,0,0,0.04) 100%);
    z-index: 1;
}

.st-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 300;
    color: white;
    line-height: 1;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.st-sub {
    font-size: 11px;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}

/* Right product grid — normal page flow, NO overflow, page scrolls through it */
.sticky-right {
    flex: 1;
    min-width: 0;
    padding: 22px 22px 44px 22px;
    background: #f2f2f2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-content: start;
    /* NO overflow-y, NO max-height — page itself scrolls */
}

.sticky-right::-webkit-scrollbar { display: none; }

/* Portrait product cards inside sticky-right */
.sticky-right .prod-card {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    background: white !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 1px solid #e8e8e8 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform .25s ease, box-shadow .25s ease !important;
    position: relative !important;
}
.sticky-right .prod-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.13) !important;
}
.sticky-right .prod-img {
    width: 100% !important;
    height: 200px !important;
    flex-shrink: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    background: #fff !important;
    border-radius: 14px 14px 0 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.sticky-right .prod-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 16px !important;
    display: block !important;
    transition: transform .35s ease !important;
}
.sticky-right .prod-card:hover .prod-img img { transform: scale(1.07) !important; }
.sticky-right .wish-btn {
    position: absolute !important;
    top: 10px !important; left: 10px !important; right: auto !important;
    width: 30px !important; height: 30px !important; font-size: 14px !important;
    background: #fff !important; border: 1px solid #e0e0e0 !important;
    border-radius: 50% !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.09) !important; z-index: 3 !important;
}
.sticky-right .prod-info {
    padding: 11px 14px 15px !important; flex: 1 !important;
    border-top: 1px solid #f0f0f0 !important;
}
.sticky-right .prod-name {
    font-family: 'Jost', sans-serif !important; font-size: 13px !important;
    font-weight: 400 !important; color: #1a1a1a !important;
    line-height: 1.4 !important; margin-bottom: 6px !important;
}
.sticky-right .prod-price {
    display: flex !important; align-items: center !important;
    gap: 7px !important; flex-wrap: wrap !important; margin-bottom: 3px !important;
}
.sticky-right .price-cur { font-size: 14px !important; font-weight: 600 !important; color: #111 !important; }
.sticky-right .price-old { font-size: 11.5px !important; color: #d63031 !important; text-decoration: line-through !important; }
.sticky-right .disc-badge {
    display: block !important; font-size: 11px !important; color: #555 !important;
    background: none !important; padding: 0 !important; border-radius: 0 !important;
    font-weight: 400 !important; margin-top: 2px !important;
}

/* STORE */
.store-sec {
    background: linear-gradient(135deg, #e8f4f4, #d0ecec);
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    min-height: 420px;
}

.store-bg {
    position: absolute;
    inset: 0;
}

.store-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.store-left-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .08);
}

.store-left-box svg {
    width: 46px;
    height: 46px;
    color: var(--teal);
    margin-bottom: 14px;
}

.store-left-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--deep);
}

.store-left-box p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
}

.store-right {
    flex: 0 0 400px;
    background: var(--teal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 48px;
    position: relative;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.store-right-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    color: white;
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.store-input-wrap {
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 4px 4px 4px 14px;
    width: 100%;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.store-input-wrap svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
}

.store-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Jost', sans-serif;
    font-size: 13.5px;
    padding: 10px 10px;
    color: #333;
}

.store-btn-sm {
    background: var(--teal);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
}

.store-btn-main {
    background: var(--pink);
    color: white;
    border: none;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    font-family: 'Jost', sans-serif;
    transition: all .2s;
}

.store-btn-main:hover {
    background: #d09098;
    transform: translateY(-2px);
}

/* LATEST RELEASES */
.releases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.rel-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 276px;
    cursor: pointer;
    transition: transform .3s;
}

.rel-card:hover {
    transform: scale(1.02);
}

.rel-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
}

.rel-card:nth-child(1) .rel-bg {
    background: linear-gradient(135deg, #fff0e8, #fde0cc);
}

.rel-card:nth-child(2) .rel-bg {
    background: linear-gradient(135deg, #3d1f00, #7a4020);
}

.rel-card:nth-child(3) .rel-bg {
    background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
}

.rel-card:nth-child(4) .rel-bg {
    background: linear-gradient(135deg, #2d0a00, #5a1a00);
}

.rel-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.rel-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    color: white;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.rel-name.dk {
    color: var(--deep);
    text-shadow: none;
}

.rel-sub {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.rel-sub.dk {
    color: var(--gold);
}

/* INSTAGRAM */
.ig-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    color: var(--deep);
    margin-bottom: 36px;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
}

.ig-card {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform .3s;
}

.ig-card:hover {
    transform: scale(1.03);
}

.ig-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    transition: filter .3s;
}

.ig-card:hover .ig-bg {
    filter: brightness(.7);
}

.ig-card:nth-child(1) .ig-bg {
    background: linear-gradient(135deg, #e8f0f0, #d0e8e8);
}

.ig-card:nth-child(2) .ig-bg {
    background: linear-gradient(135deg, #fde8d0, #f5d4b8);
}

.ig-card:nth-child(3) .ig-bg {
    background: linear-gradient(135deg, #f8f0e8, #ede4d4);
}

.ig-card:nth-child(4) .ig-bg {
    background: linear-gradient(135deg, #e8f0e8, #d4e4d4);
}

.ig-card:nth-child(5) .ig-bg {
    background: linear-gradient(135deg, #f5e8f5, #e4d0e4);
}

.ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    color: white;
    font-size: 22px;
}

.ig-card:hover .ig-overlay {
    opacity: 1;
}

.ig-code {
    position: absolute;
    bottom: 7px;
    left: 7px;
    font-size: 9px;
    color: rgba(255, 255, 255, .8);
    background: rgba(0, 0, 0, .4);
    padding: 2px 6px;
    border-radius: 3px;
}

/* FOOTER */
footer {
    background: var(--teal);
    color: white;
    padding: 56px 80px 28px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.4fr;
    gap: 36px;
    margin-bottom: 44px;
}

.foot-col h4 {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 18px;
}

.foot-col a {
    display: block;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color .2s;
    cursor: pointer;
}

.foot-col a:hover {
    color: white;
}

.newsw {
    background: rgba(255, 255, 255, .12);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    margin-bottom: 18px;
}

.newsw input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 13px 14px;
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    outline: none;
}

.newsw input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.newsw button {
    background: rgba(255, 255, 255, .2);
    border: none;
    padding: 13px 16px;
    cursor: pointer;
    color: white;
    font-size: 17px;
}

.foot-contact {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
}

.foot-contact strong {
    color: white;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foot-bottom p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .6);
}

.soc-icons {
    display: flex;
    gap: 10px;
}

.soc-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s;
}

.soc-btn:hover {
    background: rgba(255, 255, 255, .3);
}

/* PRODUCT PAGE */
.prod-page {
    display: none;
}

.prod-page.active {
    display: block;
}

.main-content.hidden {
    display: none;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    margin: 18px 40px;
    background: none;
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 12.5px;
    color: var(--gold);
    cursor: pointer;
    transition: all .2s;
}

.back-btn:hover {
    background: var(--gold);
    color: white;
}

.pp-layout {
    display: flex;
    gap: 0;
    padding: 0 40px 60px;
}

.pp-filters {
    flex: 0 0 230px;
    padding-right: 28px;
}

.filt-sec {
    margin-bottom: 26px;
}

.filt-sec h4 {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filt-opt {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 0;
    font-size: 13px;
    color: #555;
    cursor: pointer;
}

.filt-opt input {
    accent-color: var(--teal);
    width: 14px;
    height: 14px;
}

.act-filters {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.filt-tag {
    background: var(--cream);
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 4px 11px;
    font-size: 11.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
}

.filt-tag span {
    cursor: pointer;
    color: #aaa;
}

.pp-grid-main {
    flex: 1;
}

.pp-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.pp-grid-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
}

.sort-sel {
    border: 1.5px solid #ddd;
    border-radius: 6px;
    padding: 7px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 12.5px;
    outline: none;
    cursor: pointer;
}

.pp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.view-all-btn {
    text-align: center;
    margin-top: 36px;
}