/* =========================================
   EverMart - Seasonal Home & Lifestyle
   Global Stylesheet
   ========================================= */

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

:root {
    --navy: #0B3158;
    --navy-dark: #06284B;
    --navy-light: #1a4a73;
    --cream: #FAF7F0;
    --cream-dark: #F5F0E6;
    --gold: #C99A38;
    --gold-dark: #B88A2F;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --text-light: #888;
    --white: #ffffff;
    --border: #e5e0d5;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
}

.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.announcement-bar span {
    margin: 0 8px;
}

/* Header */
.header {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--navy);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    position: relative;
}

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

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(250,247,240,0.95) 0%, rgba(250,247,240,0.7) 40%, rgba(250,247,240,0.3) 60%, transparent 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-width: 600px;
    padding: 0 60px;
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}

.hero-text {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-dark);
}

/* Section Styles */
.section {
    padding: 60px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

.section-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.view-all {
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Collection Cards */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.collection-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: var(--white);
}

.collection-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
}

.collection-desc {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 280px;
}

.collection-btn {
    display: inline-flex;
    align-self: flex-start;
    padding: 12px 24px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
}

.collection-btn:hover {
    background: var(--white);
    color: var(--navy);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cream-dark);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.wishlist-btn:hover, .wishlist-btn.active {
    color: #e74c3c;
}

.product-info {
    padding: 16px;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.category-image {
    aspect-ratio: 1.2;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.category-name {
    padding: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

/* Editorial Banners */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.editorial-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: var(--white);
}

.editorial-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.editorial-text {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 320px;
}

/* Trust Strip */
.trust-strip {
    background: var(--cream-dark);
    padding: 40px 24px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.trust-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Newsletter */
.newsletter {
    background: var(--navy);
    padding: 60px 24px;
}

.newsletter-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
}

.newsletter-text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 15px;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-note {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 60px 24px 24px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    background: #fff;
    border-radius: 8px;
    padding: 4px 10px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.2s;
}

.footer-social a:hover {
    background: var(--gold);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Shop Page */
.shop-page {
    padding: 40px 24px;
}

.shop-header {
    max-width: 1400px;
    margin: 0 auto 32px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

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

.breadcrumb a:hover {
    color: var(--navy);
}

.shop-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--navy);
}

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.filters {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-section {
    margin-bottom: 28px;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.filter-options {
    list-style: none;
}

.filter-options li {
    margin-bottom: 8px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
}

.filter-options label:hover {
    color: var(--navy);
}

.filter-options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--navy);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.results-count {
    font-size: 14px;
    color: var(--text-muted);
}

.sort-select {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 14px;
    cursor: pointer;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Product Detail */
.product-detail {
    padding: 40px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    aspect-ratio: 1;
    background: var(--cream-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbs {
    display: flex;
    gap: 12px;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-thumb.active {
    border-color: var(--navy);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding-top: 20px;
}

.product-category {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.product-title-detail {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-price-detail {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.product-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.product-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.quantity-btn {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--navy);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 500;
}

.add-to-cart-btn {
    flex: 1;
}

.product-meta {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.meta-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.meta-label {
    color: var(--text-muted);
}

.meta-value {
    color: var(--navy);
    font-weight: 500;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

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

.cart-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--navy);
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 8px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream-dark);
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--text-muted);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.cart-item-qty span {
    width: 32px;
    text-align: center;
    font-size: 13px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--cream);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}

.cart-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.cart-checkout-btn {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 150;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250,247,240,0.98);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
}

.search-input-wrap {
    width: 100%;
    max-width: 600px;
    padding: 0 24px;
}

.search-input {
    width: 100%;
    padding: 20px 0;
    font-size: 24px;
    border: none;
    border-bottom: 2px solid var(--navy);
    background: none;
    outline: none;
    font-family: 'Playfair Display', serif;
}

.search-input::placeholder {
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .collection-title {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        grid-column: span 3;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .filters {
        display: none;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        height: auto;
        min-height: 500px;
    }
    
    .hero-content {
        position: relative;
        transform: none;
        padding: 40px 24px;
        max-width: 100%;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(250,247,240,0.95) 0%, rgba(250,247,240,0.8) 100%);
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .collection-grid,
    .editorial-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 12px 16px;
    }
    
    .logo img {
        height: 44px;
    }
    
    .section {
        padding: 40px 16px;
    }
    
    .collection-card {
        height: 260px;
    }
    
    .collection-overlay {
        padding: 24px;
    }
    
    .product-grid {
        gap: 12px;
    }
    
    .cart-drawer {
        width: 100%;
    }
}

/* Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Page Content Styles */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 32px;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--navy);
    margin: 32px 0 16px;
}

.page-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.page-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
    color: var(--text-muted);
}

.page-content li {
    margin-bottom: 8px;
}

/* About Page */
.about-hero {
    background: var(--navy);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 16px;
}

.about-hero-text {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    font-size: 18px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 280px;
}

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

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: border-color 0.2s;
}

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

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.5;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 300;
    transform: translateY(-80px);
    opacity: 0;
    transition: all 0.3s;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* =========================================
   COLLECTION PAGE
   ========================================= */

.collection-hero {
    background: var(--navy-dark);
    overflow: hidden;
}

.collection-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 320px;
}

.collection-hero-content {
    flex: 1;
    padding: 48px 60px;
    color: var(--white);
}

.collection-hero-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.collection-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.collection-hero-text {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 520px;
}

.collection-hero-image {
    width: 45%;
    height: 320px;
    flex-shrink: 0;
}

.collection-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-hero .breadcrumb {
    margin-bottom: 16px;
}

.collection-hero .breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.collection-hero .breadcrumb a:hover {
    color: var(--white);
}

.collection-hero .breadcrumb span {
    color: rgba(255,255,255,0.8);
}

/* Collection Toolbar */
.collection-toolbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.collection-toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.collection-toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.sort-select {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 14px;
    cursor: pointer;
    color: var(--text-dark);
}

.filter-mobile-toggle {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: var(--navy);
}

/* Collection Layout */
.collection-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px 60px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
}

.collection-content {
    min-width: 0;
}

.collection-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.collection-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.collection-empty p {
    margin-bottom: 16px;
    font-size: 16px;
}

/* Filters Desktop */
.filters-desktop {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filters-inner {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.filters-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}

.filters-clear {
    font-size: 13px;
    color: var(--gold);
    background: none;
    border: 1px solid var(--gold);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.filters-clear:hover {
    background: var(--gold);
    color: var(--white);
}

.filter-section {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 14px;
}

.filter-section-header span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.2s;
}

.filter-option:hover {
    color: var(--navy);
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--navy);
}

/* Filter Drawer (Mobile) */
.filter-drawer-overlay {
    display: none;
}

.filter-drawer {
    display: none;
}

/* Product Card - Enhanced */
.product-category-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card-cta {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px 16px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.product-card-cta:hover {
    background: var(--gold);
}

/* =========================================
   PRODUCT DETAIL PAGE
   ========================================= */

.product-detail-page {
    background: var(--white);
}

.product-detail-page .product-detail {
    padding-top: 32px;
}

.product-detail-page .breadcrumb {
    margin-bottom: 24px;
}

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

.product-detail-page .product-gallery {
    position: sticky;
    top: 100px;
}

.product-detail-page .product-main-image {
    aspect-ratio: 4/5;
    background: var(--cream-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
}

.product-detail-page .product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-page .product-thumbs {
    display: flex;
    gap: 10px;
}

.product-detail-page .product-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s;
}

.product-detail-page .product-thumb:hover,
.product-detail-page .product-thumb.active {
    border-color: var(--navy);
    opacity: 1;
}

.product-detail-page .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info Detail */
.product-info-detail {
    padding-top: 8px;
}

.product-category-badge {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title-detail {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-price-detail {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.product-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27ae60;
}

.product-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Quantity Section */
.product-quantity-section {
    margin-bottom: 20px;
}

.quantity-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    width: fit-content;
}

.quantity-btn {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.quantity-btn:hover {
    background: var(--cream-dark);
}

.quantity-display {
    width: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
}

/* Product Actions */
.product-actions-detail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.btn-full {
    width: 100%;
}

.btn.saved {
    background: var(--cream-dark);
    color: var(--navy);
    border-color: var(--navy);
}

/* Trust Strip - Product Page */
.product-trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Product Detail Bottom */
.product-detail-bottom {
    background: var(--cream);
    padding: 48px 24px;
}

.product-detail-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.detail-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 16px;
}

.detail-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Accordion */
.product-accordion {
    border-top: 1px solid var(--border);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
}

.accordion-body {
    padding: 0 0 20px;
    display: none;
}

.accordion-item.open .accordion-body {
    display: block;
}

.detail-row {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.detail-label {
    font-weight: 500;
    color: var(--navy);
    min-width: 100px;
}

.accordion-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Related Products */
.related-products-section {
    padding-top: 40px;
    background: var(--white);
}

/* =========================================
   REQUIREMENT MODAL
   ========================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 8px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.required {
    color: #e74c3c;
}

.form-product-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
}

.form-product-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.form-radio-group {
    display: flex;
    gap: 20px;
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
}

.form-radio input[type="radio"] {
    accent-color: var(--navy);
}

/* Requirement Success */
.requirement-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #27ae60;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.requirement-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 12px;
}

.requirement-success p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 24px;
}

/* =========================================
   SEARCH RESULTS
   ========================================= */

.search-results {
    margin-top: 24px;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.search-result-item:hover {
    background: var(--cream-dark);
}

.search-result-img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.search-result-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 2px;
}

.search-result-meta {
    font-size: 13px;
    color: var(--text-muted);
}

.search-no-results {
    text-align: center;
    padding: 32px;
    color: var(--text-muted);
    font-size: 15px;
}

/* =========================================
   COLLECTION PAGE RESPONSIVE
   ========================================= */

@media (max-width: 1200px) {
    .collection-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .collection-hero-inner {
        flex-direction: column;
        min-height: auto;
    }

    .collection-hero-content {
        padding: 40px 32px 32px;
    }

    .collection-hero-title {
        font-size: 36px;
    }

    .collection-hero-image {
        width: 100%;
        height: 240px;
    }

    .collection-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .filters-desktop {
        display: none;
    }

    .filter-mobile-toggle {
        display: flex;
    }

    .product-detail-page .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-detail-page .product-gallery {
        position: relative;
        top: 0;
    }

    .product-detail-bottom-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .collection-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .collection-hero-content {
        padding: 32px 20px 24px;
    }

    .collection-hero-title {
        font-size: 30px;
    }

    .collection-hero-text {
        font-size: 14px;
    }

    .collection-toolbar {
        padding: 16px 16px;
    }

    .collection-layout {
        padding: 20px 16px 40px;
    }

    .product-detail-page .product-title-detail {
        font-size: 28px;
    }

    .product-detail-page .product-price-detail {
        font-size: 24px;
    }

    .product-detail-page .product-thumbs {
        gap: 8px;
    }

    .product-detail-page .product-thumb {
        width: 56px;
        height: 56px;
    }

    .modal-content {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .product-detail-bottom {
        padding: 32px 16px;
    }
}

@media (max-width: 480px) {
    .collection-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card-cta {
        font-size: 11px;
        padding: 8px 12px;
    }

    .product-detail-page .product-main-image {
        aspect-ratio: 1;
    }
}

/* Filter Drawer Responsive */
@media (max-width: 1024px) {
    .filter-drawer-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 250;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .filter-drawer-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .filter-drawer {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        max-width: 85%;
        height: 100%;
        background: var(--white);
        z-index: 251;
        transform: translateX(-100%);
        transition: transform 0.3s;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .filter-drawer.open {
        transform: translateX(0);
        display: flex;
    }

    .filter-drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
    }

    .filter-drawer-header h3 {
        font-size: 18px;
        font-weight: 600;
        color: var(--navy);
    }

    .filter-drawer-header button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: var(--text-muted);
    }

    .filter-drawer .filters-inner {
        flex: 1;
        padding: 20px 24px;
        max-height: none;
    }

    .filter-drawer-footer {
        padding: 16px 24px;
        border-top: 1px solid var(--border);
    }
}

/* =========================================
   GIFT GUIDE PAGE
   ========================================= */

.gift-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gift-price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    cursor: pointer;
    transition: all 0.2s;
}

.gift-price-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.gift-price-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.gift-price-label {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
}

.gift-price-count {
    font-size: 13px;
    color: var(--text-muted);
}

.gift-price-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.gift-price-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

.recipient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.recipient-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.recipient-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.recipient-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.recipient-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 6px;
}

.recipient-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.recipient-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

@media (max-width: 768px) {
    .gift-price-grid {
        grid-template-columns: 1fr;
    }
    .recipient-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   FAQ PAGE
   ========================================= */

.faq-list {
    margin-bottom: 48px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    text-align: left;
    gap: 16px;
}

.faq-question span {
    flex: 1;
}

.faq-answer {
    padding: 0 0 20px;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-contact {
    text-align: center;
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius-lg);
}

.faq-contact h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin-bottom: 8px;
}

.faq-contact p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* =========================================
   SAVED PRODUCTS PAGE
   ========================================= */

.saved-empty {
    text-align: center;
    padding: 80px 20px;
}

.saved-empty .section-title {
    margin-bottom: 12px;
}

/* =========================================
   HOW IT WORKS PAGE
   ========================================= */

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.how-it-works-item {
    text-align: center;
    padding: 24px 16px;
}

.how-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.how-it-works-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.how-it-works-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-values-section {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.about-values-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 8px;
}

.about-values-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how-step {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.how-step:last-child {
    border-bottom: none;
}

.how-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.how-step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
}

.how-step-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CONTACT PAGE LAYOUT
   ========================================= */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info-side {
    position: sticky;
    top: 100px;
    padding: 32px;
    background: var(--cream);
    border-radius: var(--radius-lg);
}

.contact-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--navy);
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.contact-form-side .contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
}

.contact-success {
    text-align: center;
    padding: 48px 24px;
    background: var(--cream);
    border-radius: var(--radius-lg);
}

.contact-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-success p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        position: relative;
        top: 0;
    }
}

/* =========================================
   INQUIRY PAGE (Multi-Step)
   ========================================= */

.inquiry-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    padding: 24px;
    background: var(--cream-dark);
    border-radius: var(--radius-lg);
}

.inquiry-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.inquiry-step.active {
    color: var(--navy);
    font-weight: 600;
}

.inquiry-step.completed {
    color: #27ae60;
}

.inquiry-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.inquiry-step.active .inquiry-step-num {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.inquiry-step.completed .inquiry-step-num {
    background: #27ae60;
    border-color: #27ae60;
    color: var(--white);
}

.inquiry-step-label {
    display: none;
}

@media (min-width: 640px) {
    .inquiry-step-label {
        display: inline;
    }
    .inquiry-steps {
        gap: 32px;
    }
}

.inquiry-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
}

.inquiry-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 28px;
}

/* Cart items in inquiry */
.inquiry-cart-items {
    margin-bottom: 24px;
}

.inquiry-cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.inquiry-cart-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--cream-dark);
}

.inquiry-cart-info {
    flex: 1;
}

.inquiry-cart-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 2px;
}

.inquiry-cart-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.inquiry-cart-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inquiry-cart-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.inquiry-cart-qty span {
    min-width: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.inquiry-cart-subtotal {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    min-width: 70px;
    text-align: right;
}

.inquiry-cart-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px;
}

.inquiry-cart-remove:hover {
    color: #e74c3c;
}

.inquiry-cart-summary {
    padding: 16px 0;
}

.inquiry-cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}

.inquiry-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* Confirm step */
.inquiry-confirm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.inquiry-confirm-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inquiry-confirm-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.inquiry-confirm-item img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.inquiry-confirm-item > div {
    flex: 1;
}

.inquiry-confirm-item > div > span:first-child {
    color: var(--navy);
}

.inquiry-confirm-qty {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.inquiry-confirm-detail {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.inquiry-confirm-detail span:first-child {
    color: var(--text-muted);
}

.inquiry-confirm-detail span:last-child {
    color: var(--navy);
    font-weight: 500;
}

@media (max-width: 768px) {
    .inquiry-panel {
        padding: 24px 20px;
    }
    .inquiry-cart-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    .inquiry-confirm-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .inquiry-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .inquiry-actions .btn {
        width: 100%;
    }
}

/* =========================================
   COLLECTION PAGE (wrapper)
   ========================================= */
.collection-page {
    background: var(--cream);
}

/* =========================================
   PRODUCT DESCRIPTION SECTION
   ========================================= */
.product-description-section {
    margin-bottom: 32px;
}

/* =========================================
   FILTER SECTION BODY
   ========================================= */
.filter-section-body {
    padding-left: 0;
}

/* =========================================
   REQUIREMENT MODAL wrapper
   ========================================= */
.requirement-modal {
    max-width: 640px;
}

/* =========================================
   HOME PAGE REDESIGN — hm-* namespace
   ========================================= */

/* ── Hero ── */
@keyframes hm-slide-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hm-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes hm-img-reveal {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes hm-ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.hm-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    background: var(--navy-dark);
}

.hm-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 72px;
    position: relative;
}

.hm-hero-text::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(201,154,56,0.25);
}

.hm-hero-kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 28px;
    animation: hm-slide-up 0.6s ease both;
}

.hm-hero-headline {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0 0 28px;
    animation: hm-slide-up 0.7s 0.1s ease both;
}

.hm-hero-line {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    display: block;
    font-style: normal;
}

.hm-hero-line--2 {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    padding-left: 28px;
}

.hm-hero-body {
    font-size: 16px;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 36px;
    animation: hm-slide-up 0.7s 0.2s ease both;
}

.hm-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: hm-slide-up 0.7s 0.3s ease both;
}

.hm-btn-solid {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 15px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.hm-btn-solid:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.hm-btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.hm-btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.hm-hero-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    animation: hm-slide-up 0.7s 0.4s ease both;
}
.hm-hero-stats strong {
    color: rgba(255,255,255,0.75);
}
.hm-stat-sep {
    opacity: 0.3;
}

.hm-hero-visual {
    position: relative;
    overflow: hidden;
}

.hm-hero-img-wrap {
    width: 100%;
    height: 100%;
    animation: hm-img-reveal 1s 0.2s ease both;
}

.hm-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hm-hero-tag {
    position: absolute;
    top: 36px;
    left: 36px;
    background: var(--white);
    border-radius: 4px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: hm-slide-up 0.7s 0.5s ease both;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hm-hero-tag-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.hm-hero-tag-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.hm-hero-pill {
    position: absolute;
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hm-hero-pill:hover { transform: scale(1.05); }
.hm-hero-pill--1 {
    bottom: 80px;
    left: 36px;
    background: #1a0a00;
    color: #ffb347;
    animation: hm-fade-in 0.6s 0.7s ease both;
}
.hm-hero-pill--2 {
    bottom: 36px;
    left: 140px;
    background: var(--navy);
    color: var(--gold);
    animation: hm-fade-in 0.6s 0.85s ease both;
}

/* ── Ticker ── */
.hm-ticker {
    background: var(--gold);
    padding: 0;
    overflow: hidden;
    height: 44px;
    display: flex;
    align-items: center;
}

.hm-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: hm-ticker-scroll 28s linear infinite;
    gap: 0;
}

.hm-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.hm-ticker-sep {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    padding: 0 4px;
}

.hm-ticker-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    padding: 0 16px;
    transition: opacity 0.2s;
}
.hm-ticker-btn:hover { opacity: 0.75; }

/* ── Collections Editorial ── */
.hm-collections {
    display: grid;
    grid-template-columns: 57% 43%;
    height: 580px;
    overflow: hidden;
}

.hm-coll-main,
.hm-coll-secondary {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hm-coll-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.hm-coll-main:hover .hm-coll-img,
.hm-coll-secondary:hover .hm-coll-img {
    transform: scale(1.05);
}

.hm-coll-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.62) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 44px 44px;
    color: var(--white);
}

.hm-coll-meta {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.hm-coll-name {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
}
.hm-coll-name--sm {
    font-size: 32px;
}

.hm-coll-desc {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
    max-width: 300px;
    line-height: 1.5;
}

.hm-coll-cta {
    display: inline-flex;
    align-self: flex-start;
    padding: 11px 22px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--white);
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}
.hm-coll-main:hover .hm-coll-cta,
.hm-coll-secondary:hover .hm-coll-cta {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
}

.hm-coll-side {
    display: grid;
    grid-template-rows: 1fr 210px;
    overflow: hidden;
}

.hm-coll-secondary {
    border-left: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    min-height: 0;
}

.hm-coll-promo {
    background: var(--cream-dark);
    border-left: 3px solid var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 36px;
    cursor: pointer;
    transition: background 0.2s;
    overflow: hidden;
}
.hm-coll-promo:hover { background: var(--cream); }

.hm-coll-promo-eye {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.hm-coll-promo-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.hm-coll-promo-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}
.hm-coll-promo-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
}

/* ── Horizontal Product Scroll ── */
.hm-scroll-section {
    padding: 52px 0 52px 72px;
    background: var(--cream);
    overflow: hidden;
}
.hm-scroll-section--dark {
    background: var(--navy-dark);
}
.hm-scroll-section--dark .hm-scroll-eyebrow { color: rgba(201,154,56,0.9); }
.hm-scroll-section--dark .hm-scroll-title { color: var(--white); }
.hm-scroll-section--dark .hm-scroll-all { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.2); }
.hm-scroll-section--dark .hm-scroll-all:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

.hm-scroll-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-right: 72px;
}

.hm-scroll-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 6px;
}

.hm-scroll-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.15;
}

.hm-scroll-all {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.hm-scroll-all:hover { border-color: var(--navy); color: var(--navy); }

.hm-scroll-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
    padding-right: 72px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.hm-scroll-track::-webkit-scrollbar { display: none; }

.hm-scroll-card {
    flex: 0 0 260px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: var(--shadow-sm);
}
.hm-scroll-section--dark .hm-scroll-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
}
.hm-scroll-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.hm-scroll-card-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cream-dark);
}
.hm-scroll-section--dark .hm-scroll-card-img { background: rgba(255,255,255,0.05); }

.hm-scroll-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}
.hm-scroll-card:hover .hm-scroll-card-img img { transform: scale(1.06); }

.hm-scroll-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
    transition: color 0.2s;
}
.hm-scroll-wish:hover, .hm-scroll-wish--saved { color: #e74c3c; }

.hm-scroll-card-body {
    padding: 14px 16px;
}
.hm-scroll-section--dark .hm-scroll-card-body { color: var(--white); }

.hm-scroll-card-cat {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.hm-scroll-card-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.4;
}
.hm-scroll-section--dark .hm-scroll-card-name { color: rgba(255,255,255,0.9); }

.hm-scroll-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hm-scroll-card-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}
.hm-scroll-section--dark .hm-scroll-card-price { color: var(--gold); }

.hm-scroll-add {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 7px 14px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.hm-scroll-add:hover { background: var(--gold); }
.hm-scroll-section--dark .hm-scroll-add { background: var(--gold); }
.hm-scroll-section--dark .hm-scroll-add:hover { background: var(--gold-dark); }

/* ── Editorial Break ── */
.hm-editorial {
    position: relative;
    background: var(--navy-dark);
    padding: 88px 72px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

.hm-editorial-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201,154,56,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,154,56,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hm-editorial-content {
    position: relative;
    z-index: 1;
}

.hm-editorial-kicker {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 24px;
}

.hm-editorial-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.25;
    margin: 0 auto 24px;
    max-width: 760px;
}

.hm-editorial-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hm-editorial-btn {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(201,154,56,0.6);
    padding: 15px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.hm-editorial:hover .hm-editorial-btn {
    border-color: var(--gold);
    background: rgba(201,154,56,0.1);
}

.hm-editorial-deco {
    position: absolute;
    font-size: 60px;
    color: rgba(201,154,56,0.08);
    line-height: 1;
    pointer-events: none;
    font-weight: 400;
}
.hm-editorial-deco--tl { top: 24px; left: 40px; }
.hm-editorial-deco--br { bottom: 24px; right: 40px; }

/* ── Featured Grid ── */
.hm-featured {
    padding: 60px 72px;
    background: var(--white);
}

.hm-featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.hm-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.hm-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hm-featured-item--hero {
    grid-column: span 2;
    grid-row: span 1;
}

.hm-featured-item--hero .product-image-wrap {
    aspect-ratio: 2 / 1;
}

/* ── Trust Bar ── */
.hm-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hm-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 48px;
    flex: 1;
    justify-content: center;
}
.hm-trust-item + .hm-trust-item {
    border-left: 1px solid var(--border);
}

.hm-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.hm-trust-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hm-trust-body strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}
.hm-trust-body span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Newsletter Split ── */
.hm-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--navy);
}

.hm-newsletter-left {
    padding: 80px 64px 80px 72px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.hm-newsletter-kicker {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.hm-newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin: 0 0 20px;
}

.hm-newsletter-body {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 380px;
}

.hm-newsletter-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hm-newsletter-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.hm-newsletter-right {
    padding: 80px 72px 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.hm-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hm-nl-label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.hm-nl-row {
    display: flex;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
    transition: border-color 0.2s;
}
.hm-nl-row:focus-within { border-color: var(--gold); }

.hm-nl-input {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 15px;
    color: var(--white);
}
.hm-nl-input::placeholder { color: rgba(255,255,255,0.35); }

.hm-nl-btn {
    background: var(--gold);
    border: none;
    padding: 16px 24px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.hm-nl-btn:hover { background: var(--gold-dark); }

.hm-nl-note {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
}

.hm-newsletter-social {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.hm-nl-socials {
    display: flex;
    gap: 12px;
}

.hm-nl-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: border-color 0.2s, color 0.2s;
}
.hm-nl-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* =========================================
   HOME PAGE REDESIGN — RESPONSIVE
   ========================================= */

@media (max-width: 1280px) {
    .hm-hero-text { padding: 60px 48px 60px 56px; }
    .hm-featured { padding: 60px 56px; }
    .hm-scroll-section { padding-left: 56px; }
    .hm-scroll-track { padding-right: 56px; }
    .hm-scroll-header { padding-right: 56px; }
    .hm-newsletter-left { padding: 60px 48px 60px 56px; }
    .hm-newsletter-right { padding: 60px 56px 60px 48px; }
    .hm-editorial { padding: 72px 56px; }
}

@media (max-width: 1024px) {
    .hm-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hm-hero-text {
        padding: 64px 40px 48px;
        order: 2;
    }
    .hm-hero-text::after { display: none; }
    .hm-hero-visual {
        height: 55vw;
        min-height: 320px;
        max-height: 480px;
        order: 1;
    }
    .hm-hero-pill--1 { bottom: 60px; }
    .hm-hero-pill--2 { bottom: 16px; }
    .hm-collections {
        grid-template-columns: 1fr;
        height: auto;
    }
    .hm-coll-main { height: 380px; }
    .hm-coll-side { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: none; }
    .hm-coll-secondary { height: 260px; min-height: 260px; border-bottom: none; border-right: 3px solid var(--white); }
    .hm-coll-promo { height: auto; min-height: 180px; }
    .hm-featured-grid { grid-template-columns: repeat(3, 1fr); }
    .hm-featured-item--hero { grid-column: span 1; }
    .hm-featured-item--hero .product-image-wrap { aspect-ratio: 1; }
    .hm-trust-item { padding: 20px 24px; }
    .hm-newsletter {
        grid-template-columns: 1fr;
    }
    .hm-newsletter-left {
        padding: 56px 40px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .hm-newsletter-right { padding: 48px 40px 56px; }
    .hm-featured { padding: 48px 40px; }
    .hm-scroll-section { padding-left: 40px; }
    .hm-scroll-header { padding-right: 40px; }
    .hm-scroll-track { padding-right: 40px; }
    .hm-editorial { padding: 64px 40px; }
}

@media (max-width: 768px) {
    .hm-hero-text { padding: 44px 24px 40px; }
    .hm-hero-line { font-size: 44px; }
    .hm-hero-visual { height: 66vw; }
    .hm-hero-tag { top: 20px; left: 20px; }
    .hm-hero-pill--1 { bottom: 52px; left: 20px; font-size: 12px; padding: 8px 14px; }
    .hm-hero-pill--2 { bottom: 12px; left: 110px; font-size: 12px; padding: 8px 14px; }
    .hm-coll-side { display: grid; grid-template-columns: 1fr; grid-template-rows: 240px 1fr; }
    .hm-coll-secondary { height: 240px; min-height: 240px; border-right: none; border-bottom: 3px solid var(--white); }
    .hm-coll-promo { height: auto; min-height: 160px; }
    .hm-coll-overlay { padding: 28px; }
    .hm-coll-name { font-size: 32px; }
    .hm-coll-name--sm { font-size: 26px; }
    .hm-featured { padding: 40px 24px; }
    .hm-featured-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-trust { flex-direction: column; }
    .hm-trust-item { border-left: none !important; border-top: 1px solid var(--border); padding: 20px 24px; width: 100%; }
    .hm-trust-item:first-child { border-top: none; }
    .hm-scroll-section { padding-left: 20px; }
    .hm-scroll-header { padding-right: 20px; flex-wrap: wrap; gap: 12px; }
    .hm-scroll-track { padding-right: 20px; }
    .hm-scroll-card { flex: 0 0 220px; }
    .hm-newsletter-left { padding: 44px 24px 36px; }
    .hm-newsletter-right { padding: 36px 24px 44px; }
    .hm-editorial { padding: 56px 24px; }
    .hm-editorial-quote { font-size: 30px; }
    .hm-nl-row { flex-direction: column; }
    .hm-nl-input { border-radius: 4px 4px 0 0; }
    .hm-nl-btn { border-radius: 0 0 4px 4px; padding: 14px; }
}
