/* CSS Variables for Christmas Theme */
:root {
    --deep-red: #B22222;
    --pine-green: #0B6623;
    --gold: #FFD700;
    --snow-white: #FFFFFF;
    --icy-blue: #E0F7FF;
    --dark-charcoal: #222222;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-charcoal);
    background: linear-gradient(135deg, var(--icy-blue) 0%, var(--snow-white) 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--snow-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--gold);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--pine-green);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

/* Header Styles */
.header {
    background: var(--pine-green);
    padding: 1rem 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    margin-bottom: 0px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 20%, 
        var(--deep-red) 40%, 
        var(--gold) 60%, 
        var(--deep-red) 80%, 
        transparent 100%);
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

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

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

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

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

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

.cart-icon {
    position: relative;
    background: none;
    border: none;
    color: var(--snow-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--deep-red);
    color: var(--snow-white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(11, 102, 35, 0.8), rgba(178, 34, 34, 0.6)),
                url('https://images.unsplash.com/photo-1545420333-23a22b18b8fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .hero {
        background-attachment: scroll;
    }
}

.hero-content {
    z-index: 2;
    position: relative;
}

.cta-button {
    background: var(--gold);
    color: var(--pine-green);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background: var(--snow-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Products Grid */
.products-section {
    padding: 6rem 0;
}

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

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tag {
    background: var(--snow-white);
    border: 2px solid var(--pine-green);
    color: var(--pine-green);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-tag.active,
.filter-tag:hover {
    background: var(--pine-green);
    color: var(--snow-white);
}

.sort-options select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--pine-green);
    border-radius: var(--border-radius);
    background: var(--snow-white);
    color: var(--dark-charcoal);
    font-family: 'Inter', sans-serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--deep-red);
    color: var(--snow-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pine-green);
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    background: var(--pine-green);
    color: var(--snow-white);
    border: none;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.add-to-cart-btn:hover {
    background: var(--deep-red);
}

/* Cart Styles */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--snow-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 2001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    background: var(--pine-green);
    color: var(--snow-white);
    display: flex;
    justify-content: between;
    align-items: center;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

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

.cart-item-name {
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--pine-green);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: var(--icy-blue);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--icy-blue);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--pine-green);
}

.checkout-btn {
    width: 100%;
    background: var(--gold);
    color: var(--dark-charcoal);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: var(--deep-red);
    color: var(--snow-white);
}

/* Snow Animation */
#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Loading Spinner */
.loading {
    text-align: center;
    padding: 3rem;
    display: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--icy-blue);
    border-top: 4px solid var(--pine-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Festive Message */
.festive-message {
    background: linear-gradient(135deg, var(--pine-green), var(--deep-red));
    color: var(--snow-white);
    text-align: center;
    padding: 4rem 0;
}

.festive-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.festive-message p {
    font-size: 1.2rem;
    opacity: 0.9;
}

  /* ❄️ Snowflake Animation */
  @keyframes snowfall {
    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(100vh) rotate(360deg);
      opacity: 0;
    }
  }

  /* 🌍 Responsive Design */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      width: 90%;
      text-align: center;
    }
  }
  
/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-tags {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .cart-sidebar {
        max-width: 100%;
    }
    
    .hero {
        height: 60vh;
        background-attachment: scroll;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
select:focus,
input:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* High contrast support */
@media (prefers-contrast: high) {
    :root {
        --pine-green: #004400;
        --deep-red: #800000;
        --gold: #aa8800;
    }
}



/* ================================
   ABOUT PAGE STYLES
   ================================ */

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

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--festive-green) 0%, var(--festive-green-deep) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="snow" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23snow)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.hero-decoration {
    position: relative;
    z-index: 2;
}

.hero-decoration .decoration {
    font-size: 2rem;
    margin: 0 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.hero-decoration .decoration:nth-child(2) {
    animation-delay: 1s;
}

.hero-decoration .decoration:nth-child(3) {
    animation-delay: 2s;
}

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

/* Story Section */
.story-section {
    margin-bottom: 80px;
}

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

.story-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--festive-green-deep);
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--festive-red);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--card-bg);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed var(--festive-gold);
    color: var(--festive-green);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
    text-align: center;
}

.values-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--festive-green-deep);
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--card-bg);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--festive-green-deep);
    margin-bottom: 15px;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    margin-bottom: 80px;
    text-align: center;
}

.team-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--festive-green-deep);
    margin-bottom: 15px;
}

.team-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--card-bg);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--festive-green-deep);
    margin-bottom: 8px;
}

.member-role {
    color: var(--festive-red);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.member-bio {
    color: #555;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--festive-red) 0%, var(--festive-red-deep) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--festive-red);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 900px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .story-text h2,
    .values-section h2,
    .team-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 650px) {
    .about-container {
        padding: 15px;
    }
    
    .about-hero {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ================================
   PROCESS SECTION STYLES
   ================================ */
   .process-section {
    margin-bottom: 80px;
    text-align: center;
}

.process-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--festive-green-deep);
    margin-bottom: 15px;
}

.process-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.process-gallery {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    align-items: center;
    text-align: left;
}

.process-image {
    display: flex;
    justify-content: center;
}

.process-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--festive-green), var(--festive-green-deep));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.process-info h3 {
    font-size: 1.4rem;
    color: var(--festive-green-deep);
    margin-bottom: 10px;
}

.process-info p {
    color: #555;
    line-height: 1.6;
}

/* ================================
   FEEDBACK SECTION STYLES
   ================================ */
.feedback-section {
    margin-bottom: 80px;
    text-align: center;
}

.feedback-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--festive-green-deep);
    margin-bottom: 15px;
}

.feedback-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feedback-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: left;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 3rem;
    color: var(--festive-red);
    margin-bottom: 15px;
    line-height: 1;
}

.feedback-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--festive-red), var(--festive-red-deep));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.customer-details h4 {
    font-size: 1.1rem;
    color: var(--festive-green-deep);
    margin-bottom: 5px;
}

.customer-details p {
    font-size: 0.9rem;
    color: #666;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 900px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .process-placeholder {
        margin: 0 auto;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-section h2,
    .feedback-section h2,
    .values-section h2,
    .team-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 650px) {
    .process-gallery {
        gap: 30px;
    }
    
    .feedback-card {
        padding: 20px;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
    
    .customer-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}