/* Global Theme & Reset */
:root {
    --primary: #8b1e22;
    --primary-rgb: 139, 30, 34;
    --primary-light: #ab252a;
    --secondary: #f5b016;
    --secondary-light: #f7bf43;
    --whatsapp-green: #25d366;
    --bg-warm: #fcf9f2;
    --bg-card: #ffffff;
    --text-dark: #1e1e1e;
    --text-muted: #5a5a5a;
    --text-white: #ffffff;
    --glass-border: rgba(139, 30, 34, 0.12);
    --shadow-premium: 0 15px 35px rgba(139, 30, 34, 0.06), 0 5px 15px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 25px 50px rgba(139, 30, 34, 0.12), 0 10px 25px rgba(0, 0, 0, 0.04);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Parallax & Spice Particles */
.spices-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.spice-particle {
    position: absolute;
    opacity: 0.12;
    transform-origin: center;
    transition: transform 0.25s ease-out;
}

/* Header & Logo */
.main-header {
    width: 100%;
    padding: 3rem 1rem 1.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: relative;
}

.logo-container {
    max-width: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.official-logo {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(139, 30, 34, 0.15);
    transition: var(--transition-smooth);
}

.official-logo:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 32px rgba(139, 30, 34, 0.22);
}

/* Content Container */
.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 5rem 1.5rem;
    z-index: 10;
    position: relative;
}

/* Divider Line with Interlocking Gears */
.divider-line-container {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}

.horizontal-divider {
    flex-grow: 1;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.interlocking-gears {
    position: absolute;
    right: 8%;
    background-color: var(--bg-warm);
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.gear-large {
    width: 34px;
    height: 34px;
    animation: spinClockwise 12s infinite linear;
}

.gear-small {
    width: 24px;
    height: 24px;
    margin-left: -5px;
    margin-top: 8px;
    animation: spinCounterClockwise 8s infinite linear;
}

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

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

/* Exact Maintenance Banner */
.exact-maintenance-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3.5rem;
}

.exact-banner-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    margin-bottom: 1.5rem;
}

.crossed-tools-circle {
    width: 82px;
    height: 82px;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 12px rgba(139, 30, 34, 0.2));
    transition: var(--transition-smooth);
}

.crossed-tools-circle:hover {
    transform: rotate(15deg) scale(1.05);
}

.banner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.exact-banner-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
}

.text-website {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.text-maintenance {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.exact-banner-subtitle {
    max-width: 780px;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
}

.exact-highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Maintenance Details Row: Red Box & Yellow Sign */
.exact-details-section {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.days-red-box {
    background-color: var(--primary);
    border-radius: 18px;
    padding: 2.2rem 2.5rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 12px 30px rgba(139, 30, 34, 0.15);
    transition: var(--transition-smooth);
}

.days-red-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(139, 30, 34, 0.22);
}

.days-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.days-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.days-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.95;
}

.days-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin: 0.15rem 0;
}

.days-footer-text {
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Yellow Road Sign (Diamond Shape) */
.yellow-road-sign {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.diamond-background {
    width: 155px;
    height: 155px;
    background-color: var(--secondary);
    border: 4.5px solid var(--text-dark);
    transform: rotate(45deg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.yellow-road-sign:hover .diamond-background {
    transform: rotate(45deg) scale(1.05) translateZ(10px);
    box-shadow: 0 12px 28px rgba(245, 176, 22, 0.3);
}

.diamond-border {
    transform: rotate(-45deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    text-align: center;
}

.worker-sign-svg {
    width: 58px;
    height: 58px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

.sign-caption {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* Live Countdown section (Gourmet overlay) */
.live-countdown-section {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.2rem;
    margin-bottom: 3.5rem;
}

.countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.live-badge {
    background-color: rgba(139, 30, 34, 0.06);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 0.4rem 1rem;
    border-radius: 30px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
}

.timer-unit {
    background-color: var(--bg-warm);
    border: 1px solid rgba(139, 30, 34, 0.08);
    border-radius: 12px;
    padding: 0.9rem 0.5rem;
    flex: 1;
    text-align: center;
    transition: var(--transition-smooth);
}

.timer-unit:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.timer-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.timer-unit label {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.countdown-progress {
    width: 100%;
    max-width: 500px;
    margin-top: 0.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.progress-info strong {
    color: var(--primary);
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #eee8da;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

/* Exact WhatsApp Row */
.exact-whatsapp-row {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.2rem 2.5rem;
    margin-bottom: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.whatsapp-left {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.whatsapp-circle-logo {
    width: 76px;
    height: 76px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}

.whatsapp-headline-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.reach-us-on {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

.reach-us-whatsapp {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1px;
    margin: 0.1rem 0;
}

.reach-us-orders {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

.whatsapp-right {
    flex-shrink: 0;
}

.exact-wa-number-badge {
    background: var(--bg-card);
    border: 2px solid var(--whatsapp-green);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 290px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
}

.exact-wa-badge-header {
    background-color: var(--primary);
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.exact-wa-badge-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 1.5rem;
}

.exact-phone-digits {
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.exact-wa-number-badge:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.15);
}

.exact-wa-number-badge:hover .exact-wa-badge-header {
    background-color: var(--whatsapp-green);
}

/* Products Section */
.products-section {
    margin-bottom: 5.5rem;
}

.section-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
}

.script-title {
    font-family: 'Caveat', cursive;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.pulsing-heart {
    animation: heartbeat 1.5s infinite;
    transform-origin: center;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem;
    position: relative;
}

/* 3D Wooden Shelf Plinth under card grid to match image table context */
.products-grid::after {
    content: '';
    grid-column: span 3;
    height: 18px;
    background: linear-gradient(to bottom, #d2bd9b 0%, #b2946c 40%, #7e6341 100%);
    border-top: 1px solid #e5d7bd;
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    margin-top: -10px;
    z-index: 1;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    z-index: 2;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.75rem;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    width: 100%;
    height: 270px;
    background-color: #f7f3e8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transform: translateZ(20px);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-meta {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    transform: translateZ(30px);
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.weight-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.weight-tags span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid rgba(139, 30, 34, 0.12);
    padding: 0.2rem 0.55rem;
    border-radius: 30px;
    background: var(--bg-warm);
}

.order-btn {
    width: 100%;
    background: var(--primary);
    color: var(--text-white);
    text-decoration: none;
    text-align: center;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(139, 30, 34, 0.12);
}

.order-btn:hover {
    background: var(--secondary);
    color: var(--text-dark);
    box-shadow: 0 8px 18px rgba(245, 176, 22, 0.35);
}

.order-btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

/* Trust Badges Strip (Solid Red/Brown Strip matching image) */
.trust-badges-section {
    background-color: var(--primary);
    border-radius: 16px;
    padding: 2.2rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 25px rgba(139, 30, 34, 0.12);
    color: var(--text-white);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    justify-content: center;
}

.badge-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 2rem;
}

.badge-icon-wrapper {
    color: var(--secondary);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.badge-item:hover .badge-icon-wrapper {
    background-color: var(--secondary);
    color: var(--primary);
    transform: scale(1.08) rotate(5deg);
}

.badge-text h4 {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 0.15rem;
}

.badge-text p {
    font-size: 0.8rem;
    opacity: 0.85;
}

/* Footer Section */
.main-footer {
    background-color: #22080a;
    color: var(--text-white);
    padding: 4.5rem 1rem 3.5rem 1rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.2rem;
}

.footer-domain a {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
}

.footer-domain a:hover {
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(245, 176, 22, 0.6);
}

.footer-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.85;
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 0.25rem 0.5rem;
}

.contact-link:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateY(-2px);
}

.contact-link svg {
    color: var(--secondary);
}

.divider {
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
}

.thank-you-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.script-footer {
    font-family: 'Caveat', cursive;
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffd885;
}

.beating-heart {
    animation: heartbeat 1.5s infinite;
    transform-origin: center;
}

/* Animations */
.animate-pulse {
    animation: pulseIcon 2s infinite;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }
    
    .products-grid::after {
        grid-column: span 2;
    }
    
    .exact-details-section {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .text-website, .text-maintenance {
        font-size: 2.2rem;
    }
    
    .exact-banner-title {
        flex-direction: column;
        gap: 1rem;
    }
    
    .exact-banner-text {
        align-items: center;
    }
    
    .exact-details-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .exact-whatsapp-row {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .whatsapp-left {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badges-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .badge-item {
        justify-content: flex-start;
        padding-bottom: 1.5rem;
    }
    
    .badge-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-right: 0;
    }
    
    .footer-contacts {
        flex-direction: column;
        gap: 1rem;
    }
    
    .divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .days-red-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid::after {
        grid-column: span 1;
    }
    
    .timer-display {
        gap: 0.5rem;
    }
    
    .timer-unit span {
        font-size: 1.5rem;
    }
    
    .exact-phone-digits {
        font-size: 1.6rem;
    }
    
    .exact-wa-number-badge {
        min-width: 100%;
    }
    
    .script-title {
        font-size: 3rem;
    }
    
    .text-website, .text-maintenance {
        font-size: 1.8rem;
    }
}
