/* ============================================
   LilAura | Anti-Tarnish Jewelry Website
   Color Palette & Design System
   ============================================ */

:root {
    /* Colors — Maroon & Gold Luxury Palette */
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --gold-dark: #A8884E;
    --maroon: #4A0E0E;
    --maroon-deep: #2E0808;
    --bg: #FBF6F1;
    --bg-cream: #F5EDE4;
    --text-dark: #2E0808;
    --text-body: #5C3A3A;
    --text-light: #9A7A7A;
    --white: #FFFFFF;
    --border: #E0CFC0;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ============================================
   Reset & Base
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ============================================
   Announcement Bar
   ============================================ */

.announcement-bar {
    background-color: var(--maroon-deep);
    color: var(--gold-light);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.announcement-bar .announcement-track {
    display: flex;
    animation: scrollAnnouncement 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.announcement-bar .announcement-item {
    padding: 0 60px;
    flex-shrink: 0;
}

@keyframes scrollAnnouncement {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(251, 246, 241, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(46, 8, 8, 0.08);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-body);
    position: relative;
    font-weight: 400;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--maroon);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--maroon) !important;
    font-weight: 500 !important;
}

.nav-whatsapp svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    flex-shrink: 0;
    fill: var(--maroon);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #4A0E0E 0%, #2E0808 40%, #3D0C0C 70%, #4A0E0E 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 8, 8, 0.2);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 700px;
    margin-top: 420px;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--maroon-deep);
    border-color: var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--maroon);
    border-color: var(--maroon);
}

.btn-outline:hover {
    background-color: var(--maroon);
    color: var(--gold-light);
}

.btn-gold {
    background-color: var(--maroon);
    color: var(--gold-light);
    border-color: var(--maroon);
}

.btn-gold:hover {
    background-color: var(--maroon-deep);
    border-color: var(--maroon-deep);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    border-color: #1DA851;
}

.btn-whatsapp svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ============================================
   Section Titles
   ============================================ */

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--maroon);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 48px;
    font-weight: 300;
}

/* ============================================
   Trust / Features Bar
   ============================================ */

.trust-bar {
    padding: 48px 0;
    background-color: var(--bg-cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 4px;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
}

.trust-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.trust-sub {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 12px;
    }

    .trust-icon svg {
        width: 26px;
        height: 26px;
    }

    .trust-label {
        font-size: 0.95rem;
    }
}

/* ============================================
   Collections Grid
   ============================================ */

.collections-section {
    padding: var(--section-padding);
    background-color: var(--bg);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.collection-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.collection-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Placeholder gradient backgrounds for collection cards */
.collection-card .placeholder-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-card:nth-child(1) .placeholder-bg {
    background: linear-gradient(145deg, #4A0E0E, #C9A96E);
}

.collection-card:nth-child(2) .placeholder-bg {
    background: linear-gradient(145deg, #6B1A1A, #E8D5B0);
}

.collection-card:nth-child(3) .placeholder-bg {
    background: linear-gradient(145deg, #2E0808, #A8884E);
}

.collection-card:nth-child(4) .placeholder-bg {
    background: linear-gradient(145deg, #4A0E0E, #D4A373);
}

.collection-card:nth-child(5) .placeholder-bg {
    background: linear-gradient(145deg, #7A2E2E, #C9A96E);
}

.collection-card:nth-child(6) .placeholder-bg {
    background: linear-gradient(145deg, #2E0808, #E8D5B0);
}

.collection-card:hover .collection-card-img,
.collection-card:hover .placeholder-bg {
    transform: scale(1.05);
}

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46, 8, 8, 0.7) 0%, rgba(46, 8, 8, 0.15) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    transition: var(--transition);
}

.collection-card:hover .collection-card-overlay {
    background: linear-gradient(to top, rgba(46, 8, 8, 0.85) 0%, rgba(46, 8, 8, 0.25) 60%, transparent 100%);
}

.collection-card-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    font-weight: 400;
}

/* ============================================
   Featured Products Section
   ============================================ */

.products-section {
    padding: var(--section-padding);
    background-color: var(--bg-cream);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    border: 1px solid var(--border);
    background: transparent;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--maroon);
    border-color: var(--maroon);
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.product-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

/* Placeholder for product images */
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.5s ease;
}

.product-card:hover .product-placeholder {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: var(--maroon);
    color: var(--gold-light);
    font-weight: 500;
}

.product-card-info {
    padding: 16px 20px 20px;
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.product-card-category {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-card-price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--maroon);
    margin-bottom: 14px;
}

/* ============================================
   Brand Story Section
   ============================================ */

.story-section {
    padding: var(--section-padding);
    background-color: var(--bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image .placeholder-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #4A0E0E, #C9A96E, #6B1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(232, 213, 176, 0.5);
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--maroon);
}

.story-content p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.story-content .btn {
    margin-top: 12px;
}

/* ============================================
   Quote / Founder Section
   ============================================ */

.quote-section {
    padding: 80px 0;
    background-color: var(--maroon-deep);
    text-align: center;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.quote-author {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* ============================================
   Newsletter Section
   ============================================ */

.newsletter-section {
    padding: var(--section-padding);
    background-color: var(--maroon);
    color: var(--white);
    text-align: center;
}

.newsletter-section .section-title {
    color: var(--gold-light);
}

.newsletter-section .section-subtitle {
    color: rgba(232, 213, 176, 0.6);
}

.newsletter-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    background-color: rgba(232, 213, 176, 0.1);
    color: var(--gold-light);
    border: 1px solid rgba(232, 213, 176, 0.25);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(232, 213, 176, 0.4);
}

.newsletter-form .btn {
    border-left: none;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--maroon-deep);
    color: rgba(232, 213, 176, 0.7);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-about {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    background-color: var(--gold);
    color: var(--maroon-deep);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-heading {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(232, 213, 176, 0.55);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
}

.footer-bottom a {
    color: rgba(232, 213, 176, 0.45);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ============================================
   Catalog Page
   ============================================ */

.page-header {
    padding: 60px 0 40px;
    text-align: center;
    background-color: var(--maroon-deep);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.page-header p {
    color: rgba(232, 213, 176, 0.6);
    font-size: 0.9rem;
}

.catalog-section {
    padding: 40px 0 80px;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.catalog-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

.catalog-sort select {
    padding: 8px 16px;
    border: 1px solid var(--border);
    background-color: var(--white);
    font-size: 0.85rem;
    color: var(--text-body);
    cursor: pointer;
    font-family: var(--font-body);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--maroon);
}

.contact-info p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--maroon);
}

.contact-detail-text strong {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-detail-text span,
.contact-detail-text a {
    font-size: 0.9rem;
    color: var(--text-body);
}

.contact-form {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: 4px;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-weight: 400;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-body);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background-color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Animations — Fade in on scroll
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

.fade-in-delay-5 {
    transition-delay: 0.5s;
}

.fade-in-delay-6 {
    transition-delay: 0.6s;
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* ============================================
   Back to Top Button
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 96px;
    width: 44px;
    height: 44px;
    background-color: var(--maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--maroon-deep);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

/* ============================================
   Mobile Menu Overlay
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background-color: var(--bg);
    z-index: 1000;
    padding: 80px 32px 32px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 1024px) {

    .products-grid,
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .story-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-image {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn {
        border-left: 1px solid;
    }
}

@media (max-width: 480px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card-info {
        padding: 12px 14px 16px;
    }

    .product-card-name {
        font-size: 1rem;
    }

    .products-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 0.7rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 24px;
    }
}

/* ============================================
   Cart Icon in Nav
   ============================================ */

.nav-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-cart-btn svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    flex-shrink: 0;
    fill: var(--text-body);
    transition: var(--transition);
}

.nav-cart-btn:hover svg {
    fill: var(--maroon);
}

.nav-cart-btn::after {
    display: none !important;
}

/* Position cart button on the right with menu toggle */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-cart-btn {
    margin-right: 0;
    padding: 8px;
}

@media (max-width: 768px) {
    .nav-cart-btn {
        margin-left: auto;
        margin-right: 10px;
    }
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--maroon);
    color: var(--gold-light);
    font-size: 0.65rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ============================================
   Cart Notification Toast
   ============================================ */

.cart-notification {
    position: fixed;
    top: 120px;
    right: 28px;
    background-color: var(--maroon);
    color: var(--gold-light);
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    z-index: 2000;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(46, 8, 8, 0.3);
}

.cart-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   Cart Drawer (Slide-in from right)
   ============================================ */

.cart-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background-color: var(--bg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--maroon);
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-drawer-close svg {
    fill: var(--text-body);
}

.cart-drawer-close:hover {
    background-color: var(--bg-cream);
}

.cart-drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 24px;
    text-align: center;
    color: var(--text-light);
}

.cart-drawer-empty svg {
    fill: var(--border);
    margin-bottom: 16px;
}

.cart-drawer-empty p {
    font-size: 1rem;
    color: var(--text-light);
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-drawer-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.cart-drawer-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.cart-item-variant {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 1px;
}

.cart-item-sku {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--maroon);
    margin-bottom: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    width: fit-content;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-body);
    transition: var(--transition);
}

.cart-item-qty button:hover {
    background-color: var(--bg-cream);
}

.cart-item-qty span {
    width: 28px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.cart-item-remove {
    position: absolute;
    top: 16px;
    right: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-item-remove svg {
    fill: var(--text-light);
}

.cart-item-remove:hover {
    background-color: var(--bg-cream);
}

.cart-item-remove:hover svg {
    fill: var(--maroon);
}

.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}

.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
}

.cart-drawer-total span {
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.cart-drawer-total strong {
    font-size: 1.2rem;
    color: var(--maroon);
}

.btn-checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background-color: #25D366;
    color: var(--white);
    border-color: #25D366;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #25D366;
    transition: var(--transition);
}

.btn-checkout:hover {
    background-color: #1DA851;
    border-color: #1DA851;
}

.btn-checkout svg {
    fill: currentColor;
}

/* ============================================
   Product Card Updates (clickable card)
   ============================================ */

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-link:hover {
    color: inherit;
}

.product-card-link::after {
    display: none !important;
}

.product-card-actions {
    padding: 0 20px 20px;
}

.btn-add-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    background-color: var(--maroon);
    color: var(--gold-light);
    border: 1px solid var(--maroon);
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-add-cart:hover {
    background-color: var(--maroon-deep);
    border-color: var(--maroon-deep);
}

.btn-add-cart svg {
    fill: currentColor;
}

/* ============================================
   Product Detail Page
   ============================================ */

.product-detail-section {
    padding: 0 0 60px;
}

.product-detail-breadcrumb {
    padding: 20px 0;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-detail-breadcrumb a {
    color: var(--text-light);
}

.product-detail-breadcrumb a:hover {
    color: var(--maroon);
}

.product-detail-breadcrumb .current {
    color: var(--text-dark);
    font-weight: 500;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px 60px;
}

.product-detail-main-img {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--bg-cream);
}

.product-detail-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    min-height: 400px;
}

.product-detail-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.product-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.product-thumb.active {
    border-color: var(--maroon);
}

.product-thumb:hover {
    border-color: var(--gold);
}

.product-detail-info {
    padding-top: 10px;
}

.product-detail-category {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 4px;
}

.product-detail-sku {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 1px;
    float: right;
    margin-top: -18px;
}

.product-detail-name {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.product-detail-price {
    font-size: 1.3rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.product-detail-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 28px;
}

.product-detail-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.btn-add-cart-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    background-color: var(--maroon-deep);
    color: var(--gold-light);
    border: 1px solid var(--maroon-deep);
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.btn-add-cart-lg:hover {
    background-color: var(--maroon);
    border-color: var(--maroon);
}

.btn-add-cart-lg svg {
    fill: currentColor;
}

.product-detail-features {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.product-detail-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-body);
}

.product-detail-features li svg {
    fill: var(--gold-dark);
    flex-shrink: 0;
}

/* Related Products */
.product-related {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 40px 24px 0;
    border-top: 1px solid var(--border);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

/* ============================================
   Product Detail Responsive
   ============================================ */

@media (max-width: 1024px) {
    .product-detail-grid {
        gap: 40px;
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-detail-sku {
        float: none;
        margin-top: 0;
        display: block;
        margin-bottom: 8px;
    }

    .product-detail-name {
        font-size: 1.8rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .product-detail-thumbs {
        gap: 8px;
    }

    .product-thumb {
        width: 48px;
        height: 48px;
    }

    .product-detail-name {
        font-size: 1.5rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}