/*
Theme Name: Waookytchen
Theme URI: https://waookytchen.site
Author: Antigravity
Author URI: https://waookytchen.site
Description: A premium, artisanal e-commerce theme for ghee, honey, and organic products. Built with WooCommerce support.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: waookytchen
Tags: e-commerce, two-columns, custom-header, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/

/* --- Design System --- */
:root {
    --primary-color: #D97706;
    /* Amber */
    --primary-light: #FBBF24;
    --primary-dark: #B45309;
    --secondary-color: #064E3B;
    /* Forest Green */
    --accent-color: #FFB800;
    /* Gold */
    --bg-color: #FFFFFF;
    /* Pure White */
    --text-color: #1F2937;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 12px;
    --container: 1200px;
    --font-body: 'Figtree', sans-serif;
    --font-heading: 'Roboto Slab', serif;
}

/* --- Base Styles --- */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Force White Background on Product Pages */
.single-product {
    background-color: #ffffff !important;
}

.single-product .site-content {
    background-color: #ffffff !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Header & Navigation --- */
.announcement-bar {
    background: #064E3B;
    /* Deep Forest Green */
    color: #FFB800;
    /* Gold */
    text-align: center;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.site-branding {
    flex-shrink: 0;
}

.site-logo img,
.custom-logo-link img {
    max-height: 60px;
    /* Slightly increased size */
    width: auto;
    display: block;
}

.header-search {
    flex: 1;
    max-width: 450px;
    position: relative;
}

.header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

/* Header Icons */
.header-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
    text-decoration: none;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.section-dark {
    background: var(--secondary-color);
    color: white;
}

.page-header {
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.page-header h1.page-title {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Hide Redundant Content Title on WC Pages */
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-account .entry-title {
    display: none;
}

.header-icon-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

.header-icon-link i {
    font-size: 22px;
    color: var(--text-color);
}

/* Navigation in Header */
.header-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-list li a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-nav-list li a:hover {
    color: var(--primary-color);
}

/* Search Bar in Header */
.header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search form {
    display: flex;
    background: transparent;
    align-items: center;
    position: relative;
}

.search-input-collapsed {
    width: 0;
    padding: 0;
    border: none;
    background: transparent;
    transition: width 0.3s ease, padding 0.3s ease, background 0.3s ease;
    outline: none;
    font-size: 0.9rem;
    position: absolute;
    right: 0;
    border-radius: 20px;
    z-index: 1;
    opacity: 0;
}

.header-search:hover .search-input-collapsed,
.search-input-collapsed:focus {
    width: 250px;
    padding: 8px 15px;
    padding-right: 40px;
    background: #f3f4f6;
    opacity: 1;
}

.search-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
}
.search-icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}
.search-icon-btn i {
    font-size: 22px;
    color: var(--text-color);
}

#waookytchen-search-results {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.3);
}

.search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-result-item a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    gap: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s ease;
}

.search-result-item:last-child a {
    border-bottom: none;
}

.search-result-item a:hover {
    background: rgba(0,0,0,0.02);
}

.result-thumb {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
}

.result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.result-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.result-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
}

.search-loader, .no-results, .search-error {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}

/* --- Select Variant Tiles (Anveshan Style) --- */
.waookytchen-variation-selector {
    margin: 2rem 0;
    text-align: left;
}

.waookytchen-variation-selector h4 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.variation-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.variation-tile {
    cursor: pointer;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
    background: #f9fafb;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.variation-tile:hover {
    border-color: var(--primary-color);
    background: #fff;
}

.variation-tile.active {
    border-color: var(--secondary-color);
    border-width: 2px;
    background: #f0fdf4; /* Very light green */
    box-shadow: 0 4px 12px rgba(6, 78, 59, 0.1);
}

.tile-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    display: block;
    margin-bottom: 4px;
}

.tile-price {
    display: flex;
    flex-direction: column;
}

.tile-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tile-current-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-color);
}

.tile-old-price {
    font-size: 0.75rem;
    text-decoration: line-through;
    color: #9ca3af;
}

.tile-discount-tag {
    font-size: 0.7rem;
    color: #ef4444;
    font-weight: 700;
    margin-top: 2px;
}

/* Hide Default WooCommerce Variation Dropdowns */
.single-product .variations {
    display: none !important;
}

@media (max-width: 480px) {
    .variation-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* --- Product Gallery Refinement --- */
.woocommerce-product-gallery {
    position: relative !important;
}

/* Hide navigation arrows by default, show on hover */
.flex-direction-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.flex-direction-nav a {
    position: absolute;
    top: 40%; /* Above the thumbnails */
    transform: translateY(-50%);
    z-index: 50;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none !important;
    font-size: 0 !important; /* Hide "Next"/"Previous" text */
    line-height: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    cursor: pointer;
}

.woocommerce-product-gallery:hover .flex-direction-nav a {
    opacity: 1;
}

.flex-direction-nav a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.flex-nav-prev a { left: 15px; }
.flex-nav-next a { right: 15px; }

/* Modern Minimalist Arrows (SVGs in CSS) */
.flex-nav-prev a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 4px;
}

.flex-nav-next a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 4px;
}

/* --- Thumbnail Carousel (Fixes the "All Images Displaying" issue) --- */
.flex-control-thumbs {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    gap: 12px !important;
    padding: 15px 5px !important;
    margin: 0 !important;
    list-style: none !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.flex-control-thumbs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.flex-control-thumbs li {
    flex: 0 0 75px !important; /* Fixed width for thumbnails */
    width: 75px !important;
    margin: 0 !important;
    float: none !important;
}

.flex-control-thumbs li img {
    border-radius: 8px !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease;
    opacity: 0.6;
    cursor: pointer;
    width: 100% !important;
    height: 75px !important; /* Fixed height match */
    object-fit: cover !important;
}

.flex-control-thumbs li img.flex-active,
.flex-control-thumbs li img:hover {
    border-color: var(--secondary-color) !important;
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .flex-direction-nav a {
        opacity: 1; /* Always show arrows on mobile */
        width: 35px;
        height: 35px;
    }
}

/* --- Category Navigation Showcase --- */
.category-showcase {
    background: #fff;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.category-nav-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.category-nav-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-nav-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.category-nav-list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem 1rem;
    border-bottom: 3px solid transparent;
}

.cat-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 0.8rem;
    color: #333;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-icon svg {
    width: 100%;
    height: 100%;
}

.cat-name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--secondary-color);
}

/* Hover/Active State */
.category-nav-list li a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.category-nav-list li a:hover .cat-icon {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .category-nav-list {
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 2rem;
    }
}

/* --- WooCommerce Product Grid (Anveshan style) --- */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Fix for CSS Grid 'empty first slot' bug caused by clearfix pseudo-elements */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
    content: none !important;
}

.woocommerce ul.products li.product {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    padding: 0 !important;
    text-align: left !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important; /* Force grid-aware width */
    float: none !important; /* Break legacy floats */
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Image Container & Badges */
.woocommerce ul.products li.product a img {
    margin: 0 !important;
    border-radius: 15px 15px 0 0;
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
}

/* Single Badge System - All badges positioned top-right */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Badge Variants - Class names match PHP */
.badge-new {
    background: linear-gradient(135deg, #FFB800, #F59E0B);
    color: #fff;
}

.badge-sale {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: #fff;
    animation: pulse-sale 2s ease-in-out infinite;
}

@keyframes pulse-sale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-bestseller {
    background: linear-gradient(135deg, #064E3B, #047857);
    color: #fff;
}

.badge-trending {
    background: linear-gradient(135deg, #EC4899, #DB2777);
    color: #fff;
}

.badge-backinstock {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #fff;
}

.badge-limited-edition {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: #fff;
}

.badge-staff-pick {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
}

.badge-bundle-save {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
}

.badge-free-shipping {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    color: #fff;
}

.badge-final-sale {
    background: linear-gradient(135deg, #6B7280, #4B5563);
    color: #fff;
}

/* Floating ADD Button */
.product-add-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.product-add-overlay .button {
    background: #1a4a3a !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Product Content */
.product-info-wrap {
    padding: 1rem 1.2rem; /* Reduced from 1.5rem */
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-height: 120px !important; /* Reduced from 180px */
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem !important; /* Slightly smaller */
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 0.3rem !important; /* Reduced margin */
    line-height: 1.2 !important;
    padding: 0 !important;
}

.star-rating {
    font-size: 0.85rem !important;
    margin: 0.5rem 0 0.8rem !important;
    color: #FFB800 !important;
}

.woocommerce ul.products li.product .price {
    font-size: 1.2rem !important;
    color: #1a1a1a !important;
    font-weight: 800 !important;
    margin-bottom: 0.8rem !important;
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
}

.woocommerce ul.products li.product .price del {
    font-size: 0.9rem !important;
    color: #999 !important;
    font-weight: 400 !important;
}

/* bottom row proof */
.product-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.social-proof {
    background: #fff5f2;
    color: #ff4d4d;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.best-price-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    padding: 1.5rem 0;
    /* Ultra-slim height */
    text-align: left;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.5) 100%), url('assets/images/final-hero.jpg') no-repeat center center;
    background-size: cover;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 800;
    /* 3D Effect */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1),
        5px 5px 15px rgba(0, 0, 0, 0.05);
    animation: float3D 6s ease-in-out infinite;
    perspective: 1000px;
}

@keyframes float3D {

    0%,
    100% {
        transform: translateY(0) scale(1) rotateY(0deg);
    }

    50% {
        transform: translateY(-10px) scale(1.02) rotateY(2deg);
    }
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 0 1.5rem;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .btn {
    background: #FFB800;
    /* Gold */
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.1rem 3rem;
    border: none;
    font-weight: 700;
    color: #064E3B;
}

.hero .btn:hover {
    background: #E5A600;
    transform: translateY(-3px);
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}


/* --- Footer --- */
.site-footer {
    padding: 4rem 0 2rem;
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5rem;
}

/* --- Shipping Trust Box --- */
.shipping-trust-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px dashed #2e7d32;
    border-radius: 12px;
    text-align: center;
}

.shipping-trust-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.shipping-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.8;
}

.shipping-item {
    font-size: 0.75rem;
    font-weight: 600;
    color: #444;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.shipping-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.cod-badge {
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2e7d32;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Product Grid - Mobile: 2 columns */
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-info-wrap {
        min-height: 150px !important;
        padding: 1rem !important;
    }
}

@media (max-width: 480px) {
    /* Product Grid - Small Mobile: 1 column */
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Product Grid - Tablet: 3 columns */
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* --- Product Page Refinements --- */
.single-product .price, 
.single-product .price ins, 
.single-product .price .woocommerce-Price-amount,
.single-product .price bdi {
    color: #000000 !important;
    font-weight: 800 !important;
    font-size: 2rem !important;
}

.single-product .price del, 
.single-product .price del .woocommerce-Price-amount,
.single-product .price del bdi {
    color: #999 !important;
    font-weight: 400 !important;
    font-size: 1.1rem !important;
}

/* Title & Share Wrap */
.waookytchen-title-share-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.waookytchen-title-share-wrap .product_title {
    margin: 0 !important;
    flex: 1;
}

/* ── Cart Form Layout ─────────────────────── */
form.cart {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

/* ── Quantity Selector ─────────────────────── */
.quantity {
    display: inline-flex !important;
    align-items: center !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 50px !important;
    width: auto !important;
    height: 56px !important;
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    transition: border-color 0.25s ease !important;
}

.quantity:focus-within {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(6,78,59,0.08) !important;
}

.quantity input.qty {
    width: 36px !important;
    height: 100% !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #111 !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 36px !important;
    outline: none !important;
    font-family: var(--font-body) !important;
}

.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
    display: none !important;
}

.qty-btn {
    width: 44px !important;
    height: 100% !important;
    min-width: 44px !important;
    border: none !important;
    background: transparent !important;
    font-size: 1.1rem !important;
    font-weight: 300 !important;
    color: #444 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: background 0.2s ease, color 0.2s ease !important;
    line-height: 1 !important;
    user-select: none !important;
}

.qty-btn.minus {
    border-right: 1.5px solid #e0e0e0 !important;
    border-radius: 50px 0 0 50px !important;
}

.qty-btn.plus {
    border-left: 1.5px solid #e0e0e0 !important;
    border-radius: 0 50px 50px 0 !important;
}

.qty-btn:hover {
    background: #f4f4f4 !important;
    color: #111 !important;
}

.qty-btn:active {
    background: #e8e8e8 !important;
    transform: scale(0.95) !important;
}

/* ── Add to Cart Button ────────────────────── */
.single-product .button.single_add_to_cart_button,
.single-product .single_add_to_cart_button {
    background: var(--secondary-color) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    height: 56px !important;
    padding: 0 2.5rem !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
    box-shadow: 0 4px 14px rgba(6,78,59,0.25) !important;
    white-space: nowrap !important;
    flex: 1 !important;
}

.single-product .button.single_add_to_cart_button:hover,
.single-product .single_add_to_cart_button:hover {
    background: #043d2f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(6,78,59,0.3) !important;
}

.single-product .button.single_add_to_cart_button:active,
.single-product .single_add_to_cart_button:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(6,78,59,0.2) !important;
}

/* Share Button Style */
.waookytchen-share-btn {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    color: var(--text-color) !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

.waookytchen-share-btn:hover {
    background: #fff !important;
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    transform: translateY(-1px);
}

/* ============================================
   PRODUCT PAGE ENHANCEMENTS
   ============================================ */

/* --- Product Highlights List --- */
.waookytchen-highlights {
    margin: 1.5rem 0;
    padding: 1.2rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 12px 12px 0;
}

.highlights-title {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 0.8rem !important;
}

.highlights-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlights-list li {
    font-size: 0.92rem;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

/* --- Delivery Strip --- */
.waookytchen-delivery-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    margin-top: 1.2rem;
    padding: 0.9rem 1.2rem;
    background: #fff8e7;
    border: 1px solid #fbbf24;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.waookytchen-delivery-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 80%
    );
    animation: shimmer-sweep 3s ease-in-out infinite;
    pointer-events: none;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #92400e;
}

.delivery-item svg {
    flex-shrink: 0;
    color: var(--primary-dark);
}

/* --- Trust Badges Row --- */
.waookytchen-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.trust-badge {
    flex: 1;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0.8rem 0.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    transition: all 0.25s ease;
}

.trust-badge:hover {
    border-color: var(--secondary-color);
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6,78,59,0.08);
}

.trust-badge-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.trust-badge-text {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.trust-badge-text span {
    color: var(--secondary-color);
}

/* --- Why Choose Us Grid --- */
.waookytchen-why-us {
    clear: both;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: #fafaf9;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    text-align: center;
}

.why-us-title {
    font-size: 1.6rem !important;
    color: var(--secondary-color) !important;
    margin-bottom: 2rem !important;
    font-weight: 800 !important;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-us-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(6,78,59,0.08);
}

.why-us-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.why-us-card h3 {
    color: var(--secondary-color) !important;
    font-size: 1rem !important;
    margin: 0 0 0.5rem !important;
    font-weight: 700 !important;
}

.why-us-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

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

    .waookytchen-trust-badges {
        gap: 0.5rem;
    }

    .trust-badge {
        min-width: 60px;
        padding: 0.7rem 0.4rem;
    }

    .waookytchen-delivery-strip {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

/* ============================================
   SHIMMER / SHINE EFFECTS
   ============================================ */

/* Sweeping shimmer keyframe */
@keyframes shimmer-sweep {
    0%   { left: -100%; }
    50%  { left: 130%; }
    100% { left: 130%; }
}

/* Shine pulse keyframe (for badges + button) */
@keyframes shine-pulse {
    0%   { left: -120%; }
    40%  { left: 130%; }
    100% { left: 130%; }
}

/* --- Trust Badge Shine on Hover --- */
.trust-badge {
    overflow: hidden;
}

.trust-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 80%
    );
    pointer-events: none;
    transition: none;
}

.trust-badge:hover::after {
    animation: shine-pulse 0.55s ease forwards;
}

/* --- Add to Cart Button Shimmer --- */
.single-product .button.single_add_to_cart_button {
    position: relative;
    overflow: hidden;
}

.single-product .button.single_add_to_cart_button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 80%
    );
    animation: shine-pulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

/* --- Highlights Box Shimmer Border --- */
.waookytchen-highlights {
    background-size: 200% 100%;
    animation: highlight-border-glow 4s ease-in-out infinite alternate;
}


@keyframes highlight-border-glow {
    0%   { border-left-color: var(--secondary-color); }
    50%  { border-left-color: #FFB800; }
    100% { border-left-color: var(--secondary-color); }
}

/* ============================================
   PINCODE DELIVERY CHECKER
   ============================================ */

.waookytchen-pincode-checker {
    margin: 1.2rem 0;
    padding: 1.1rem 1.3rem;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    transition: border-color 0.25s ease;
}

.waookytchen-pincode-checker:focus-within {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(6,78,59,0.07);
}

.pincode-header {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.75rem;
}

.pincode-header svg {
    flex-shrink: 0;
}

.pincode-input-row {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.pincode-input {
    flex: 1;
    height: 44px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-color);
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    letter-spacing: 2px;
}

.pincode-input::placeholder {
    letter-spacing: 0;
    font-weight: 400;
    color: #b0b0b0;
    font-size: 0.85rem;
}

.pincode-input:focus {
    border-color: var(--secondary-color);
    background: #fff;
}

.pincode-btn {
    height: 44px;
    padding: 0 1.3rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.pincode-btn:hover {
    background: #043d2f;
    box-shadow: 0 4px 12px rgba(6,78,59,0.25);
    transform: translateY(-1px);
}

.pincode-btn:active {
    transform: translateY(0);
}

.pincode-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Result Area */
.pincode-result {
    display: none;
    margin-top: 0.8rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
    align-items: flex-start;
    gap: 0.6rem;
    animation: pincode-slide-in 0.3s ease;
}

.pincode-result--visible {
    display: flex;
}

.pincode-result--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.pincode-result--error {
    background: #fff5f5;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.pincode-tick {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pincode-msg strong {
    font-weight: 700;
}

.pincode-msg em {
    font-style: normal;
    font-weight: 600;
}

.pincode-eta {
    display: block;
    font-size: 0.78rem;
    margin-top: 2px;
    opacity: 0.8;
}

@keyframes pincode-slide-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .pincode-btn {
        padding: 0 1rem;
        font-size: 0.78rem;
    }
}

/* Hero Banner Full */
.hero-banner-full {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f4f4f4;
}

.hero-banner-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .hero-banner-img {
        height: 350px;
    }
}
@media (max-width: 480px) {
    .hero-banner-img {
        height: 250px;
    }
}
