/* ============================================================
   CAKE PALACE CAFE — style.css
   Shared across: index.html | shop.html | contact.html
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9A84C;
    --gold-light: #F2D472;
    --gold-dark: #9A6F20;
    --black: #0A0A0A;
    --cream: #FAF3E0;
    --dark-bg: #0d0b04;
    --text-light: #E8D9B0;
    --border: rgba(201, 168, 76, 0.15);
}

html {
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.325rem;
    /* BASE FONT */
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    max-width: 100%;
}


/* ============================================================
   TOPBAR — phone numbers & social icons
   ============================================================ */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: 38px;
    background: rgba(6, 5, 0, 0.97);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 60px;
    gap: 28px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slides up when user scrolls down */
.topbar.hidden {
    transform: translateY(-100%);
}

.topbar-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(232, 217, 176, 0.75);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.topbar-phone:hover {
    color: var(--gold-light);
}

.topbar-phone svg {
    width: 13px;
    height: 13px;
    fill: var(--gold);
    flex-shrink: 0;
}

.topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(201, 168, 76, 0.25);
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-soc {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.topbar-soc:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.topbar-soc svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

/* ============================================================
   NAV — shared
   ============================================================ */
nav {
    position: fixed;
    top: 38px;
    /* sits directly below topbar */
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 60px;
    background-color : #282427;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When topbar hides, nav slides up to top:0 */
nav.topbar-hidden {
    top: 0;
}

nav.scrolled {
       background: rgb(40 36 39);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
}

.logo-fallback,
.logo-fb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.nav-logo-text span {
    display: block;
}

.nav-logo-text span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    /* UP from 1.1 */
    color: var(--gold-light);
}

.nav-logo-text span:last-child {
    font-family: 'Scheherazade New', serif;
    font-size: 1.2rem;
    /* UP from 0.85 */
    color: var(--gold);
}

/* nav-links (home page) */
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 1.0rem;
    /* UP from 0.93 */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

/* nl (shop / contact pages) */
.nl {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nl a {
    font-size: 1.00rem;
    /* UP from 0.93 */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nl a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nl a:hover,
.nl a.active {
    color: var(--gold-light);
}

.nl a:hover::after,
.nl a.active::after {
    transform: scaleX(1);
}

.btn-wa,
.bwa {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
    color: var(--black) !important;
    padding: 9px 22px;
    border-radius: 2px;
    font-weight: 700 !important;
}

.btn-wa::after,
.bwa::after {
    display: none !important;
}


/* ============================================================
   HERO SLIDER — home (FIXED PERFECT WIDTH)
   ============================================================ */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.slide {
    min-width: 100%;        /* FIXED (removed 100vw) */
    width: 100%;            /* FIXED */
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slide-bg {
    position: absolute;
    inset: -2px;   /* slightly overflow */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active .slide-bg {
    transform: none;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 830px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s 0.35s, transform 0.8s 0.35s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-tag {
    display: inline-block;
    font-size: 1.025rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 20px;
    margin-bottom: 22px;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
}

.slide-title em {
    color: var(--gold-light);
    font-style: italic;
}

.slide-desc {
    font-size: 1.425rem;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 36px;
    font-weight: 300;
}

.slide-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--black);
    padding: 14px 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.225rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.225rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s, color 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* Navigation dots */

.slider-nav {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}

/* Arrows */

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-light);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.225rem;
    transition: background 0.3s;
    backdrop-filter: blur(4px);
}

.arrow:hover {
    background: rgba(201, 168, 76, 0.28);
}

.arrow.prev {
    left: 28px;
}

.arrow.next {
    right: 28px;
}

/* Scroll hint */

.scroll-hint {
    position: absolute;
    bottom: 44px;
    right: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.925rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 46px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: sl 1.6s ease-in-out infinite;
}

@keyframes sl {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    animation: mq 24s linear infinite;
    gap: 50px;
}

.marquee-inner span {
    font-family: 'Playfair Display', serif;
    font-size: 1.055rem;
    /* UP from 0.75 */
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 700;
}

@keyframes mq {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}


/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
    padding: 96px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.sec-tag {
    display: inline-block;
    font-size: 0.995rem;
    /* UP from 0.68 */
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

/* Headings — NOT changed per requirement */
.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 3.2rem);
    color: var(--cream);
    line-height: 1.15;
}

.sec-title em {
    color: var(--gold-light);
    font-style: italic;
}

.sec-line {
    width: 70px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 20px auto 0;
}

.sec-text {
    max-width: 680px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 1.325rem;
    /* UP from 1.05 */
    color: rgba(232, 217, 176, 0.6);
    line-height: 1.85;
}


/* ============================================================
   ABOUT — home
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border: 2px solid var(--border);
}

.about-img-acc {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 52%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 3px solid var(--dark-bg);
}

.about-badge {
    position: absolute;
    top: 22px;
    left: -18px;
    background: var(--gold);
    color: var(--black);
    padding: 14px 20px;
    text-align: center;
}

.about-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.825rem;
}

.about-badge span {
    font-size: 0.955rem;
    /* UP from 0.62 */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.about-content .sec-tag,
.about-content .sec-title,
.about-content .sec-line {
    text-align: left;
    margin-left: 0;
}

.about-content p {
    font-size: 1.305rem;
    /* UP from 1.03 */
    color: rgba(232, 217, 176, 0.62);
    line-height: 1.88;
    margin-top: 20px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 2.125rem;
    color: var(--gold-light);
    display: block;
}

.stat span {
    font-size: 1.025rem;
    /* UP from 0.72 */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(232, 217, 176, 0.45);
}

.dark-section {
    background: linear-gradient(135deg, #0d0b04 0%, #160f02 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


/* ============================================================
   PRODUCTS GRID — home
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1300px;
    margin: 0 auto;
}

.pcat {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
}

.pcat:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

.p-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}

.pcat:hover .p-bg {
    transform: scale(1.07);
}

.p-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 55%);
    transition: background 0.4s;
}

.pcat:hover .p-ov {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.22) 70%);
}

.p-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 26px 22px;
    transform: translateY(14px);
    transition: transform 0.4s;
}

.pcat:hover .p-info {
    transform: translateY(0);
}

.p-cat-l {
    font-size: 0.925rem;
    /* UP from 0.6 */
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

/* p-name is a heading-style label — kept */
.p-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 7px;
}

.p-items {
    font-size: 1.125rem;
    /* UP from 0.82 */
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.65;
    opacity: 0;
    transition: opacity 0.4s 0.08s;
}

.pcat:hover .p-items {
    opacity: 1;
}

.p-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.905rem;
    /* UP from 0.6 */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
}


/* ============================================================
   FEATURES — home
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.feat {
    padding: 44px 26px;
    border: 1px solid var(--border);
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
}

.feat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
    pointer-events: none;
}

.feat:hover {
    border-color: rgba(201, 168, 76, 0.38);
    transform: translateY(-4px);
}

.feat-icon {
    font-size: 2.125rem;
    margin-bottom: 18px;
    display: block;
}

/* feat-title is heading-style — kept */
.feat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.feat-text {
    font-size: 1.195rem;
    /* UP from 0.9 */
    color: rgba(232, 217, 176, 0.52);
    line-height: 1.82;
}


/* ============================================================
   LOCATION — home
   ============================================================ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.map-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1408, #0d0b04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.map-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.map-pin {
    font-size: 2.725rem;
}

.map-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    /* UP from 1.08 */
    color: var(--gold);
    text-align: center;
    line-height: 1.5;
}

.map-sub {
    font-size: 1.125rem;
    /* UP from 0.82 */
    color: rgba(232, 217, 176, 0.42);
    text-align: center;
    letter-spacing: 1px;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 10px 28px;
    font-size: 1.075rem;
    /* UP from 0.78 */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.ci {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ci-label {
    font-size: 0.955rem;
    /* UP from 0.66 */
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.ci-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    color: var(--cream);
}

.ci-sub {
    font-size: 1.125rem;
    /* UP from 0.82 */
    color: rgba(232, 217, 176, 0.48);
    margin-top: 3px;
}


/* ============================================================
   TESTIMONIAL — home
   ============================================================ */
.test-section {
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
    padding: 96px 60px;
    text-align: center;
}

.t-stars {
    color: var(--gold);
    font-size: 1.375rem;
    /* UP from 1.1 */
    letter-spacing: 4px;
    margin-bottom: 24px;
}

/* t-quote is a heading-style quote — kept */
.t-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.4vw, 1.95rem);
    font-style: italic;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 26px;
    line-height: 1.65;
}

.t-author {
    font-size: 1.055rem;
    /* UP from 0.74 */
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}




/* ============================================================
   TESTIMONIAL SLIDER
   ============================================================ */
.ts-header {
    text-align: center;
    margin-bottom: 36px;
}

.ts-slider {
    overflow: hidden;
    max-width: 820px;
    margin: 0 auto;
}

.ts-track {
    display: flex;
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

.ts-slide {
    min-width: 100%;
    text-align: center;
    padding: 0 20px;
}

.ts-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.ts-arrow {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold-light);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s, border-color 0.3s;
    flex-shrink: 0;
}

.ts-arrow:hover {
    background: rgba(201, 168, 76, 0.22);
    border-color: var(--gold);
}

.ts-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ts-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.ts-dot.active {
    background: var(--gold);
    width: 26px;
    border-radius: 4px;
}

/* ============================================================
   CTA BANNER — home
   ============================================================ */
.cta-banner {
    margin: 0 60px 96px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-dark) 100%);
    padding: 62px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    flex-wrap: wrap;
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

/* cta heading — kept */
.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
    color: var(--black);
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 1.275rem;
    /* UP from 0.98 */
    color: rgba(0, 0, 0, 0.58);
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--black);
    color: var(--gold-light);
    padding: 14px 34px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.225rem;
    /* UP from 0.93 */
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-dark:hover {
    transform: translateY(-2px);
}

.btn-wh {
    background: rgba(255, 255, 255, 0.2);
    color: var(--black);
    padding: 14px 34px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.225rem;
    /* UP from 0.93 */
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(0, 0, 0, 0.14);
    transition: background 0.3s;
    display: inline-block;
}

.btn-wh:hover {
    background: rgba(255, 255, 255, 0.36);
}


/* ============================================================
   FOOTER — shared
   ============================================================ */
footer {
    background: rgba(0, 0, 0, 0.54);
    border-top: 1px solid var(--border);
    padding: 58px 60px 26px;
}

/* home footer */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 54px;
    margin-bottom: 46px;
}

.f-brand img {
    width: 66px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin-bottom: 16px;
    display: block;
}

.f-brand p {
    font-size: 1.3rem;
    /* UP from 0.88 */
    color: rgba(232, 217, 176, 0.48);
    line-height: 1.85;
    max-width: 240px;
    margin-bottom: 22px;
}

.f-social {
    display: flex;
    gap: 10px;
}

.soc {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.179rem;
    transition: background 0.3s, border-color 0.3s;
}

.soc:hover {
    background: rgba(201, 168, 76, 0.14);
    border-color: var(--gold);
}

/* heading in footer col — kept */
.f-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.117rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.f-links a {
    color: rgba(232, 217, 176, 0.48);
    text-decoration: none;
    font-size: 1.3rem;
    /* UP from 0.87 */
    transition: color 0.3s;
}

.f-links a:hover {
    color: var(--gold);
}

.f-ci {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 13px;
    font-size: 1.3rem;
    /* UP from 0.86 */
    color: rgba(232, 217, 176, 0.48);
}

.f-ci span:first-child {
    color: var(--gold);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.199rem;
    /* UP from 0.76 */
    color: rgba(232, 217, 176, 0.28);
    letter-spacing: 1px;
}

/* shop / contact footer variants */
.fg,
.fg2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 50px;
    margin-bottom: 44px;
}

.fb2 {
    font-size: 1.3rem;
    /* UP from 0.87 */
    color: rgba(232, 217, 176, 0.46);
    line-height: 1.85;
    max-width: 240px;
    margin-bottom: 20px;
}

.fsoc {
    display: flex;
    gap: 10px;
}

.fcol h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.107rem;
    color: var(--gold-light);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.fl {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fl a {
    color: rgba(232, 217, 176, 0.46);
    text-decoration: none;
    font-size: 1.3rem;
    /* UP from 0.86 */
    transition: color 0.3s;
}

.fl a:hover {
    color: var(--gold);
}

.fci {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1.3rem;
    /* UP from 0.85 */
    color: rgba(232, 217, 176, 0.46);
}

.fci span:first-child {
    color: var(--gold);
    flex-shrink: 0;
}

.fbot {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 1.199rem;
    /* UP from 0.74 */
    color: rgba(232, 217, 176, 0.26);
    letter-spacing: 1px;
}


/* ============================================================
   PAGE HERO — shop & contact
   ============================================================ */
.page-hero {
    padding: 150px 60px 70px;
    margin-top: 140px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
}

.ph-tag {
    display: inline-block;
    font-size: 0.995rem;
    /* UP from 0.68 */
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 20px;
    margin-bottom: 22px;
}

/* ph-title is a heading — kept */
.ph-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 16px;
}

.ph-title em {
    color: var(--gold-light);
    font-style: italic;
}

.ph-desc {
    font-size: 1.355rem;
    /* UP from 1.05 */
    color: rgba(232, 217, 176, 0.58);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.85;
}

.ph-line {
    width: 70px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 22px auto 0;
}


/* ============================================================
   SHOP — filter & product cards
   ============================================================ */
.filter-wrap {
    padding: 44px 60px 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.fb {
    background: transparent;
    border: 1px solid var(--border);
    color: rgba(232, 217, 176, 0.52);
    padding: 10px 26px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.175rem;
    /* UP from 0.87 */
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.fb:hover,
.fb.active {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
}

.shop-sec {
    padding: 52px 60px 90px;
}

.cat-block {
    margin-bottom: 74px;
}

.cat-hd {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 36px;
}

/* cat-title is heading — kept */
.cat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    color: var(--gold-light);
}

.cat-ln {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border), transparent);
}

.cat-count {
    font-size: 0.995rem;
    /* UP from 0.68 */
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(232, 217, 176, 0.32);
}

.ig {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.ic {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ic-ph {
    width: 100%;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.425rem;
}

.ic-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 55%);
    transition: background 0.4s;
}

.ic:hover .ic-ov {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.18) 68%);
}

.ic-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 20px;
    transform: translateY(10px);
    transition: transform 0.4s;
}

.ic:hover .ic-info {
    transform: translateY(0);
}

/* ic-name is heading-style — kept */
.ic-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    color: #fff;
    margin-bottom: 4px;
}

.ic-price {
    color: var(--gold-light);
    font-size: 1.175rem;
    /* UP from 0.87 */
}

.ic-desc {
    font-size: 1.095rem;
    /* UP from 0.78 */
    color: rgba(255, 255, 255, 0.48);
    margin-top: 6px;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.4s;
}

.ic:hover .ic-desc {
    opacity: 1;
}

.ic-badge {
    position: absolute;
    top: 13px;
    right: 13px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.895rem;
    /* UP from 0.57 */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
}

.ic-badge.nb {
    background: #1e5e1e;
    color: #b8f0b8;
}

.order-cta {
    background: linear-gradient(135deg, #130d02, #0d0b04);
    border: 1px solid var(--border);
    margin: 0 60px 60px;
    padding: 54px;
    text-align: center;
}

/* oc-title is heading — kept */
.oc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.4vw, 2.3rem);
    color: var(--cream);
    margin-bottom: 13px;
}

.oc-title em {
    color: var(--gold-light);
    font-style: italic;
}

.oc-desc {
    font-size: 1.275rem;
    /* UP from 0.98 */
    color: rgba(232, 217, 176, 0.52);
    margin: 0 auto 30px;
    max-width: 500px;
    line-height: 1.85;
}

.oc-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.bgold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--black);
    padding: 13px 38px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.225rem;
    /* UP from 0.93 */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    display: inline-block;
}

.bgold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.38);
}

.bout {
    background: transparent;
    color: var(--gold-light);
    padding: 13px 38px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.225rem;
    /* UP from 0.93 */
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.3s, color 0.3s;
    display: inline-block;
}

.bout:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* ============================================================
   CONTACT — form & info panel
   ============================================================ */
.contact-section {
    padding: 80px 60px 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    max-width: 1150px;
    margin: 0 auto;
}

/* info panel heading — kept */
.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.info-desc {
    font-size: 1.275rem;
    /* UP from 1.0 */
    color: rgba(232, 217, 176, 0.56);
    line-height: 1.85;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.info-item:first-child {
    border-top: 1px solid var(--border);
}

.ii-icon {
    width: 46px;
    height: 46px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.025rem;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}

.info-item:hover .ii-icon {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
}

.ii-label {
    font-size: 0.955rem;
    /* UP from 0.65 */
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

/* ii-val heading-style — kept */
.ii-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--cream);
}

.ii-sub {
    font-size: 1.125rem;
    /* UP from 0.83 */
    color: rgba(232, 217, 176, 0.46);
    margin-top: 3px;
}

.ii-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ii-link:hover .ii-val {
    color: var(--gold-light);
}

.wa-box {
    margin-top: 36px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.04));
    border: 1px solid rgba(37, 211, 102, 0.25);
    padding: 28px;
    text-align: center;
}

.wa-icon {
    font-size: 2.25rem;
    margin-bottom: 10px;
}

/* wa-title heading-style — kept */
.wa-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #25d366;
    margin-bottom: 8px;
}

.wa-desc {
    font-size: 1.175rem;
    /* UP from 0.88 */
    color: rgba(232, 217, 176, 0.5);
    margin-bottom: 18px;
    line-height: 1.75;
}

.wa-btn {
    display: inline-block;
    background: #25d366;
    color: #000;
    padding: 13px 34px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.175rem;
    /* UP from 0.9 */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s;
}

.wa-btn:hover {
    opacity: 0.85;
}

/* form heading — kept */
.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.form-desc {
    font-size: 1.275rem;
    /* UP from 1.0 */
    color: rgba(232, 217, 176, 0.56);
    line-height: 1.85;
    margin-bottom: 36px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.fg-full {
    grid-column: span 2;
}

.field-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-size: 0.995rem;
    /* UP from 0.68 */
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.field-input,
.field-select,
.field-textarea {
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid var(--border);
    color: var(--text-light);
    padding: 14px 17px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.255rem;
    /* UP from 1.0 */
    width: 100%;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
}

.field-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.field-select option {
    background: #1a1408;
    color: var(--text-light);
}

.field-textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--black);
    padding: 16px 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.255rem;
    /* UP from 1.0 */
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 8px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.38);
}

.form-note {
    font-size: 1.095rem;
    /* UP from 0.8 */
    color: rgba(232, 217, 176, 0.38);
    margin-top: 14px;
    text-align: center;
    line-height: 1.65;
}

.success-msg {
    display: none;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 20px;
    text-align: center;
    color: #25d366;
    font-family: 'Playfair Display', serif;
    font-size: 1.275rem;
    /* UP from 1.05 */
    margin-top: 16px;
}


/* ============================================================
   VISION / MISSION / VALUES — contact
   ============================================================ */
.vm-section {
    background: linear-gradient(135deg, #0d0b04, #160f02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 60px;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-card {
    padding: 44px 36px;
    border: 1px solid var(--border);
    position: relative;
    transition: border-color 0.3s;
}

.vm-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
}

.vm-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
    pointer-events: none;
}

.vm-icon {
    font-size: 1.925rem;
    margin-bottom: 18px;
    display: block;
}

/* vm-title heading — kept */
.vm-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.vm-text {
    font-size: 1.225rem;
    /* UP from 0.93 */
    color: rgba(232, 217, 176, 0.56);
    line-height: 1.85;
}

.vm-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 12px;
}

.vm-list li {
    font-size: 1.195rem;
    /* UP from 0.9 */
    color: rgba(232, 217, 176, 0.54);
    line-height: 1.65;
    padding-left: 20px;
    position: relative;
}

.vm-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.65rem;
    top: 4px;
}


/* ============================================================
   FADE ANIMATIONS — shared
   ============================================================ */
.fu {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s, transform 0.7s;
}

.fu.visible {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .topbar {
        padding: 0 28px;
        gap: 18px;
    }

    nav {
        padding: 14px 28px;
    }

    .section {
        padding: 72px 28px;
    }

    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-img-acc {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcat:first-child {
        grid-row: span 1;
        aspect-ratio: 3/4;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid,
    .fg,
    .fg2 {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }

    .cta-banner {
        margin: 0 28px 72px;
    }

    .page-hero,
    .shop-sec,
    .filter-wrap,
    .order-cta,
    .contact-section,
    .vm-section {
        padding-left: 28px;
        padding-right: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .ig {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-cta {
        margin-left: 28px;
        margin-right: 28px;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 0 16px;
        gap: 12px;
        height: 34px;
    }

    .topbar-phone span {
        display: none;
    }

    /* show icon only on mobile */
    nav {
        top: 34px;
    }

    nav.topbar-hidden {
        top: 0;
    }

    .nav-links,
    .nl {
        display: none;
    }

    .products-grid,
    .ig {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner {
        margin: 0 16px 64px;
        clip-path: none;
        padding: 42px 24px;
    }

    .footer-grid,
    .fg,
    .fg2 {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 42px 22px 20px;
    }

    .arrow,
    .scroll-hint {
        display: none;
    }

    .about-stats {
        gap: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .fg-full {
        grid-column: span 1;
    }

    .fbot {
        flex-direction: column;
        gap: 8px;
    }

    .order-cta {
        margin: 0 16px 44px;
    }
}
