@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* Brand Design Tokens */
:root {
    --bg-alabaster: #FAF9F6;
    --bg-linen: #F5F2EB;
    --bg-white: #FFFFFF;
    --text-obsidian: #1E1E1E;
    --text-muted: #6E6A64;
    --accent-gold: #C5A880;
    --accent-gold-dark: #A88F67;
    --accent-sage: #8F9E8B;
    --accent-terracotta: #C97A63;
    --border-light: rgba(110, 106, 100, 0.12);
    --border-focus: rgba(197, 168, 128, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --shadow-subtle: 0 4px 20px rgba(30, 30, 30, 0.03);
    --shadow-hover: 0 12px 30px rgba(30, 30, 30, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-alabaster);
    color: var(--text-obsidian);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: var(--font-sans);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

input, select, textarea {
    font-family: var(--font-sans);
    outline: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2.2rem;
    color: var(--text-obsidian);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
}

/* Micro-interaction & Helper Classes */
.btn-primary {
    background-color: var(--text-obsidian);
    color: var(--bg-alabaster);
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--text-obsidian);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--accent-gold);
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    color: var(--text-obsidian);
    border-color: var(--accent-gold);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-outline {
    border: 1px solid var(--text-obsidian);
    color: var(--text-obsidian);
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.btn-outline:hover {
    background-color: var(--text-obsidian);
    color: var(--bg-alabaster);
}

/* Glassmorphism Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: rgba(250, 249, 246, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.header-top {
    background-color: var(--text-obsidian);
    color: var(--bg-alabaster);
    font-size: 0.75rem;
    text-align: center;
    padding: 0.5rem 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    transition: var(--transition-smooth);
}

header.scrolled .header-main {
    height: 70px;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 0.3rem 0;
}

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

.nav-links a:hover {
    color: var(--accent-gold);
}

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

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    height: 42px;
    width: auto;
    transition: var(--transition-smooth);
}

header.scrolled .logo-container img {
    height: 36px;
}

.header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.8rem;
}

.icon-btn {
    color: var(--text-obsidian);
    position: relative;
}

.icon-btn:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--accent-gold);
    color: var(--text-obsidian);
    font-size: 0.65rem;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 25px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-obsidian);
    transition: var(--transition-smooth);
}

/* Mobile Toggle Active Spans Animation to X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 110px; /* Accounts for header height */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 25, 23, 0.45) 20%, rgba(26, 25, 23, 0.1) 60%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--bg-alabaster);
    max-width: 600px;
    padding: 0 4rem;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stories / Category Circle Scroll */
.categories-circles-sec {
    padding: 4rem 0 3rem;
    background-color: var(--bg-alabaster);
    border-bottom: 1px solid var(--border-light);
}

.category-circles-wrapper {
    display: flex;
    gap: 2.2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
}

@media (min-width: 992px) {
    .category-circles-wrapper {
        justify-content: center;
    }
}

.category-circles-wrapper::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 90px;
    scroll-snap-align: start;
}

.circle-img-container {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    padding: 4px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    background-color: var(--bg-white);
}

.circle-img-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-position: center top;
    transition: var(--transition-smooth);
}

.category-circle-item:hover .circle-img-container {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.category-circle-item:hover .circle-img-container img {
    transform: scale(1.05);
}

.category-circle-title {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-obsidian);
    text-align: center;
}

.circle-badge {
    position: absolute;
    bottom: -2px;
    background-color: var(--accent-terracotta);
    color: var(--bg-alabaster);
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Product Section Grids */
.product-sec {
    padding: 6rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 1.8rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.product-image-container {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-image-container img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--text-obsidian);
    color: var(--bg-alabaster);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.9rem;
    z-index: 5;
}

.product-badge.sale {
    background-color: var(--accent-terracotta);
}

.product-action-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(30,30,30,0.4), rgba(30,30,30,0));
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    z-index: 5;
}

.product-card:hover .product-action-overlay {
    opacity: 1;
    transform: translateY(0);
}

.quick-view-btn {
    background-color: var(--bg-white);
    color: var(--text-obsidian);
    width: 100%;
    padding: 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.quick-view-btn:hover {
    background-color: var(--accent-gold);
    color: var(--text-obsidian);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-swatches {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.swatch.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
}

.swatch:hover {
    transform: scale(1.2);
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-obsidian);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.review-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
}

.price {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-obsidian);
}

.old-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* CSS Classes for Variant Color Filtering */
.filter-sage {
    filter: hue-rotate(0deg);
}
.filter-rose {
    filter: hue-rotate(320deg) saturate(0.9);
}
.filter-grey {
    filter: grayscale(1) brightness(1.1);
}
.filter-cream {
    filter: sepia(0.2) brightness(1.05);
}
.filter-terracotta {
    filter: hue-rotate(345deg) saturate(1.2) brightness(0.85);
}

/* Social Proof Video Review Section */
.social-proof-sec {
    padding: 6rem 0;
    background-color: var(--bg-linen);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.video-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
}

.video-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.video-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 30, 30, 0.7) 10%, rgba(30, 30, 30, 0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    z-index: 2;
}

.video-play-btn {
    width: 46px;
    height: 46px;
    background-color: rgba(250, 249, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-obsidian);
    align-self: center;
    margin-top: auto;
    margin-bottom: auto;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.video-card:hover .video-play-btn {
    transform: scale(1.1);
    background-color: var(--accent-gold);
}

.video-card-info {
    color: var(--bg-alabaster);
}

.video-card-name {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.video-card-desc {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Shop the Look Section */
.shop-the-look-sec {
    padding: 6rem 0;
    background-color: var(--bg-alabaster);
}

.shop-look-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.look-showcase-panel {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.look-showcase-panel img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-position: center 30%;
}

.pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--bg-white);
    border: 2px solid var(--text-obsidian);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 5;
    transition: var(--transition-smooth);
}

.pin::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

.pin:hover {
    transform: scale(1.2);
    background-color: var(--accent-gold);
    border-color: var(--bg-white);
}

.pin-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--text-obsidian);
    color: var(--bg-alabaster);
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--text-obsidian) transparent transparent transparent;
}

.pin:hover .pin-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.look-product-panel {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-subtle);
}

.look-product-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.look-product-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.look-product-image {
    aspect-ratio: 1/1;
    width: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 4px solid var(--bg-linen);
}

.look-product-info {
    text-align: center;
    width: 100%;
}

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

.look-product-price {
    font-size: 1.2rem;
    color: var(--accent-gold-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Editorial Cafe Split Grid */
.editorial-sec {
    padding: 6rem 0;
    background-color: var(--bg-alabaster);
    border-top: 1px solid var(--border-light);
}

.editorial-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: stretch;
}

.editorial-left {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

.editorial-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.editorial-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.editorial-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.editorial-small-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: var(--transition-smooth);
}

.editorial-small-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle);
}

.editorial-small-thumb {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
}

.editorial-small-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.editorial-small-name {
    font-size: 0.85rem;
    font-weight: 500;
}

.editorial-small-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Brand Philosophy / Studio Section */
.philosophy-sec {
    padding: 7rem 0;
    background-color: var(--bg-linen);
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy-text {
    padding-right: 2rem;
}

.philosophy-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold-dark);
    margin-bottom: 1rem;
    display: block;
}

.philosophy-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 400;
}

.philosophy-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.philosophy-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    aspect-ratio: 4/3;
    background-color: var(--bg-alabaster);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.philosophy-img img {
    width: 100%;
    height: 100%;
    object-position: center;
}

/* Styled Gold Frame Logo for Philosophy fallback */
.gold-frame-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-gold);
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 2rem;
    background-color: rgba(255,255,255,0.9);
}

.gold-frame-logo h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.gold-frame-logo p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* My Story Full Width Parallax Section */
.story-banner-sec {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.story-banner-bg img {
    width: 100%;
    height: 100%;
    object-position: center 25%;
}

.story-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.45);
    z-index: 2;
}

.story-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--bg-alabaster);
    max-width: 700px;
    padding: 0 2rem;
}

.story-banner-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.story-play-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(250, 249, 246, 0.95);
    color: var(--text-obsidian);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: var(--transition-smooth);
}

.story-play-icon svg {
    margin-left: 5px;
    transition: var(--transition-smooth);
}

.story-play-icon:hover {
    transform: scale(1.1);
    background-color: var(--accent-gold);
    color: var(--text-obsidian);
}

/* Trust Badges / USP Section */
.usp-sec {
    padding: 5rem 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

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

.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    transition: var(--transition-smooth);
}

.usp-item:hover {
    transform: translateY(-5px);
}

.usp-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-linen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-obsidian);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.usp-item:hover .usp-icon {
    background-color: var(--accent-gold);
    color: var(--text-obsidian);
}

.usp-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.usp-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Newsletter Section */
.newsletter-sec {
    padding: 6rem 0;
    background-color: var(--bg-linen);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.newsletter-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.newsletter-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    border-bottom: 1.5px solid var(--text-obsidian);
    padding-bottom: 0.3rem;
}

.newsletter-input {
    flex-grow: 1;
    border: none;
    background: none;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    color: var(--text-obsidian);
}

.newsletter-input::placeholder {
    color: #9A958F;
}

.newsletter-submit {
    background: none;
    border: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-obsidian);
    padding: 0 1rem;
}

.newsletter-submit:hover {
    color: var(--accent-gold-dark);
}

.newsletter-toast {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--accent-sage);
    font-weight: 500;
    display: none;
}

/* Footer Section */
footer {
    background-color: var(--text-obsidian);
    color: var(--bg-alabaster);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 0.9fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 38px;
    width: auto;
    align-self: flex-start;
}

.footer-brand-desc {
    font-size: 0.88rem;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(250, 249, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-alabaster);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-obsidian);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-weight: 500;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 249, 246, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 0.78rem;
    opacity: 0.5;
}

.footer-payment-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.75;
}

/* Modals & Slide Panels (Pure CSS/JS) */
.search-modal {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 249, 246, 0.98);
    z-index: 150;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.search-modal.active {
    top: 0;
    opacity: 1;
}

.search-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2rem;
    color: var(--text-obsidian);
}

.search-modal-content {
    width: 100%;
    max-width: 600px;
    padding: 0 2rem;
    text-align: center;
}

.search-box {
    display: flex;
    border-bottom: 2px solid var(--text-obsidian);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-box input {
    flex-grow: 1;
    border: none;
    background: none;
    font-size: 1.5rem;
    font-family: var(--font-serif);
}

/* Cart Slide Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background-color: var(--bg-alabaster);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 200;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

.cart-close-btn {
    font-size: 1.5rem;
    color: var(--text-obsidian);
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin: auto 0;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.cart-item-thumb {
    width: 70px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.cart-item-qty {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cart-item-remove {
    font-size: 0.75rem;
    text-decoration: underline;
    color: var(--text-muted);
    align-self: flex-start;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-light);
    background-color: var(--bg-white);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.4);
    z-index: 190;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Quick View / Video Play Modal */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(5px);
    z-index: 250;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.custom-modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-alabaster);
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-obsidian);
    z-index: 10;
    background-color: var(--bg-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-body {
    padding: 3rem;
}

/* Quickview Split Layout */
.quickview-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
}

.quickview-img {
    aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
}

.quickview-img img {
    width: 100%;
    height: 100%;
}

.quickview-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quickview-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.quickview-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold-dark);
    margin-bottom: 1.5rem;
}

.quickview-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Video simulated playback modal layout */
.modal-video-container {
    aspect-ratio: 9/16;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: var(--text-obsidian);
}

.modal-video-container video, 
.modal-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background-color: var(--accent-gold);
    animation: progressBar 6s linear infinite;
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Notification toast */
.toast-msg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--text-obsidian);
    color: var(--bg-alabaster);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    z-index: 300;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.toast-msg.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-success-icon {
    color: var(--accent-gold);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .nav-links-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-alabaster);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.08);
        z-index: 180;
        padding: 7rem 2rem 2rem;
        transition: var(--transition-smooth);
    }
    .nav-links-container.active {
        left: 0;
    }
    .nav-links {
        display: flex !important;
        flex-direction: column;
        gap: 2rem;
    }
    .mobile-menu-toggle {
        display: flex;
        z-index: 190;
    }
    .hero-title {
        font-size: 3rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-look-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .editorial-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .editorial-left {
        min-height: 350px;
    }
    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .philosophy-text {
        padding-right: 0;
    }
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .header-main {
        padding: 0 1.5rem;
    }
    .hero-content {
        padding: 0 1.5rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .editorial-product-grid {
        grid-template-columns: 1fr;
    }
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .cart-panel {
        width: 100%;
    }
    .modal-body {
        padding: 1.5rem;
    }
    .quickview-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
