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

:root {
    /* History-themed Color Palette */
    --primary-gold: #D4AF37;
    --deep-brown: #3C2415;
    --rich-burgundy: #722F37;
    --parchment: #F4E4BC;
    --antique-white: #FAF0E6;
    --dark-bronze: #CD7F32;
    --forest-green: #355E3B;
    --charcoal: #36454F;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Source Serif Pro', serif;
    --font-display: 'Cinzel', serif;
    
    /* Shadows and Effects */
    --shadow-soft: 0 4px 20px rgba(60, 36, 21, 0.1);
    --shadow-medium: 0 8px 30px rgba(60, 36, 21, 0.15);
    --shadow-strong: 0 12px 40px rgba(60, 36, 21, 0.2);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--deep-brown);
    background-color: var(--antique-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--rich-burgundy) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-decoration: none;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

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

.nav-menu a {
    color: var(--antique-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--antique-white);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 25%),
        linear-gradient(225deg, rgba(114, 47, 55, 0.1) 0%, transparent 25%),
        linear-gradient(135deg, var(--parchment) 0%, var(--antique-white) 50%, var(--parchment) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(114, 47, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(60, 36, 21, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: #f0f0f0;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.4),
        2px 2px 0px rgba(60, 36, 21, 0.8),
        4px 4px 0px rgba(60, 36, 21, 0.6);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.hero-title i {
    color: var(--primary-gold);
    margin-right: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--rich-burgundy);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-bronze) 100%);
    color: var(--deep-brown);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-brown);
    border: 2px solid var(--deep-brown);
}

.btn-secondary:hover {
    background: var(--deep-brown);
    color: var(--antique-white);
    transform: translateY(-2px);
}

.historical-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
}

.historical-icons i {
    animation: float 6s ease-in-out infinite;
}

.historical-icons i:nth-child(2) {
    animation-delay: -2s;
}

.historical-icons i:nth-child(3) {
    animation-delay: -4s;
}

.historical-icons i:nth-child(4) {
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--deep-brown);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 
        0 0 8px rgba(212, 175, 55, 0.7),
        0 0 16px rgba(212, 175, 55, 0.5),
        0 0 24px rgba(212, 175, 55, 0.3),
        1px 1px 0px rgba(60, 36, 21, 0.7),
        2px 2px 0px rgba(60, 36, 21, 0.5);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}

.section-header h2 i {
    color: var(--primary-gold);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--rich-burgundy);
    font-style: italic;
}

.no-refunds-notice {
    background: linear-gradient(135deg, rgba(197, 162, 103, 0.15), rgba(139, 69, 19, 0.1));
    border-left: 4px solid var(--primary-gold);
    padding: 1rem 1.5rem;
    margin-top: 1.5rem !important;
    border-radius: 8px;
    font-size: 1rem !important;
    color: var(--deep-brown) !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-style: normal !important;
}

.no-refunds-notice i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.no-refunds-notice strong {
    color: var(--rich-burgundy);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--antique-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Shopify Buy Button wrapper styling */
.shopify-product-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.shopify-product-wrapper iframe {
    max-width: 100%;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.product-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 0 6px rgba(212, 175, 55, 0.6),
        0 0 12px rgba(212, 175, 55, 0.4),
        0 0 18px rgba(212, 175, 55, 0.2),
        1px 1px 0px rgba(60, 36, 21, 0.6),
        2px 2px 0px rgba(60, 36, 21, 0.4);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.product-card p {
    color: var(--rich-burgundy);
    margin-bottom: 1.5rem;
}

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

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--parchment) 0%, var(--antique-white) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 
        0 0 8px rgba(212, 175, 55, 0.7),
        0 0 16px rgba(212, 175, 55, 0.5),
        0 0 24px rgba(212, 175, 55, 0.3),
        1px 1px 0px rgba(60, 36, 21, 0.7),
        2px 2px 0px rgba(60, 36, 21, 0.5);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}

.about-text h2 i {
    color: var(--primary-gold);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--deep-brown);
    letter-spacing: 0.5px;
}

.stat-label {
    color: var(--rich-burgundy);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.timeline-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    width: 40px;
    text-align: center;
}

/* Social Media Section */
.social {
    padding: 6rem 0;
    background: var(--antique-white);
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-bronze));
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.platform-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
}

.tiktok .platform-icon {
    background: linear-gradient(135deg, #ff0050, #000000);
}

.youtube .platform-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.platform-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 0 6px rgba(212, 175, 55, 0.6),
        0 0 12px rgba(212, 175, 55, 0.4),
        0 0 18px rgba(212, 175, 55, 0.2),
        1px 1px 0px rgba(60, 36, 21, 0.6),
        2px 2px 0px rgba(60, 36, 21, 0.4);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.platform-card p {
    color: var(--rich-burgundy);
    margin-bottom: 1rem;
}

.btn-platform {
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--rich-burgundy) 100%);
    color: var(--antique-white);
    margin-top: 1rem;
}

.btn-platform:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--rich-burgundy) 100%);
    color: var(--antique-white);
}

.newsletter-content {
    text-align: center;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 
        0 0 8px rgba(212, 175, 55, 0.7),
        0 0 16px rgba(212, 175, 55, 0.5),
        0 0 24px rgba(212, 175, 55, 0.3),
        1px 1px 0px rgba(60, 36, 21, 0.7),
        2px 2px 0px rgba(60, 36, 21, 0.5);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}

.newsletter-content h2 i {
    color: var(--primary-gold);
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--antique-white);
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(250, 240, 230, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: var(--deep-brown);
    color: var(--antique-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-section h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 0 6px rgba(212, 175, 55, 0.6),
        0 0 12px rgba(212, 175, 55, 0.4),
        0 0 18px rgba(212, 175, 55, 0.2);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--antique-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--deep-brown);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--deep-brown);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        justify-content: center;
    }
    
    .social-platforms {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-actions .btn {
        font-size: 0.8rem;
        padding: 0.6rem 0.4rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Legal Pages Styling */
.legal-page {
    padding: 8rem 0 4rem;
    background: var(--antique-white);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 
        0 0 8px rgba(212, 175, 55, 0.7),
        0 0 16px rgba(212, 175, 55, 0.5),
        0 0 24px rgba(212, 175, 55, 0.3),
        1px 1px 0px rgba(60, 36, 21, 0.7),
        2px 2px 0px rgba(60, 36, 21, 0.5);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}

.legal-content h1 i {
    color: var(--primary-gold);
}

.last-updated {
    color: var(--rich-burgundy);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--parchment);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 0 6px rgba(212, 175, 55, 0.6),
        0 0 12px rgba(212, 175, 55, 0.4),
        0 0 18px rgba(212, 175, 55, 0.2),
        1px 1px 0px rgba(60, 36, 21, 0.6),
        2px 2px 0px rgba(60, 36, 21, 0.4);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--rich-burgundy);
    margin: 1.5rem 0 0.5rem;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--charcoal);
}

.legal-section strong {
    color: var(--deep-brown);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    color: var(--dark-bronze);
    text-decoration: underline;
}

.back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--parchment);
    text-align: center;
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    position: relative;
    box-shadow: var(--shadow-strong);
}

.close-modal {
    color: var(--rich-burgundy);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-modal:hover {
    color: var(--deep-brown);
    transform: scale(1.1);
}

.featured-product {
    border: 3px solid var(--primary-gold);
    position: relative;
}

.featured-product::before {
    content: '★ Featured Product';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--deep-brown);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.product-actions .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.75rem 0.5rem;
}

.buy-now-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-bronze) 100%) !important;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.featured-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--deep-brown);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-soft);
}

.featured-product {
    border: 3px solid var(--primary-gold);
}

/* Error, Loading and No Products Messages */
.loading-message,
.no-products-message,
.error-message {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--antique-white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin: 2rem 0;
}

.loading-message i,
.no-products-message i,
.error-message i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
}

.loading-message i.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-message h3,
.no-products-message h3,
.error-message h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 0 6px rgba(212, 175, 55, 0.6),
        0 0 12px rgba(212, 175, 55, 0.4),
        0 0 18px rgba(212, 175, 55, 0.2),
        1px 1px 0px rgba(60, 36, 21, 0.6),
        2px 2px 0px rgba(60, 36, 21, 0.4);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.loading-message p,
.no-products-message p,
.error-message p {
    color: var(--rich-burgundy);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.no-products-message .btn,
.error-message .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 0 2rem;
    }

    .legal-content {
        margin: 0 1rem;
        padding: 2rem;
    }

    .legal-content h1 {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .legal-section ul {
        margin-left: 1rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--parchment);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-bronze);
}
