/* ====================================
   LUTTON PREMDAR - LUXURY FASHION
   ==================================== */

/* CSS Variables */
:root {
    /* Brand + materials */
    --gold: #C9A55A;
    --gold-dark: #B8943D;
    --gold-soft: rgba(201, 165, 90, 0.65);
    --gold-hairline: rgba(201, 165, 90, 0.28);
    --black: #000000;
    --ink: #070707;
    --charcoal: #1A1A1A;
    --charcoal-light: #2A2A2A;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --gray: #666666;
    --gray-light: #999999;

    /* Type */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --text: #141414;
    --text-muted: rgba(20, 20, 20, 0.72);
    --text-on-dark: rgba(255, 255, 255, 0.92);
    --text-muted-on-dark: rgba(255, 255, 255, 0.70);

    /* Layout rhythm */
    --container-pad: clamp(20px, 3vw, 40px);
    --section-y: clamp(72px, 8vw, 120px);
    --section-y-tight: clamp(56px, 6vw, 88px);

    /* Typography scale */
    --h1: clamp(2.6rem, 4.2vw, 4.2rem);
    --h2: clamp(2.0rem, 3.2vw, 3.0rem);
    --h3: clamp(1.35rem, 1.6vw, 1.8rem);
    --body: 1rem;
    --small: 0.92rem;
    --micro: 0.78rem;

    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: all 0.45s var(--ease-out);
    --transition-fast: all 0.22s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Motion + subtle reveals (luxury = quiet) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}

.lp-reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 600ms var(--ease-out), transform 700ms var(--ease-out);
    will-change: opacity, transform;
}

.lp-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

.lp-hover-lift {
    transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.lp-hover-lift:hover {
    transform: translateY(-2px);
}

/* Containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

.section-title {
    font-size: var(--h2);
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Some pages use .nav-wrapper instead of .nav-container */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Header brand lockup (no boxed logo background) */
.nav-logo a,
a.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 2px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: var(--transition-fast);
}

.nav-logo a:hover,
a.logo:hover {
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 0.92;
}

.brand-lockup {
    gap: 12px;
    align-items: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    text-align: left;
}

.brand-name {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.8px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
}

.brand-tagline {
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: rgba(201, 165, 90, 0.95);
    margin-top: 4px;
}

.logo {
    height: 34px;
    width: auto;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
}

.nav-logo img,
a.logo img {
    height: 34px;
    width: auto;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

/* If the LP is embedded as an inline SVG in the future */
.nav-logo svg {
    height: 34px;
    width: auto;
    display: block;
    color: #C9A24D;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.90);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--gold);
}

/* Product page realism */
.product-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #0d0d0d;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.thumbnail-gallery .thumbnail {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.45);
    transition: var(--transition-fast);
}

.thumbnail-gallery .thumbnail button {
    width: 100%;
    display: block;
    padding: 0;
}

.thumbnail-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.thumbnail-gallery .thumbnail.is-active {
    border-color: rgba(201, 165, 90, 0.70);
    box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.18);
    transform: translateY(-1px);
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 18px 0 14px;
}

.product-highlight {
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.35;
}

.product-highlight strong {
    color: var(--gold);
    font-weight: 600;
}

.lp-size-guide {
    color: rgba(255, 255, 255, 0.92);
}

.lp-size-grid {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 10px 14px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.lp-size-grid__head {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.82rem;
}

@media (max-width: 900px) {
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    .product-highlights {
        grid-template-columns: 1fr;
    }
}

/* Global modal (Search / Account / Cart) */
.lp-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}

.lp-modal.is-open {
    display: block;
}

.lp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
}

.lp-modal__panel {
    position: relative;
    width: min(720px, calc(100% - 40px));
    margin: 110px auto 0;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.lp-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.lp-modal__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.95);
}

.lp-modal__close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.6rem;
    line-height: 1;
}

.lp-modal__close:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.lp-modal__body {
    padding: 18px 20px 22px;
    color: rgba(255, 255, 255, 0.86);
}

.lp-search {
    display: flex;
    gap: 12px;
    align-items: center;
}

.lp-search input {
    flex: 1;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.95);
    outline: none;
}

.lp-search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.lp-search button {
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0b0b0b;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.lp-panel-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.lp-secondary-btn {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lp-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 2rem;
}

.icon-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.90);
}

.icon-link:hover {
    color: var(--gold);
}

/* Icon links used on shop/about/contact pages */
.icon {
    font-size: 1rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.90);
    transition: var(--transition-fast);
}

.icon:hover {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}


.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 90px;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #0a0a0a;
    background: url('../images/real/hero_image_1920x1080_20260108174357_1.webp') center/cover no-repeat;
    background-image: image-set(
        url('../images/real/hero_image_1920x1080_20260108174357_1.webp') type('image/webp'),
        url('../images/real/Hero image.png') type('image/png')
    );
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.96) contrast(1.02);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero .hero-title {
    color: rgba(201, 165, 90, 0.98);
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.65);
}

.hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.60);
}

/* .hero-image is used on non-video heroes in some pages. */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    background: url('../images/real/hero_image_1920x1080_20260108174357_1.webp') center/cover no-repeat;
    background-image: image-set(
        url('../images/real/hero_image_1920x1080_20260108174357_1.webp') type('image/webp'),
        url('../images/real/Hero image.png') type('image/png')
    );
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-media .hero-overlay {
    background: radial-gradient(120% 120% at 30% 45%, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.80) 0%, rgba(10, 10, 10, 0.55) 50%, rgba(10, 10, 10, 0.78) 100%);
    pointer-events: none;
}

/* (rollback note) hero-media was removed; keep overlay simple */

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 46px;
    background: rgba(11, 11, 12, 0.92);
    color: var(--text-on-dark);
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-size: var(--micro);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    transition: transform 240ms var(--ease-out), border-color 240ms var(--ease-out), color 240ms var(--ease-out), background 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.btn-primary:hover {
    border-color: rgba(201, 165, 90, 0.85);
    color: rgba(201, 165, 90, 0.95);
    background: rgba(11, 11, 12, 0.98);
    transform: translateY(-1px);
}

/* Film section */
.lp-film {
    padding: var(--section-y-tight) 0;
    background: var(--white);
}

.lp-film__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
    margin-top: 2.5rem;
}

.lp-film__card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.10);
}

.lp-film__video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(1.03);
}

.lp-film__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.12) 50%, rgba(0,0,0,0.58) 100%);
    pointer-events: none;
}

.lp-film__caption {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--micro);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .lp-film__grid {
        grid-template-columns: 1fr;
    }
}

.btn-secondary {
    display: inline-block;
    padding: 16px 46px;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-size: var(--micro);
    border: 1px solid rgba(20, 20, 20, 0.22);
    border-radius: 999px;
    transition: transform 240ms var(--ease-out), border-color 240ms var(--ease-out), color 240ms var(--ease-out), background 240ms var(--ease-out);
}

.btn-secondary:hover {
    border-color: var(--gold-hairline);
    color: var(--gold-dark);
    transform: translateY(-1px);
}

/* Brand Statement */
.brand-statement {
    position: relative;
    padding: 88px 0;
    background: var(--off-white);
    text-align: center;
}

/* Option B: subtle transition into the next section */
.brand-statement::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    background: radial-gradient(120% 120% at 30% 45%, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.80) 0%, rgba(10, 10, 10, 0.55) 50%, rgba(10, 10, 10, 0.78) 100%);
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(248, 248, 248, 0) 0%,
        rgba(248, 248, 248, 1) 100%
    );
}

.brand-paragraph {
    font-size: 1.6rem;
    line-height: 1.85;
    color: var(--charcoal);
    font-weight: 300;
    margin-top: 1.6rem;
}

/* Featured Collection */
.featured-collection {
    padding: 120px 0;
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.link-arrow {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    padding-right: 30px;
}

.link-arrow::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: var(--transition-fast);
}

.link-arrow:hover::after {
    right: -5px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Shop uses `.products-grid` (plural). Without grid styling cards become full-width/tall. */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 2.4vw, 36px);
}

/* Wishlist: avoid a single saved item stretching full-width */
#wishlistGrid.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    justify-content: center;
}

#wishlistGrid .product-card {
    width: 100%;
    max-width: 320px;
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
    cursor: pointer;
    transition: transform 320ms var(--ease-out);
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--off-white);
    margin-bottom: 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(20, 20, 20, 0.08);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.luxury-tee {
    background: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)),
                url('../images/real/tshirt.png') center / cover no-repeat;
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), url('../images/real/tshirt.png');
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), -webkit-image-set(
        url('../images/real/tshirt.png') 1x
    );
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), image-set(
        url('../images/real/tshirt.png') 1x
    );
}

.luxury-sunglasses {
    background: url('../images/real/sunglasses.jpg') center/cover no-repeat;
    background-image: url('../images/real/sunglasses.jpg');
    background-image: -webkit-image-set(
        url('../images/real/luxury_lp_summer_sunglasses_1_20260108175554_1.webp') 1x,
        url('../images/real/sunglasses.jpg') 1x,
        url('../images/real/sunglases.png') 1x
    );
    background-image: image-set(
        url('../images/real/luxury_lp_summer_sunglasses_1_20260108175554_1.webp') 1x,
        url('../images/real/sunglasses.jpg') 1x,
        url('../images/real/sunglases.png') 1x
    );
}

.luxury-cap {
    background: url('../images/real/lp_branded_caps_white_black_20260108182008_1.webp') center/cover no-repeat;
    background-image: url('../images/real/lp_branded_caps_white_black_20260108182008_1.webp');
    background-image: -webkit-image-set(
        url('../images/real/lp_branded_caps_white_black_20260108182008_1.webp') 1x
    );
    background-image: image-set(
        url('../images/real/lp_branded_caps_white_black_20260108182008_1.webp') 1x
    );
}

.luxury-travel {
    background: url('../images/real/lp_traveling_suitcase_20260108181735_1.webp') center/cover no-repeat;
    background-image: url('../images/real/lp_traveling_suitcase_20260108181735_1.webp');
    background-image: -webkit-image-set(
        url('../images/real/lp_traveling_suitcase_20260108181735_1.webp') 1x,
        url('../images/real/brown_lp_suitcase_20260108181506_1.webp') 1x
    );
    background-image: image-set(
        url('../images/real/lp_traveling_suitcase_20260108181735_1.webp') 1x,
        url('../images/real/brown_lp_suitcase_20260108181506_1.webp') 1x
    );
}

.luxury-streetbag {
    background: url('../images/real/street-bag.png') center/cover no-repeat;
    background-image: url('../images/real/street-bag.png');
    background-image: -webkit-image-set(
        url('../images/real/street-bag.png') 1x,
        url('../images/real/handbag.jpg') 1x
    );
    background-image: image-set(
        url('../images/real/street-bag.png') 1x,
        url('../images/real/handbag.jpg') 1x
    );
}

.luxury-tee-white {
    background: url('../images/real/white_tee_branded_sunglasses_20260108174833_1.webp') center/cover no-repeat;
    background-image: url('../images/real/white_tee_branded_sunglasses_20260108174833_1.webp');
    background-image: -webkit-image-set(
        url('../images/real/white_tee_branded_sunglasses_20260108174833_1.webp') 1x
    );
    background-image: image-set(
        url('../images/real/white_tee_branded_sunglasses_20260108174833_1.webp') 1x
    );
}

.luxury-hoodie-white {
    background: url('../images/real/white_hoodie_branded_sunglasses_20260108174835_1.webp') center/cover no-repeat;
    background-image: url('../images/real/white_hoodie_branded_sunglasses_20260108174835_1.webp');
    background-image: -webkit-image-set(
        url('../images/real/white_hoodie_branded_sunglasses_20260108174835_1.webp') 1x
    );
    background-image: image-set(
        url('../images/real/white_hoodie_branded_sunglasses_20260108174835_1.webp') 1x
    );
}

.luxury-dress {
    background: url('../images/real/dress.png') center/cover no-repeat;
    background-image: url('../images/real/dress.png');
    background-image: -webkit-image-set(
        url('../images/real/white_lp_monogram_dress_proper_1_20260108175048_1.webp') 1x,
        url('../images/real/white_lp_monogram_dress_proper_2_20260108175047_1.webp') 1x,
        url('../images/real/dress.png') 1x
    );
    background-image: image-set(
        url('../images/real/white_lp_monogram_dress_proper_1_20260108175048_1.webp') 1x,
        url('../images/real/white_lp_monogram_dress_proper_2_20260108175047_1.webp') 1x,
        url('../images/real/dress.png') 1x
    );
}

.luxury-hoodie {
    background: linear-gradient(rgba(0,0,0,0.20), rgba(0,0,0,0.20)),
                url('../images/real/heritage_hoodie_1200x1200_20260108174358_1.webp') center / cover no-repeat;
    background-image: linear-gradient(rgba(0,0,0,0.20), rgba(0,0,0,0.20)), image-set(
        url('../images/real/heritage_hoodie_1200x1200_20260108174358_1.webp') type('image/webp'),
        url('../images/real/sweatshirt.png') type('image/png')
    );
}

.luxury-bag {
    background: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)),
                url('../images/real/monogram_bag_1200x1200_20260108174356_1.webp') center / cover no-repeat;
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), url('../images/real/monogram_bag_1200x1200_20260108174356_1.webp');
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), -webkit-image-set(
        url('../images/real/monogram_bag_1200x1200_20260108174356_1.webp') 1x,
        url('../images/real/handbag.jpg') 1x
    );
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), image-set(
        url('../images/real/monogram_bag_1200x1200_20260108174356_1.webp') 1x,
        url('../images/real/handbag.jpg') 1x
    );
}

/* Explicit tile image controls */
.luxury-bag-monogram {
    background: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)),
                url('../images/real/monogram_bag_1200x1200_20260108174356_1.webp') center / cover no-repeat;
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), url('../images/real/monogram_bag_1200x1200_20260108174356_1.webp');
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), -webkit-image-set(
        url('../images/real/monogram_bag_1200x1200_20260108174356_1.webp') 1x
    );
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), image-set(
        url('../images/real/monogram_bag_1200x1200_20260108174356_1.webp') 1x
    );
}

.luxury-bag-handbag {
    background: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)),
                url('../images/real/handbag.jpg') center / cover no-repeat;
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), url('../images/real/handbag.jpg');
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), -webkit-image-set(
        url('../images/real/handbag.jpg') 1x
    );
    background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), image-set(
        url('../images/real/handbag.jpg') 1x
    );
}

/* Homepage-specific tile that must show dress.png */
.luxury-dress-png {
    background: url('../images/real/dress.png') center/cover no-repeat;
    background-image: url('../images/real/dress.png');
    background-image: -webkit-image-set(
        url('../images/real/dress.png') 1x
    );
    background-image: image-set(
        url('../images/real/dress.png') 1x
    );
}

.luxury-set {
    background: linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.18)),
                url('../images/real/elite_loungewear_1200x1200_20260108174359_1.webp') center / cover no-repeat;
    background-image: linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.18)), image-set(
        url('../images/real/elite_loungewear_1200x1200_20260108174359_1.webp') type('image/webp'),
        url('../images/real/sweater.png') type('image/png')
    );
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(7, 7, 7, 0.10) 0%,
        rgba(7, 7, 7, 0.55) 65%,
        rgba(7, 7, 7, 0.70) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-placeholder {
    transform: scale(1.03);
}

.quick-view {
    padding: 14px 32px;
    background: rgba(248, 248, 248, 0.96);
    color: rgba(7, 7, 7, 0.92);
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    font-size: var(--micro);
    border-radius: 999px;
    border: 1px solid rgba(201, 165, 90, 0.28);
    backdrop-filter: blur(10px);
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

/* Lifestyle Split */
.lifestyle-split {
    padding: 0 0 28px;
    background: var(--off-white);
}

.split-content {
    display: grid;
    /* Add a subtle left gutter so the image doesn't sit flush to the viewport edge */
    grid-template-columns: clamp(16px, 4vw, 48px) 1fr 1fr;
    min-height: 70vh;
}

.split-image {
    grid-column: 2;
    background-size: cover;
    background-position: center;
}

.lifestyle-1 {
    background-color: #0a0a0a;
    background: linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.28)),
                url('../images/real/lifestyle_split_1400x1000_20260108174357_1.webp') center / cover no-repeat;
    background-image: linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.28)), image-set(
        url('../images/real/lifestyle_split_1400x1000_20260108174357_1.webp') type('image/webp'),
        url('../images/real/Lifestyle image.png') type('image/png')
    );
}

.split-text {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--off-white);
}

.split-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.split-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.link-underline {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

/* Social Proof */
.social-proof {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.social-proof .section-title {
    color: var(--white);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 4rem;
}

.proof-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: 1.1rem;
    color: var(--gray-light);
    letter-spacing: 1px;
}

/* Newsletter */
.newsletter {
    padding: 120px 0;
    background: var(--off-white);
    text-align: center;
}

.newsletter-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-text {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid var(--charcoal);
    font-size: 1rem;
    font-family: inherit;
    border-radius: 999px;
    background: var(--white);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 18px 40px;
}

/* Newsletter button needs contrast on light background */
.newsletter .btn-primary {
    background: transparent;
    color: var(--charcoal);
    border-color: rgba(20, 20, 20, 0.28);
}

.newsletter .btn-primary:hover {
    border-color: rgba(201, 165, 90, 0.85);
    color: rgba(201, 165, 90, 0.95);
    background: rgba(201, 165, 90, 0.08);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
    image-rendering: -webkit-optimize-contrast;
}

.footer-col img.footer-logo {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--gray-light);
    font-style: italic;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.social-link:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Shop Page Styles */
.shop-header {
    padding: 120px 0 60px;
    text-align: center;
    background: var(--charcoal);
}

.shop-header h1,
.shop-header .section-title {
    color: rgba(255, 255, 255, 0.95);
}

.shop-subtitle {
    font-size: 1.125rem;
    color: var(--gold);
    margin-top: 1rem;
    font-weight: 300;
}

.filter-bar {
    padding: 2rem 0;
    background: var(--black);
    border-bottom: 1px solid rgba(201, 165, 90, 0.2);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filter-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
}

.sort-dropdown {
    text-align: center;
    margin-top: 1rem;
}

.sort-dropdown select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    background: var(--charcoal);
    border: 1px solid var(--gold);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: 0;
}

.products-section {
    padding: 80px 0;
}

.shop-search-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 18px;
}

/* Respect the HTML `hidden` attribute (author styles override UA defaults) */
.shop-search-state[hidden] {
    display: none !important;
}

.shop-search-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(201, 165, 90, 0.24);
    background: rgba(10, 10, 10, 0.04);
    color: rgba(0, 0, 0, 0.76);
}

.shop-search-pill strong {
    color: rgba(0, 0, 0, 0.92);
}

.shop-search-clear {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(10, 10, 10, 0.03);
    color: rgba(0, 0, 0, 0.80);
    font-weight: 600;
}

.shop-search-clear:hover {
    background: rgba(201, 165, 90, 0.12);
    border-color: rgba(201, 165, 90, 0.40);
}

/* Shop discovery tools */
.shop-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.price-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.price-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.80);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-input {
    width: 110px;
    padding: 10px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.92);
    outline: none;
}

.price-input:focus {
    border-color: rgba(201, 165, 90, 0.55);
    box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.14);
}

.price-apply,
.price-clear {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(201, 165, 90, 0.35);
    color: rgba(255, 255, 255, 0.92);
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.02);
}

.price-apply:hover,
.price-clear:hover {
    background: rgba(201, 165, 90, 0.18);
    border-color: rgba(201, 165, 90, 0.55);
}

.shop-results {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 10px 0 14px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.92);
}

.shop-results__count {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.shop-results__hint {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.shop-empty {
    text-align: center;
    padding: 26px 18px;
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin: 14px 0 18px;
    color: rgba(255, 255, 255, 0.92);
}

.shop-empty h3 {
    color: var(--white);
    margin-bottom: 6px;
}

.shop-empty p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
}

@media (max-width: 900px) {
    .shop-tools {
        justify-content: flex-start;
    }
    .price-input {
        width: 92px;
    }
}

/* If the shop page is on a dark section, ensure product text stays readable */
body .products-section {
    color: var(--charcoal);
}

.products-section .product-card h3,
.products-section .product-card h4,
.products-section .product-card .product-name {
    color: var(--black);
}

.products-section .product-card p {
    color: rgba(0, 0, 0, 0.72);
}

.products-section .product-card .product-price {
    color: var(--gold);
}

/* Product Detail Page */
.product-detail {
    padding: 120px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    margin-bottom: 1rem;
}

.product-main-image {
    width: 100%;
    height: auto;
}

.product-hero-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(201, 165, 90, 0.16);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--gold);
}

.thumbnail svg {
    width: 100%;
    height: auto;
}

.product-info-detail {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.breadcrumb {
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.product-price-large {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 500;
}

.product-description {
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.product-description p {
    margin-bottom: 1rem;
}

.size-selection,
.color-selection,
.quantity-selection {
    margin-bottom: 2rem;
}

.size-label,
.color-label,
.quantity-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--gold);
}

.color-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.color-option {
    min-width: 90px;
    height: 50px;
    padding: 0 14px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    letter-spacing: 0.3px;
}

.color-option:hover,
.color-option.active {
    background: var(--gold);
    color: var(--black);
}

.size-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.size-option {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.size-option:hover,
.size-option.active {
    background: var(--gold);
    color: var(--black);
}

.size-guide-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gold);
    text-decoration: underline;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--black);
}

#qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--gold);
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-sans);
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-large {
    flex: 1;
    padding: 16px 46px;
}

.btn-wishlist {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-wishlist.is-active {
    background: var(--gold);
    color: var(--black);
}

.product-accordion {
    border-top: 1px solid rgba(201, 165, 90, 0.2);
}

.accordion-item {
    border-bottom: 1px solid rgba(201, 165, 90, 0.2);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
}

.accordion-content li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.accordion-content li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

.related-products {
    padding: 80px 0;
    background: var(--charcoal);
}

.related-products .section-title {
    color: rgba(255, 255, 255, 0.95);
}

.related-products .product-name {
    color: rgba(255, 255, 255, 0.92);
}

.related-products .product-price {
    color: var(--gold);
}

/* About Page Styles */
.about-hero {
    padding: 160px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
}

.about-hero .hero-title,
.about-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.brand-story {
    padding: 100px 0;
}

.brand-story .section-title,
.brand-story p {
    color: var(--charcoal);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image svg,
.craft-image svg {
    width: 100%;
    height: auto;
}

.about-image {
    width: 100%;
    aspect-ratio: 6 / 7;
    border-radius: 18px;
    overflow: hidden;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(201, 165, 90, 0.16);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.about-excellence {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.65)),
        image-set(
            url('../images/real/lifestyle_split_1400x1000_20260108174357_1.webp') type('image/webp'),
            url('../images/real/Lifestyle image.png') type('image/png')
        );
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-crafted {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
        url('../images/newlogo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.values-section {
    padding: 100px 0;
    background: var(--charcoal);
}

.values-section .section-title {
    color: rgba(255, 255, 255, 0.95);
}

.section-title.center {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    padding: 40px;
    background: var(--black);
    border: 1px solid rgba(201, 165, 90, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card[data-href] {
    cursor: pointer;
}

/* Ensure collection CTAs are obvious on dark cards */
.value-card .btn-secondary {
    border-color: rgba(201, 165, 90, 0.55);
    color: rgba(255, 255, 255, 0.92);
    background: rgba(201, 165, 90, 0.14);
}

.value-card .btn-secondary:hover {
    border-color: var(--gold);
    color: rgba(255, 255, 255, 0.96);
    background: rgba(201, 165, 90, 0.22);
}

.value-card .btn-secondary:focus-visible {
    outline: 2px solid rgba(201, 165, 90, 0.9);
    outline-offset: 3px;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.vision-section {
    padding: 100px 0;
    text-align: center;
}

.vision-section .section-title,
.vision-section .vision-text {
    color: var(--charcoal);
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.craftsmanship-section {
    padding: 100px 0;
    background: var(--charcoal);
}

.craftsmanship-section .section-title,
.craftsmanship-section .craft-list {
    color: rgba(255, 255, 255, 0.92);
}

.craftsmanship-section .craft-list strong {
    color: rgba(255, 255, 255, 0.95);
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.craft-list {
    list-style: none;
    padding: 0;
}

.craft-list li {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.craft-list li::before {
    content: "◆";
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Contact Page Styles */
.contact-hero {
    padding: 160px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}

/* Cart Page Styles */
.cart-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}

.cart-hero .section-title,
.cart-hero .cart-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.cart-subtitle {
    font-size: 1.125rem;
    color: rgba(201, 165, 90, 0.95);
    margin-top: 1rem;
    font-weight: 300;
}

.cart-section {
    padding: 80px 0 110px;
    background: var(--off-white);
}

.cart-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
}

.cart-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.cart-panel-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.cart-empty {
    padding: 18px;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.8);
}

.cart-item-media {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-title {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.86);
}

.cart-item-meta {
    color: rgba(0, 0, 0, 0.62);
    font-size: 0.95rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    min-width: 86px;
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.76);
    border-color: rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.9);
}

.cart-remove-btn:hover {
    border-color: rgba(201, 165, 90, 0.55);
    background: rgba(201, 165, 90, 0.12);
}

.cart-remove-btn:active {
    transform: translateY(1px);
}

.cart-qty {
    width: 60px;
    padding: 10px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.cart-note {
    margin-top: 14px;
    color: rgba(0, 0, 0, 0.62);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Checkout handoff */
.checkout-handoff {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-handoff__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--black);
    margin-bottom: 6px;
}

.checkout-handoff__subtitle {
    color: rgba(0, 0, 0, 0.62);
    margin-bottom: 12px;
}

.checkout-handoff__message {
    width: 100%;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: rgba(0, 0, 0, 0.80);
    resize: vertical;
    outline: none;
}

.checkout-handoff__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }
}

.contact-hero h1,
.contact-hero .hero-title,
.contact-hero p {
    color: rgba(255, 255, 255, 0.95);
}

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: var(--charcoal);
    border: 1px solid rgba(201, 165, 90, 0.3);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

/* Contact page form fields sit on a light section; soften the dark blocks */
.contact-section .form-group input,
.contact-section .form-group select,
.contact-section .form-group textarea {
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.045);
    border-color: rgba(201, 165, 90, 0.28);
    color: rgba(10, 10, 10, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 45px rgba(0, 0, 0, 0.06);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-section .form-group input:hover,
.contact-section .form-group select:hover,
.contact-section .form-group textarea:hover {
    background: rgba(10, 10, 10, 0.06);
    border-color: rgba(201, 165, 90, 0.40);
}

.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
    color: rgba(10, 10, 10, 0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-section .form-group input:focus,
.contact-section .form-group select:focus,
.contact-section .form-group textarea:focus {
    background: rgba(10, 10, 10, 0.06);
    border-color: rgba(201, 165, 90, 0.65);
    box-shadow: 0 0 0 4px rgba(201, 165, 90, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

/* Nicer select dropdown on Contact (custom arrow + spacing) */
.contact-section .form-group select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 3rem;
    background-image:
        linear-gradient(transparent, transparent),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'%3E%3Cpath fill='%23C9A55A' d='M7 10l5 5l5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px 18px;
}

.contact-section .form-group select:focus-visible,
.contact-section .form-group input:focus-visible,
.contact-section .form-group textarea:focus-visible {
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info-block p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Contact sidebar/body readability on darker layouts */
.contact-section {
    color: var(--charcoal);
}

.contact-info-block a {
    color: var(--gold);
    text-decoration: none;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.contact-hours {
    font-size: 0.875rem;
    color: var(--grey);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links-large a:hover {
    color: var(--gold);
}

.social-icon {
    font-size: 1.5rem;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 0.5rem;
}

.quick-links a {
    color: var(--gold);
    text-decoration: none;
}

.quick-links a:hover {
    text-decoration: underline;
}

.faq-preview {
    padding: 100px 0;
    background: var(--charcoal);
}

.faq-preview .section-title,
.faq-preview .section-title.center {
    color: rgba(255, 255, 255, 0.95);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item {
    padding: 30px;
    background: var(--black);
    border-left: 3px solid var(--gold);
}

.faq-item h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.faq-item p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

.faq-item a {
    color: var(--gold);
    text-decoration: underline;
}

/* Legal Pages Styles */
.legal-section {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.legal-date {
    color: var(--gold);
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--gold);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--gold);
    text-decoration: underline;
}

.legal-content a:hover {
    text-decoration: none;
}

.legal-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--charcoal);
    border-left: 3px solid var(--gold);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .split-content {
        grid-template-columns: 1fr;
    }

    .split-image,
    .split-text {
        grid-column: auto;
    }
    
    .split-text {
        padding: 60px 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container,
    .container-narrow {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }

    .logo,
    .nav-logo img,
    a.logo img {
        height: 46px;
    }

    .brand-text {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
