/* ==================================
   Wholesale Depot - CSS Stylesheet
   ================================== */
/* CSS Variables */
:root {
    /* Colors */
    --background: #FDFCF8;
    --foreground: #2D2D2D;
    --primary: #4A7043;
    --primary-foreground: #FDFCF8;
    --secondary: #A8D5BA;
    --muted: #E8E5D9;
    --muted-foreground: #6B7280;
    --border: #E5E7EB;
    --card: #FFFFFF;

    /* Theme Colors */
    --jade: #A8D5BA;
    --moss: #8B9A46;
    --fern: #4A7043;
    --earth: #D4A574;
    --cloud: #E8E5D9;
    
    /* Spacing */
    --radius: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 2.5rem;
    
    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
.text-primary {
    color: var(--primary);
}

.italic {
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 25px 50px -12px rgba(74, 112, 67, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: #3d5c38;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    background-color: #22c35e;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 9999px;
}

.btn-block {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    border-radius: var(--radius-xl);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background-color: rgba(74, 112, 67, 0.1);
    border-radius: 9999px;
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 36rem;
    margin: 0 auto;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5rem 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1594631252845-29fc458695d1?q=80&w=2000');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transform: scale(1.05);
    animation: subtle-zoom 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(253, 252, 248, 0.1) 0%, 
        rgba(253, 252, 248, 0.4) 50%, 
        var(--background) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.header-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.hero-content .badge {
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
    animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-actions i {
    font-size: 1.25rem;
    margin-right: 0.3rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease 1s both;
}

.scroll-line {
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, rgba(74, 112, 67, 0.6), transparent);
}

/* ========================================
   Media Showcase Section
   ======================================== */
.media-showcase {
    padding: 6rem 0;
    background-color: var(--background);
    overflow: hidden;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.media-video {
    position: relative;
    min-height: 400px;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.media-slider {
    position: relative;
    min-height: 400px;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1rem;
}

.media-slider:hover .slider-arrow,
.reviews-slider-wrapper:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: var(--primary);
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    pointer-events: none;
}

.slider-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.slider-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 6rem 0;
    background-color: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
    
    .feature-wide {
        grid-column: span 2;
    }
    
    .feature-tall {
        grid-row: span 2;
    }
}

.feature-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.5s ease;
}
.feature-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.feature-card.bg-jade {
    background-color: rgba(168, 213, 186, 0.1);
}
.feature-card.bg-moss {
    background-color: rgba(139, 154, 70, 0.1);
}
.feature-card.bg-earth {
    background-color: rgba(212, 165, 116, 0.1);
}
.feature-card.bg-cloud {
    background-color: rgba(232, 229, 217, 0.4);
}
.feature-icon {
    width: fit-content;
    padding: 0.65rem 0.85rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1);
}
.feature-icon i {
    color: var(--primary);
}
.feature-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.feature-desc {
    color: var(--muted-foreground);
    line-height: 1.7;
}
.feature-bg-icon {
    font-size: 7rem;
    position: absolute;
    right: -1.8rem;
    bottom: -1.5rem;
    opacity: 0.05;
    transform: scale(1.5);
    transition: opacity 0.5s ease;
}
.feature-card:hover .feature-bg-icon {
    opacity: 0.1;
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews {
    position: relative;
    padding: 6rem 0;
    background-color: rgba(168, 213, 186, 0.05);
    overflow: hidden;
}
.reviews-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.reviews-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.reviews-blob-1 {
    top: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(168, 213, 186, 0.1);
    transform: translate(-50%, -50%);
}
.reviews-blob-2 {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(139, 154, 70, 0.1);
    transform: translate(33%, 33%);
}
.reviews-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-slider-wrapper .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}
.reviews-prev {
    left: 0;
}
.reviews-next {
    right: 0;
}

@media (min-width: 768px) {
    .reviews-prev {
        left: -3rem;
    }
    
    .reviews-next {
        right: -3rem;
    }
}

.reviews-slider {
    overflow: hidden;
    padding: 0.5rem;
}
.reviews-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.review-card {
    flex: 0 0 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 360px;
}
.review-card:hover {
    box-shadow: 0 0 10px rgba(3, 95, 41, 0.25);
}

@media (min-width: 768px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .review-card {
        flex: 0 0 calc(33.333% - 1.334rem);
    }
}

.review-quote {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: rgba(168, 213, 186, 0.1);
    font-size: 3rem;
}
.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
.review-stars i {
    color: var(--primary);
}
.review-text {
    font-size: 1.125rem;
    color: rgba(45, 45, 45, 0.9);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}
.review-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(168, 213, 186, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}
.review-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
}
.review-info p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}
.reviews-dots .dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(168, 213, 186, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.reviews-dots .dot.active {
    width: 2rem;
    background: var(--primary);
}

/* ========================================
   Order Section
   ======================================== */
.order {
    padding: 6rem 0;
    background-color: rgba(74, 112, 67, 0.05);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .order-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.order-product {
    animation: fadeInLeft 0.8s ease both;
}
.product-image-wrapper {
    position: relative;
    margin-bottom: 3rem;
}
.product-glow {
    position: absolute;
    inset: -1rem;
    background: rgba(74, 112, 67, 0.2);
    border-radius: var(--radius-3xl);
    filter: blur(30px);
    transition: all 0.7s ease;
}
.product-image-wrapper:hover .product-glow {
    background: rgba(74, 112, 67, 0.3);
}
.product-image {
    position: relative;
    border-radius: var(--radius-3xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
    transition: transform 0.7s ease;
}
.product-image-wrapper:hover .product-image {
    transform: scale(1.02);
}
.product-details {
    display: flex;
    flex-direction: column;
}
.product-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid rgba(74, 112, 67, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.badge-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(74, 112, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.badge-icon i {
    color: var(--primary);
}
.badge-text h4 {
    font-weight: 700;
}
.badge-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.product-pricing {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 2rem;
}
.product-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}
.product-description {
    color: var(--muted-foreground);
}

/* Order Form Card */
.order-form-card {
    background: white;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(74, 112, 67, 0.1);
    animation: fadeInRight 0.8s ease both;
}
.form-header {
    background: var(--primary);
    padding: 1.5rem 2rem;
    color: var(--primary-foreground);
}
.form-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
}
.form-header p {
    opacity: 0.8;
}
.form-body {
    padding: 2rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 112, 67, 0.1);
}
.form-group textarea {
    min-height: 100px;
    resize: vertical;
}
.required:after {
    content: " *";
    font-size: 0.8rem;
    color: #ff0000;
}

/* Shipping Area Row */
.shipping-area-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.shipping-option {
    flex: 1;
    cursor: pointer;
}
.shipping-option input[type="radio"] {
    display: none;
}
.shipping-option-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-xl);
    border: 1.5px solid rgba(74, 112, 67, 0.18);
    background: rgba(74, 112, 67, 0.04);
    transition: all 0.2s ease;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.shipping-option-box i {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}
.shipping-option-label {
    font-weight: 500;
}
.shipping-option-cost {
    margin-left: auto;
    font-weight: 600;
    font-size: 0.8rem;
    opacity: 0.7;
}
.shipping-option input[type="radio"]:checked + .shipping-option-box {
    border-color: var(--primary);
    background: rgba(74, 112, 67, 0.1);
    color: var(--foreground);
    box-shadow: 0 0 0 1px var(--primary);
}
.shipping-option input[type="radio"]:checked + .shipping-option-box i {
    color: var(--primary);
}
.shipping-option-box:hover {
    border-color: rgba(74, 112, 67, 0.35);
    background: rgba(74, 112, 67, 0.07);
}

@media (max-width: 479px) {
    .shipping-area-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    .shipping-option-box {
        padding: 0.65rem 0.75rem;
        font-size: 0.8125rem;
    }
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(74, 112, 67, 0.05);
    border: 1px solid rgba(74, 112, 67, 0.2);
    border-radius: var(--radius-xl);
}
.payment-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.payment-note {
    font-size: 0.625rem;
    color: var(--muted-foreground);
    font-style: italic;
    margin-top: 0.5rem;
    padding-left: 0.25rem;
}


/* Quantity Controls */
.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 112, 67, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 0.25rem;
}
.quantity-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
}
.quantity-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.quantity-btn:active {
    transform: scale(0.95);
}
.quantity-wrapper input {
    width: 4rem;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.5rem;
}
.quantity-wrapper input:focus {
    outline: none;
    box-shadow: none;
}

/* Order Summary */
.order-summary {
    background: linear-gradient(135deg, rgba(74, 112, 67, 0.05), rgba(74, 112, 67, 0.1));
    border: 1px solid rgba(74, 112, 67, 0.15);
    border-radius: var(--radius-xl);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

.summary-row:not(:last-child) {
    border-bottom: 1px dashed rgba(74, 112, 67, 0.15);
}

.summary-total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.summary-total span:last-child {
    color: var(--primary);
    font-size: 1.25rem;
}


.form-footer-text {
    text-align: center;
    font-size: 0.625rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}
/* Spinner */
.spinner {
    font-size: 1rem;
    color: var(--primary-foreground);
    animation: spin 1s linear infinite;
    margin-right: 0.3rem;
}

/* Success Message */
.success-message {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
}
.success-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    max-width: 500px;
    animation: scaleIn 0.5s ease;
}
.success-content i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.success-content h3 {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.success-content p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.contact-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(74, 112, 67, 0.05);
    opacity: 0.4;
}
.contact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.contact-blob-1 {
    bottom: -6rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    background: rgba(74, 112, 67, 0.1);
}
.contact-blob-2 {
    top: -6rem;
    right: -6rem;
    width: 24rem;
    height: 24rem;
    background: rgba(74, 112, 67, 0.1);
}
.contact-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info .badge {
    margin-bottom: 1.5rem;
}
.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.contact-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-actions i {
    font-size: 1.8rem;
}

@media (min-width: 640px) {
    .contact-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .contact-actions {
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .contact-actions {
        flex-direction: row;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes subtle-zoom {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

/* Scroll Animation Classes */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Delay Classes */
[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}


/* ========================================
   Order Confirmed Page
   ======================================== */
.confirmed-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(160deg, var(--background) 0%, rgba(168, 213, 186, 0.08) 50%, var(--background) 100%);
    overflow: hidden;
}

.confirmed-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.confirmed-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.confirmed-blob-1 {
    top: -8rem;
    left: -4rem;
    width: 20rem;
    height: 20rem;
    background: rgba(168, 213, 186, 0.15);
    animation: float-blob 8s ease-in-out infinite;
}

.confirmed-blob-2 {
    bottom: -6rem;
    right: -6rem;
    width: 24rem;
    height: 24rem;
    background: rgba(74, 112, 67, 0.08);
    animation: float-blob 10s ease-in-out infinite reverse;
}

.confirmed-blob-3 {
    top: 50%;
    left: 50%;
    width: 16rem;
    height: 16rem;
    background: rgba(212, 165, 116, 0.06);
    transform: translate(-50%, -50%);
    animation: float-blob 12s ease-in-out infinite;
}

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

.confirmed-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 640px;
    text-align: center;
    animation: fadeInUp 0.6s ease both;
}

/* Success Icon */
.confirmed-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.confirmed-icon-ring {
    position: absolute;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 10px solid rgba(74, 112, 67, 0.25);
    animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}

.confirmed-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #5a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(74, 112, 67, 0.3);
    animation: icon-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

.confirmed-icon i {
    font-size: 2rem;
    color: white;
}

@keyframes icon-pop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Title */
.confirmed-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.confirmed-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Order Card */
.confirmed-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: left;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.15s both;
}

.confirmed-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(74, 112, 67, 0.04), rgba(168, 213, 186, 0.08));
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.confirmed-order-id span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-bottom: 0.125rem;
}

.confirmed-order-id strong {
    font-size: 1.125rem;
    color: var(--foreground);
}

.confirmed-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(74, 112, 67, 0.08);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
}

.confirmed-status .status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

.confirmed-card-body {
    padding: 1.5rem;
}

/* Info Grid */
.confirmed-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .confirmed-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    .confirmed-info-full {
        grid-column: span 2;
    }
}

.confirmed-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.confirmed-info-icon {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    border-radius: var(--radius);
    background: rgba(74, 112, 67, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmed-info-icon i {
    font-size: 0.8125rem;
    color: var(--primary);
}

.confirmed-info-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-bottom: 0.125rem;
}

.confirmed-info-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground);
    word-break: break-word;
}

/* Divider */
.confirmed-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: 1.5rem 0;
}

/* Product Row */
.confirmed-product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.confirmed-product-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.confirmed-product-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.confirmed-product-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.confirmed-product-info p {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.confirmed-product-total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    white-space: nowrap;
}

/* Summary Rows */
.confirmed-summary-rows {
    background: rgba(74, 112, 67, 0.03);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
}

.confirmed-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.confirmed-summary-row:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.confirmed-summary-total {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--foreground);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.confirmed-summary-total span:last-child {
    color: var(--primary);
    font-size: 1.125rem;
}

/* Note */
.confirmed-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    background: rgba(74, 112, 67, 0.05);
    border: 1px solid rgba(74, 112, 67, 0.1);
    border-radius: var(--radius-xl);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.confirmed-note i {
    color: var(--primary);
    font-size: 1.125rem;
    margin-top: 0.125rem;
}

.confirmed-note p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Actions */
.confirmed-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeInUp 0.6s ease 0.45s both;
}

.confirmed-actions .btn {
    gap: 0.5rem;
}

@media (min-width: 480px) {
    .confirmed-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Responsive adjustments */
@media (max-width: 479px) {
    .confirmed-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .confirmed-product-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .confirmed-product-total {
        align-self: flex-end;
    }
}