/* ==========================================================
   eStove Theme Custom Stylesheet
   ========================================================== */

/* --- LUCIDE SVG INTEGRATION --- */
svg.lucide {
    display: inline-block;
    vertical-align: middle;
    stroke-width: 2px;
    width: 18px;
    height: 18px;
}

.top-hotline-bar svg.lucide {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.info-item svg.lucide {
    width: 28px;
    height: 28px;
    stroke-width: 1.75px;
    color: var(--primary-red);
}

.cart-icon-wrapper svg.lucide {
    width: 22px;
    height: 22px;
    color: var(--dark-charcoal);
}

.nav-menu-list svg.lucide {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.trust-icon svg.lucide {
    width: 32px;
    height: 32px;
    stroke-width: 1.5px;
    color: var(--primary-red);
}

.contact-info-list svg.lucide {
    width: 16px;
    height: 16px;
    color: var(--primary-red);
    margin-right: 8px;
}

.footer-links-list svg.lucide {
    width: 12px;
    height: 12px;
    margin-right: 6px;
    color: var(--primary-red);
}

.mobile-sticky-order-bar svg.lucide {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.scroll-to-top svg.lucide {
    width: 20px;
    height: 20px;
    color: var(--pure-white);
}

/* --- TOP HOTLINE BAR --- */
.top-hotline-bar {
    background-color: var(--primary-red);
    color: var(--pure-white);
    padding: 8px 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 2px solid var(--orange-flame);
}

.top-hotline-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.top-hotline-content a {
    color: var(--pure-white);
    font-weight: 700;
    text-decoration: underline;
}

/* --- MAIN HEADER --- */
.site-header {
    background-color: var(--pure-white);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-left,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-right {
    justify-content: flex-end;
    gap: 25px;
}

.header-logo {
    text-align: center;
}

.site-header .header-logo img.estove-main-logo,
.site-header .header-logo .custom-logo-link img.estove-main-logo {
    height: 55px !important;
    width: auto !important;
    max-height: 55px !important;
    object-fit: contain !important;
    transition: var(--transition-smooth);
}

.site-header .header-logo img.estove-main-logo:hover {
    transform: scale(1.05);
}

/* Info Item */
.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.info-title {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--deep-black);
}

.info-desc {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

/* Lang Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    padding: 3px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    color: #555;
    transition: var(--transition-smooth);
}

.lang-item:hover {
    color: var(--primary-red);
}

.lang-item.active {
    background: var(--pure-white);
    color: var(--deep-black);
    box-shadow: var(--shadow-sm);
}

.lang-item img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Cart Button */
.header-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    padding: 8px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    transition: var(--transition-smooth);
}

.header-cart:hover {
    border-color: var(--primary-red);
    background: #FFF5F5;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--primary-red);
    color: var(--pure-white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-amount {
    display: none;
}

/* --- NAVIGATION MENU --- */
.main-navigation {
    background-color: var(--dark-charcoal);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--pure-white);
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.nav-menu-list {
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: center;
}

.nav-menu-list li {
    position: relative;
}

.nav-menu-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11.5px 18px 8.5px;
    color: var(--pure-white);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 3px solid transparent;
}

.nav-menu-list a:hover,
.nav-menu-list li.current-menu-item a {
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom-color: var(--primary-red);
}

.nav-order-btn {
    background-color: var(--primary-red);
    color: var(--pure-white) !important;
    position: relative;
    overflow: hidden;
    border-bottom: none !important;
    padding: 11.5px 24px !important;
}

.nav-order-btn:hover {
    background-color: #d61c18 !important;
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, #1A2022 0%, #2A3538 100%);
    color: var(--pure-white);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(250, 103, 5, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-tagline {
    background: rgba(242, 37, 32, 0.15);
    border: 1px solid rgba(242, 37, 32, 0.3);
    color: #FF8F8D;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-tagline i {
    color: var(--orange-flame);
}

.hero-title {
    font-size: 3rem;
    color: var(--pure-white);
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.15rem;
    color: #CBD5E1;
    margin-bottom: 35px;
    max-width: 650px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-badge-item i {
    color: var(--orange-flame);
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stove-img {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    border-radius: 12px;
}

.hero-sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--orange-flame);
    color: var(--pure-white);
    padding: 15px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    box-shadow: 0 5px 15px rgba(250, 103, 5, 0.4);
    animation: flamePulse 2s infinite ease-in-out;
}

.hero-sale-badge span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* --- KEY BENEFITS SECTION --- */
.section-padding {
    padding: 80px 0;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-subtitle {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

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

.benefit-card {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-bottom: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--orange-flame);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FFF5F5;
    color: var(--primary-red);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--primary-red);
    color: var(--pure-white);
    transform: rotateY(180deg);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #555;
    font-size: 0.95rem;
}

/* --- VIDEO DEMO SECTION --- */
.video-section {
    background: #1A2022;
    color: var(--pure-white);
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    border: 3px solid #2A3538;
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- PRODUCT OPTIONS GRID --- */
.products-section {
    background: #F1F5F9;
}

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

.product-card-custom {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(242, 37, 32, 0.2);
}

.product-badge-custom {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: var(--pure-white);
    padding: 6px 12px;
    font-weight: 700;
    border-radius: 4px;
    font-size: 0.85rem;
    z-index: 10;
}

.product-image-container {
    background: #f8fafc;
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.product-image-container img {
    height: 220px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

.product-content-custom {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title-custom {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--deep-black);
}

.product-features-list {
    list-style: none;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #4A5568;
}

.product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.product-features-list li i {
    color: #38A169;
    margin-top: 4px;
}

.product-price-box {
    margin-top: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-regular {
    color: #A0AEC0;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-sale {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: 800;
}

/* --- REVIEWS SECTION --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--pure-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.review-stars {
    color: #FFC107;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    color: #4A5568;
    margin-bottom: 25px;
    font-style: italic;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.8rem;
    color: #718096;
}

.quote-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 2.5rem;
    color: rgba(242, 37, 32, 0.06);
    pointer-events: none;
}

/* --- ONE-PAGE QUICK CHECKOUT ORDER SECTION --- */
.order-section {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFDFD 100%);
    border-top: 2px solid rgba(242, 37, 32, 0.08);
}

.order-card-container {
    background: var(--pure-white);
    border-radius: 16px;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(242, 37, 32, 0.1);
}

.order-card-header {
    background: var(--dark-charcoal);
    color: var(--pure-white);
    padding: 25px 30px;
    text-align: center;
    position: relative;
}

.order-card-header h2 {
    color: var(--pure-white);
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.order-card-header p {
    color: #CBD5E1;
    font-size: 0.95rem;
}

.order-card-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: var(--dark-charcoal);
}

.order-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
}

.order-form-pane {
    padding: 40px;
    border-right: 1px solid var(--border-color);
}

.order-summary-pane {
    padding: 40px;
    background: #FAF8F8;
    display: flex;
    flex-direction: column;
}

/* Form inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--dark-charcoal);
}

.form-group label span {
    color: var(--primary-red);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--light-gray);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--pure-white);
    box-shadow: 0 0 0 3px rgba(242, 37, 32, 0.15);
}

textarea.form-input {
    resize: vertical;
    min-height: 90px;
}

/* Radios for product selection and delivery */
.delivery-options,
.product-select-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-card {
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    background: var(--light-gray);
}

.radio-card:hover {
    border-color: rgba(242, 37, 32, 0.4);
}

.radio-card.selected {
    border-color: var(--primary-red);
    background: #FFF5F5;
}

.radio-card input[type="radio"] {
    accent-color: var(--primary-red);
    width: 18px;
    height: 18px;
}

.radio-label-text {
    font-weight: 700;
    font-size: 0.95rem;
}

.radio-subtext {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
    margin-top: 2px;
}

/* Order Summary Box */
.summary-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1.5px dashed var(--border-color);
}

.summary-product-item {
    background: var(--pure-white);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.summary-prod-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: var(--light-gray);
    padding: 5px;
    border-radius: 4px;
}

.summary-prod-details h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.summary-prod-details span {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.05rem;
}

.summary-cost-list {
    list-style: none;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-cost-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #555;
}

.summary-cost-item.total {
    border-top: 1.5px dashed var(--border-color);
    padding-top: 15px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--deep-black);
}

.summary-cost-item.total .price-amount {
    color: var(--primary-red);
}

.order-guarantee-badge {
    background: #EDF2F7;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: #4A5568;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #E2E8F0;
}

.order-guarantee-badge i {
    color: #38A169;
    font-size: 1.2rem;
}

/* AJAX Response Message */
.order-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.order-message.success {
    background: #C6F6D5;
    color: #22543D;
    border: 1px solid #9AE6B4;
    display: block;
}

.order-message.error {
    background: #FED7D7;
    color: #742A2A;
    border: 1px solid #FEB2B2;
    display: block;
}

/* Loading Spinner Overlay */
.order-submit-wrapper {
    position: relative;
}

.btn-submit-order {
    background: var(--primary-red);
    color: var(--pure-white);
    border: none;
    font-size: 1.3rem;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(242, 37, 32, 0.2);
    animation: flamePulse 2s infinite ease-in-out;
}

.btn-submit-order:hover {
    background: #d61c18;
    transform: translateY(-2px);
}

.btn-submit-order:disabled {
    background: #CBD5E1;
    cursor: not-allowed;
    animation: none;
}

.spinner-icon {
    display: none;
}

.loading .spinner-icon {
    display: inline-block;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* --- FOOTER MAIN --- */
.site-footer {
    background-color: var(--deep-black);
    color: #94A3B8;
}

.footer-trust-bar {
    background: #1A2022;
    border-bottom: 1px solid #2D3748;
    padding: 30px 0;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trust-container {
        grid-template-columns: 1fr;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    font-size: 2.2rem;
    color: var(--orange-flame);
}

.trust-text h4 {
    color: var(--pure-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.trust-text p {
    font-size: 0.85rem;
}

.footer-main {
    padding: 60px 0 40px 0;
    border-bottom: 1px solid #1E293B;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 60px !important;
    max-height: 60px !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1E293B;
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-link:hover {
    transform: translateY(-3px);
    color: var(--pure-white);
}

.social-link.facebook:hover {
    background-color: #1877F2;
}

.social-link.youtube:hover {
    background-color: #FF0000;
}

.social-link.whatsapp:hover {
    background-color: #25D366;
}

.footer-col h3 {
    color: var(--pure-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #94A3B8;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contact-info-list li i {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-info-list li a {
    color: inherit;
    font-weight: 700;
}

.footer-copyright {
    background: #090D0E;
    padding: 20px 0;
    font-size: 0.85rem;
}

.copyright-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-title {
    font-size: 0.8rem;
    color: #64748B;
}

.payment-methods i {
    font-size: 1.5rem;
    color: #64748B;
}

/* --- MOBILE FLOATING BAR --- */
.mobile-sticky-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pure-white);
    display: none;
    grid-template-columns: 1fr 1.2fr;
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-sticky-call {
    background: var(--dark-charcoal);
    color: var(--pure-white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
}

.mobile-sticky-order {
    background: var(--primary-red);
    color: var(--pure-white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.nav-order-btn::after,
.mobile-sticky-order::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* --- SCROLL TO TOP --- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--orange-flame);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

/* ==========================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================== */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-desc {
        margin: 0 auto 30px auto;
    }

    .hero-badges,
    .hero-cta {
        justify-content: center;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-stove-img {
        max-width: 320px;
    }

    .order-grid {
        grid-template-columns: 1fr;
    }

    .order-form-pane {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 30px;
    }

    .order-summary-pane {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .top-hotline-bar {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .top-hotline-content {
        display: block;
        text-align: center;
        line-height: 1.6;
    }

    .top-hotline-content svg.lucide {
        display: inline-block !important;
        vertical-align: -2px;
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }

    .site-header {
        padding: 8px 0;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        gap: 10px;
    }

    .header-left {
        display: none;
        /* Hide working hours on small devices to keep clean logo */
    }

    .header-logo {
        text-align: left;
        flex: 1;
        display: flex;
        align-items: center;
    }

    .site-header .header-logo img.estove-main-logo,
    .site-header .header-logo .custom-logo-link img.estove-main-logo {
        height: 38px !important;
        max-height: 38px !important;
    }

    .header-right {
        width: auto;
        margin-top: 0;
        gap: 10px;
        justify-content: flex-end;
    }

    .lang-switcher {
        padding: 2px;
    }

    .lang-item {
        padding: 3px 8px;
        font-size: 0.75rem;
        gap: 4px;
    }

    .lang-item img {
        width: 13px;
        height: 13px;
    }

    .header-cart {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .cart-icon-wrapper svg.lucide {
        width: 18px;
        height: 18px;
    }

    .cart-count {
        top: -10px;
        right: -10px;
        width: 16px;
        height: 16px;
        font-size: 0.7rem;
    }

    .main-navigation {
        display: none !important;
    }

    .drawer-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: var(--dark-charcoal);
        padding: 5px;
        cursor: pointer;
        margin-right: 5px;
    }

    .drawer-toggle-btn svg.lucide {
        width: 24px;
        height: 24px;
        stroke-width: 2.2px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .copyright-container {
        flex-direction: column;
        text-align: center;
    }

    .mobile-sticky-order-bar {
        display: grid;
    }

    body {
        /* Prevent sticky bar overlapping content */
    }

    .scroll-to-top {
        bottom: 75px;
        /* Position above sticky mobile bar */
    }
}

/* --- HERO CAROUSEL --- */
.estove-hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    aspect-ratio: 1920 / 700;
}

@media (max-width: 768px) {
    .estove-hero-carousel {
        aspect-ratio: 16 / 9;
    }
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

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

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: var(--pure-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-red);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

@media (max-width: 768px) {
    .carousel-prev,
    .carousel-next {
        display: none !important;
    }
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* --- HOMEPAGE PRODUCTS SECTION --- */
.home-products-section {
    padding: 35px 0;
    background: #fdfdfd;
}

/* --- PREMIUM SECTION HEADER (HOMEPAGE PRODUCTS) --- */
.home-products-section-header {
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-products-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    background: rgba(242, 37, 32, 0.08);
    padding: 3px 12px;
    border-radius: 50px;
    width: fit-content;
}

.home-products-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin: 0 0 8px 0;
    font-family: var(--font-bengali);
    display: block;
    line-height: 1.2;
}

.home-products-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0px;
}

.home-products-title-divider .divider-line {
    width: 45px;
    height: 3px;
    border-radius: 2px;
}

.home-products-title-divider .divider-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: flamePulse 2s infinite ease-in-out;
}

.home-products-title-divider .divider-line:first-child {
    background: linear-gradient(to right, transparent, var(--primary-red));
}

.home-products-title-divider .divider-line:last-child {
    background: linear-gradient(to left, transparent, var(--primary-red));
}

.products-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .products-grid-4col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.products-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .products-grid-3col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.product-card {
    position: relative;
    background: var(--pure-white);
    border: 1px solid #eef2f5;
    border-radius: 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    border-color: rgba(242, 37, 32, 0.4);
}

.product-card .sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-red);
    color: var(--pure-white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    z-index: 5;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(242, 37, 32, 0.3);
}

.product-card-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f7fafc;
    border-radius: 0;
}

.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-info {
    text-align: center;
    margin-top: 15px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #2d3748;
    line-height: 1.5;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}



.product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.product-card-title a:hover {
    color: var(--primary-red);
}

.product-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.product-card-price del {
    color: #a0aec0;
    font-size: 14px;
    margin-right: 8px;
    font-weight: 400;
}

.product-card-action {
    margin-top: auto;
    padding: 0 15px 15px 15px;
}

.btn-card-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-card-add svg.lucide {
    width: 16px;
    height: 16px;
    stroke-width: 2.5px;
}

.btn-card-add:hover {
    background: var(--primary-red);
    color: var(--pure-white);
    box-shadow: 0 4px 10px rgba(242, 37, 32, 0.2);
}

.btn-card-add.added,
.btn-card-add.loading {
    background: #16a34a;
    border-color: #16a34a;
    color: var(--pure-white);
    pointer-events: none;
}

.btn-card-add.loading {
    opacity: 0.75;
}

@media (max-width: 768px) {
    .product-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .product-card-title {
        font-size: 14px;
        height: auto;
        margin-bottom: 5px;
    }
    .product-card-info {
        margin-top: 8px;
        padding: 0 8px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .product-card-price {
        margin-top: auto;
        margin-bottom: 8px;
    }
    .product-card-action {
        padding: 0 8px 10px 8px;
        margin-top: 0;
    }
    .btn-card-add {
        font-size: 12.5px;
        padding: 5px 7px;
        gap: 4px;
        white-space: nowrap;
    }
    .btn-card-add svg.lucide {
        width: 18px;
        height: 18px;
    }
    .hide-on-mobile {
        display: none !important;
    }
    .top-hotline-bar {
        font-size: 0.8rem;
    }
}

/* --- MOBILE OFF-CANVAS DRAWER --- */
.drawer-toggle-btn {
    display: none;
}

body.drawer-open {
    /* overflow: hidden !important; */
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    transition: visibility 0.4s;
}

.mobile-drawer.open {
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-drawer.open .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--pure-white);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.mobile-drawer.open .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-gray);
}

.drawer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-charcoal);
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--dark-charcoal);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.drawer-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-red);
}

.drawer-close svg.lucide {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 15px;
}

.drawer-body ul,
.drawer-menu-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-body li,
.drawer-menu-list li {
    width: 100% !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.drawer-menu-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--dark-charcoal);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.drawer-menu-list li a:hover,
.drawer-menu-list li.current-menu-item a {
    background: rgba(242, 37, 32, 0.06);
    color: var(--primary-red);
}

.drawer-menu-list li a svg.lucide {
    width: 18px;
    height: 18px;
    color: inherit;
    transition: transform 0.2s ease;
}

.drawer-menu-list li a:hover svg.lucide {
    transform: scale(1.1);
}

/* --- AJAX SEARCH TRIGGER & PANEL --- */
.header-search-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    padding: 8px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: var(--dark-charcoal);
    transition: var(--transition-smooth);
    outline: none;
}

.header-search-trigger:hover {
    border-color: var(--primary-red);
    background: #FFF5F5;
    color: var(--primary-red);
}

.header-search-trigger svg.lucide {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .header-search-trigger {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .header-search-trigger svg.lucide {
        width: 18px;
        height: 18px;
    }
}

.site-header {
    position: relative;
}

/* --- AJAX SEARCH WRAPPER (DESKTOP & MOBILE STYLES) --- */
.header-search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.header-search-wrapper .search-form-ajax {
    width: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.header-search-wrapper.open .search-form-ajax {
    width: 250px;
    opacity: 1;
    margin-right: 10px;
    pointer-events: auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-field-icon {
    position: absolute;
    left: 12px;
    color: #888;
    pointer-events: none;
}

.search-field-ajax {
    width: 100%;
    padding: 8px 35px 8px 35px;
    border: 1.5px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: var(--transition-smooth);
}

.search-field-ajax::-webkit-search-decoration,
.search-field-ajax::-webkit-search-cancel-button,
.search-field-ajax::-webkit-search-results-button,
.search-field-ajax::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.search-field-ajax::-ms-clear,
.search-field-ajax::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

.search-field-ajax:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(242, 37, 32, 0.1);
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.search-clear-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-red);
}

.search-clear-btn svg.lucide {
    width: 16px;
    height: 16px;
}

.header-search-wrapper .search-close-panel-btn {
    display: none !important;
}

/* Desktop Results Dropdown positioning */
.header-search-wrapper .search-results-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 100000;
    border: 1px solid var(--border-color);
    display: none;
}

.header-search-wrapper .search-results-dropdown.active {
    display: block;
}

/* Mobile search styles override */
@media (max-width: 768px) {
    .header-search-wrapper {
        position: static;
    }

    .header-search-wrapper .search-form-ajax {
        position: fixed;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 65px;
        background: var(--pure-white);
        border-bottom: 2px solid var(--primary-red);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: flex !important;
        align-items: center;
        z-index: 99999;
        opacity: 0;
        transform: translateY(-100%);
        pointer-events: none;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 0 60px 0 15px;
        margin: 0;
    }

    .header-search-wrapper.open .search-form-ajax {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .header-search-wrapper .search-close-panel-btn {
        display: none !important;
        position: fixed;
        right: 15px;
        top: 15px;
        z-index: 100000;
        background: transparent;
        border: none;
        color: var(--dark-charcoal);
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: var(--transition-smooth);
        outline: none;
    }

    .header-search-wrapper.open .search-close-panel-btn {
        display: flex !important;
    }

    .header-search-wrapper .search-close-panel-btn:hover {
        background: rgba(0, 0, 0, 0.05);
        color: var(--primary-red);
    }

    .header-search-wrapper .search-close-panel-btn svg.lucide {
        width: 22px;
        height: 22px;
        stroke-width: 2.2px;
    }

    /* Mobile Results Dropdown positioning */
    .header-search-wrapper .search-results-dropdown {
        position: fixed;
        top: 65px;
        left: 15px;
        right: 15px;
        width: auto;
        margin-top: 10px;
        z-index: 100000;
    }

    .header-search-wrapper .search-clear-btn {
        display: none !important;
    }
}

.search-results-dropdown.active {
    display: block;
}

.ajax-search-loading {
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ajax-search-loading::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.ajax-search-results-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ajax-search-item {
    border-bottom: 1px solid var(--border-color);
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ajax-search-item:last-child {
    border-bottom: none;
}

.ajax-search-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--dark-charcoal);
    transition: var(--transition-smooth);
}

.ajax-search-link:hover {
    background: #FFF9F9;
}

.ajax-search-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.ajax-search-info {
    flex: 1;
}

.ajax-search-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--dark-charcoal);
}

.ajax-search-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
}

.ajax-search-no-results {
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 0.95rem;
}

.ajax-search-view-all {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--light-gray);
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-top: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
}

.ajax-search-view-all:hover {
    background: var(--primary-red);
    color: var(--pure-white);
}

/* --- OFF-CANVAS MINI CART DRAWER --- */
body.cart-drawer-open {
    /* overflow: hidden !important; */
}

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 999998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 100%;
    height: 100%;
    background: var(--pure-white);
    z-index: 999999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-drawer-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin: 0;
}

.cart-drawer-close-btn {
    background: transparent;
    border: none;
    color: var(--dark-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    outline: none;
}

.cart-drawer-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-red);
}

.cart-drawer-close-btn svg.lucide {
    width: 20px;
    height: 20px;
    stroke-width: 2.2px;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 10px;
}

/* WooCommerce Mini Cart Styles Override */
.cart-drawer .woocommerce-mini-cart {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.cart-drawer .woocommerce-mini-cart-item {
    position: relative;
    padding: 0 30px 15px 70px !important;
    margin-bottom: 15px !important;
    border-bottom: 1px solid var(--border-color) !important;
    min-height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    list-style: none !important;
}

.cart-drawer .woocommerce-mini-cart-item a.remove {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #888 !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    z-index: 10;
}

.cart-drawer .woocommerce-mini-cart-item a.remove:hover {
    background: #FFF5F5;
    color: var(--primary-red) !important;
}

.cart-drawer .woocommerce-mini-cart-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    padding: 0 !important;
    margin: 0 !important;
}

.cart-drawer .woocommerce-mini-cart-item a:not(.remove) {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 4px;
}

.cart-drawer .woocommerce-mini-cart-item a:not(.remove):hover {
    color: var(--primary-red);
}

.cart-drawer .woocommerce-mini-cart-item .quantity {
    display: none !important;
    /* Hide old WooCommerce static quantity */
}

.mini-cart-qty-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 5px;
    width: 100%;
    transition: opacity 0.2s ease;
}

.mini-cart-qty-wrapper.loading {
    opacity: 0.5;
    pointer-events: none;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background: #fafafa;
}

.qty-btn {
    border: none;
    background: transparent;
    width: 26px;
    height: 26px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    padding: 0;
}

.qty-btn:hover {
    background: #eeeeee;
    color: var(--primary-red);
}

.qty-input {
    width: 30px;
    height: 26px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    background: var(--pure-white);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    outline: none;
    padding: 0;
    margin: 0;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mini-cart-item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* Hide WooCommerce built-in total & buttons — replaced by fixed footer */
.cart-drawer .woocommerce-mini-cart__total,
.cart-drawer .woocommerce-mini-cart__buttons,
.cart-drawer p.woocommerce-mini-cart__buttons,
#cartDrawer .woocommerce-mini-cart__total,
#cartDrawer .woocommerce-mini-cart__buttons,
#cartDrawer p.woocommerce-mini-cart__buttons,
.cart-drawer .widget_shopping_cart_content>p.woocommerce-mini-cart__buttons,
.cart-drawer .widget_shopping_cart_content>p.total {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cart-drawer .woocommerce-mini-cart__empty-message {
    text-align: center;
    color: #777;
    font-size: 0.95rem;
    padding: 40px 0;
    margin: 0;
}

/* Fixed Checkout Footer */
.cart-drawer-footer {
    flex-shrink: 0;
    padding: 16px 20px;
    border-top: 1.5px solid var(--border-color);
    background: var(--pure-white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.cart-drawer-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cart-drawer-subtotal-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
}

.cart-drawer-subtotal-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-charcoal);
}

.cart-drawer-subtotal-amount .woocommerce-Price-amount {
    color: var(--primary-red);
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-drawer-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: var(--primary-red);
    color: var(--pure-white) !important;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.cart-drawer-checkout-btn svg.lucide {
    width: 16px;
    height: 16px;
    stroke-width: 2.5px;
    flex-shrink: 0;
}

.cart-drawer-checkout-btn:hover {
    background: #c91a15;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201, 26, 21, 0.35);
    color: var(--pure-white) !important;
}

/* ==========================================
   CUSTOM SINGLE PRODUCT PAGE STYLES
   ========================================== */

/* Layout & Spacing */
.estove-custom-single-product {
    margin-top: 40px;
    margin-bottom: 60px;
}

.estove-product-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

/* Image Gallery with Thumbnails on Left */
.estove-product-gallery {
    width: 48%;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.estove-main-image {
    flex: 1 1 auto;
    width: 100%;
    position: relative;
}

.estove-main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: block;
}

.estove-main-image .onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 9;
}

.estove-gallery-thumbs {
    width: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.estove-gallery-thumbs .thumb-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.estove-gallery-thumbs .thumb-item img {
    width: 100%;
    height: auto;
    display: block;
}

.estove-gallery-thumbs .thumb-item.active,
.estove-gallery-thumbs .thumb-item:hover {
    border-color: var(--primary-red);
}

/* Summary Box */
.estove-product-summary {
    width: calc(52% - 40px);
    padding-top: 10px;
}

.estove-product-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 8px;
    line-height: 1.25;
}

.estove-product-rating {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.estove-product-rating a {
    color: #777;
}

/* Price */
.estove-product-price {
    margin-bottom: 12px;
}

.estove-product-price .price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.estove-product-price del {
    font-size: 1.2rem;
    color: #999;
    font-weight: 500;
}

.estove-product-price ins {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
}

.estove-product-price>.woocommerce-Price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
}

/* Description */
.estove-product-excerpt {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Add to Cart Form */
.estove-add-to-cart-wrapper form.cart {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.estove-add-to-cart-wrapper form.cart .quantity {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    height: 46px;
    background: #f9f9f9;
    align-items: center;
    flex-shrink: 0;
}

.estove-qty-btn {
    width: 32px;
    height: 100%;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--dark-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.estove-qty-btn:hover {
    background: #ebebeb;
    color: var(--primary-red);
}

.estove-add-to-cart-wrapper form.cart .quantity input.qty {
    width: 40px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    background: transparent;
    -moz-appearance: textfield;
}

.estove-add-to-cart-wrapper form.cart .button {
    height: 46px;
    padding: 0 20px;
    background: var(--dark-charcoal);
    color: var(--pure-white);
    font-weight: 700;
    border-radius: 6px;
    border: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-size: 0 !important;
    /* Hide original text */
}

.estove-add-to-cart-wrapper form.cart .button::before {
    content: "ব্যাগে যুক্ত করুন";
    font-size: 0.95rem;
    /* Restore text size */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path></svg>');
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 24px;
    /* Space for the icon */
    display: flex;
    align-items: center;
    height: 100%;
}

.estove-add-to-cart-wrapper form.cart .button:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

/* Buy Now Button */
.estove-buy-now-btn {
    height: 46px;
    padding: 0 25px;
    background: var(--primary-red);
    color: var(--pure-white) !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    border: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-left: 0 !important;
    white-space: nowrap;
}

.estove-buy-now-btn:hover {
    background: #d61c18;
    transform: translateY(-2px);
}

/* Product Meta (Categories, Tags, SKU) */
.estove-product-meta {
    font-size: 0.95rem;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
}

.estove-product-meta .meta-item {
    display: flex;
    gap: 5px;
}

.estove-product-meta .meta-label {
    font-weight: 600;
    color: var(--dark-charcoal);
}

.estove-product-meta a {
    color: var(--primary-red);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.estove-product-meta a:hover {
    color: #d61c18;
    text-decoration: underline;
}

/* Product Tabs */
.estove-product-bottom-tabs .woocommerce-tabs {
    width: 100%;
    margin-top: 40px;
    clear: both;
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    margin: 0 0 30px 0;
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs::after {
    display: none !important;
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none !important;
    background: transparent !important;
    border-radius: 0;
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 15px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #888;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs li:hover a {
    color: var(--primary-red);
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs li.active {
    border-bottom: none !important;
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs li.active a {
    color: var(--primary-red);
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs li.active a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-red);
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs .panel {
    background: #fff !important;
    padding: 30px 40px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    position: relative !important;
    overflow: hidden !important;
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs .panel>* {
    margin-left: 0 !important;
    max-width: 100%;
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs .panel ul {
    margin-left: 20px !important;
    padding-left: 0;
    list-style-type: disc;
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs .panel ul li {
    list-style-type: disc;
    margin-bottom: 8px;
}

.woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs .panel h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark-charcoal);
}

/* Related Products */
.estove-related-products {
    margin-top: 60px;
}

.estove-related-products h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-charcoal);
}

/* Quick Order Modal */
.estove-quick-order-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 15px;
}

.estove-quick-order-modal {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: #fff;
    border-radius: 12px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    margin: auto;
    /* Centers in flex if height is smaller than viewport */
    overflow: hidden;
}

.estove-quick-order-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.estove-quick-order-modal-overlay.open .estove-quick-order-modal,
.estove-quick-order-modal.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.estove-quick-order-modal .modal-header {
    background: #f9f9f9;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.estove-quick-order-modal .modal-header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #555;
    line-height: 1;
    margin-top: -5px;
}

.estove-quick-order-modal .modal-body {
    padding: 12px;
}

/* Product Summary inside Modal */
.quick-order-product-summary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #f4f6f8;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.estove-radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 6px;
}

.estove-radio-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 5px 8px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    color: #475569;
}

.estove-radio-card:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.estove-radio-card input[type="radio"] {
    display: inline-block !important;
    margin: 0 12px 0 0 !important;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-red);
    flex-shrink: 0;
}

.estove-radio-card:has(input[type="radio"]:checked) {
    border-color: var(--primary-red);
    background: #fffafa;
    box-shadow: 0 0 0 1px var(--primary-red);
    color: var(--primary-red);
    font-weight: 600;
}

.estove-radio-card>span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    line-height: 1.4;
}

.estove-radio-card strong,
.estove-radio-card .amount,
.estove-radio-card bdi,
.estove-radio-card .woocommerce-Price-currencySymbol {
    white-space: nowrap !important;
    display: inline-block !important;
    vertical-align: baseline;
}

.estove-radio-card>span>strong,
.estove-radio-card>span>.amount {
    margin-top: 4px;
    font-size: 0.95rem;
    color: var(--dark-charcoal);
}

.summary-image img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
    display: block;
}

.summary-details {
    flex: 1;
}

.summary-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--dark-charcoal);
    line-height: 1.3;
}

.summary-price-qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.summary-price-qty .price {
    font-weight: 700;
    color: var(--primary-red);
}

.summary-price-qty .price del {
    color: #999;
    font-weight: 400;
    font-size: 0.8rem;
    margin-right: 5px;
}

.summary-price-qty .qty-display {
    color: #555;
    font-weight: 600;
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.estove-quick-order-modal .form-group {
    margin-bottom: 8px;
}

.estove-quick-order-modal .form-group label {
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
    font-size: 0.9rem;
}

.estove-quick-order-modal .form-group input,
.estove-quick-order-modal .form-group select,
.estove-quick-order-modal .form-group textarea {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.estove-quick-order-modal .form-group input:focus,
.estove-quick-order-modal .form-group select:focus,
.estove-quick-order-modal .form-group textarea:focus {
    border-color: var(--primary-red);
}

.submit-quick-order-btn {
    width: 100%;
    background: var(--primary-red);
    color: #fff;
    padding: 8px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.submit-quick-order-btn:hover {
    background: #d61c18;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .estove-product-top {
        gap: 20px;
    }

    .estove-product-gallery,
    .estove-product-summary {
        width: 100%;
    }

    .estove-product-title {
        font-size: 1.4rem;
        line-height: 1.35;
        margin-bottom: 6px;
    }

    .estove-product-price del {
        font-size: 1.05rem;
    }

    .estove-product-price ins,
    .estove-product-price>.woocommerce-Price-amount {
        font-size: 1.45rem;
    }

    .estove-product-gallery {
        flex-direction: column-reverse;
    }

    .estove-gallery-thumbs {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }

    .estove-gallery-thumbs .thumb-item {
        width: 80px;
        flex-shrink: 0;
    }

    .estove-add-to-cart-wrapper form.cart {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .estove-add-to-cart-wrapper form.cart .quantity {
        width: 38%;
        justify-content: center;
        margin: 0 !important;
        height: 44px;
        flex-shrink: 0;
        box-sizing: border-box !important;
    }

    .estove-add-to-cart-wrapper form.cart .button {
        width: 59% !important;
        margin: 0 !important;
        height: 44px;
        flex-shrink: 0;
        box-sizing: border-box !important;
        padding: 0 10px !important;
    }

    .estove-add-to-cart-wrapper form.cart .estove-buy-now-btn {
        width: 100% !important;
        margin: 8px 0 0 0 !important;
        height: 44px;
        box-sizing: border-box !important;
    }

    .woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs {
        margin-top: 25px;
    }

    .woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs ul.tabs {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 15px !important;
    }

    .woocommerce div.product .estove-product-bottom-tabs .woocommerce-tabs .panel {
        padding: 15px !important;
    }

    .estove-related-products h2,
    section.related.products h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
}

/* Hide WooCommerce default View Cart link */
a.added_to_cart.wc-forward {
    display: none !important;
}

/* Hide WooCommerce default gallery trigger (often appears as a stray cross) */
.woocommerce-product-gallery__trigger {
    display: none !important;
}

/* Mobile Sticky Buy Now */
.estove-mobile-sticky-buy-wrapper {
    display: none;
}

@media (max-width: 991px) {
    .estove-mobile-sticky-buy-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 10px 15px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 99997;
        /* Just below Quick Order Modal */
        border-top: 1px solid var(--border-color);
    }

    .estove-mobile-sticky-buy-wrapper .sticky-price {
        flex: 1;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--primary-red);
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .estove-mobile-sticky-buy-wrapper .sticky-price del {
        font-size: 0.85rem;
        color: #999;
        font-weight: 500;
    }

    .estove-mobile-sticky-buy-wrapper .sticky-price ins {
        text-decoration: none;
        color: var(--primary-red);
    }

    .estove-mobile-sticky-buy-wrapper .sticky-btn {
        flex: 1;
    }

    .estove-mobile-sticky-buy-wrapper .sticky-buy-now-btn {
        width: 100% !important;
        margin: 0 !important;
        height: 44px;
        font-size: 1.05rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.single-product {
        padding-bottom: 70px;
        /* Space for the sticky bottom bar */
    }
}

/* --- SHOP ARCHIVE PAGE --- */
.shop-page-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.shop-sidebar {
    width: 25%;
    flex-shrink: 0;
}

.shop-sidebar-inner {
    position: sticky;
    top: 80px;
}

.shop-sidebar .widget {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.shop-sidebar .widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(242, 37, 32, 0.1);
    position: relative;
    color: var(--dark-charcoal);
    font-weight: 700;
}

.shop-sidebar .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

/* Category Widget Styling */
.widget_product_categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_product_categories ul li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.widget_product_categories ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_product_categories ul li a {
    color: #4A5568;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
    flex: 1;
}

.widget_product_categories ul li a::before {
    content: '\203A';
    /* Arrow chevron */
    font-family: monospace;
    font-size: 1.2rem;
    margin-right: 8px;
    color: var(--primary-red);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-smooth);
}

.widget_product_categories ul li:hover>a {
    color: var(--primary-red);
    padding-left: 5px;
}

.widget_product_categories ul li:hover>a::before {
    opacity: 1;
    transform: translateX(0);
}

.widget_product_categories ul li.current-cat>a {
    color: var(--primary-red);
    font-weight: 700;
}

.widget_product_categories ul li.current-cat>a::before {
    opacity: 1;
    transform: translateX(0);
}

.widget_product_categories ul li .count {
    color: #718096;
    font-size: 0.85rem;
    font-weight: 600;
    background: #F1F5F9;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 10px;
}

/* Price Filter Styling */
.widget_price_filter .price_slider_wrapper .ui-slider {
    background: #E2E8F0;
    height: 6px;
    border-radius: 4px;
    border: none;
    margin-bottom: 20px;
}

.widget_price_filter .ui-slider .ui-slider-range {
    background: var(--primary-red) !important;
    border-radius: 4px;
}

.widget_price_filter .ui-slider .ui-slider-handle {
    background: #fff !important;
    border: 3px solid var(--primary-red) !important;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: -7px;
    cursor: ew-resize;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    outline: none !important;
}

.widget_price_filter .price_slider_amount .button {
    background: var(--dark-charcoal) !important;
    color: #fff !important;
    border: none !important;
    padding: 6px 16px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    font-size: 0.9rem !important;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.widget_price_filter .price_slider_amount .button:hover {
    background: var(--primary-red) !important;
}

.widget_price_filter .price_label {
    font-weight: 600;
    color: var(--dark-charcoal);
    font-size: 0.95rem;
}

/* Shop Header & Controls */
.shop-main-content {
    flex: 1;
    min-width: 0;
}

.estove-shop-header {
    background: linear-gradient(135deg, #1A2022 0%, #2A3538 100%);
    padding: 30px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.estove-shop-header::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(250, 103, 5, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.estove-breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-weight: 500;
}

.estove-breadcrumb a {
    color: #CBD5E1;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.estove-breadcrumb a:hover {
    color: var(--pure-white);
}

.estove-shop-header .page-title {
    margin: 0;
    font-size: 2.2rem;
    color: var(--pure-white);
    font-weight: 700;
}

.estove-shop-header .term-description {
    margin-top: 10px;
    font-size: 1.05rem;
    color: #CBD5E1;
    max-width: 800px;
}

.estove-shop-header .term-description p:last-child {
    margin-bottom: 0;
}

.estove-shop-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    gap: 15px;
}

.estove-shop-controls .woocommerce-result-count {
    margin: 0;
    color: #4A5568;
    font-weight: 500;
}

.estove-shop-controls .woocommerce-ordering {
    margin: 0;
}

.estove-shop-controls .woocommerce-ordering select {
    padding: 8px 35px 8px 15px;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark-charcoal);
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px auto;
    transition: var(--transition-smooth);
}

.estove-shop-controls .woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(242, 37, 32, 0.1);
}

/* Mobile Filter Button */
.estove-mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--orange-flame);
    color: var(--orange-flame);
    padding: 7px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.estove-mobile-filter-btn:hover {
    background: var(--orange-flame);
    color: #fff;
}

.estove-mobile-filter-btn svg {
    width: 18px;
    height: 18px;
}

@keyframes slideDownMobile {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .shop-page-wrapper {
        flex-direction: column;
        margin-top: 0px;
        gap: 15px;
    }

    .estove-shop-header {
        padding: 25px 20px;
        margin-bottom: 15px;
    }

    .shop-sidebar {
        display: none;
        width: 100%;
        position: static;
        margin-top: -5px;
        margin-bottom: 25px;
    }

    .shop-sidebar.active {
        display: block;
        animation: slideDownMobile 0.3s ease;
    }

    .shop-sidebar-inner {
        position: static;
    }

    .estove-mobile-filter-btn {
        display: inline-flex !important;
    }

    .estove-shop-controls {
        justify-content: flex-start;
        gap: 15px;
        margin-bottom: 10px;
    }

    .estove-shop-controls .woocommerce-result-count {
        display: none !important;
    }
}

/* WooCommerce Pagination Styling */
.woocommerce-pagination {
    margin-top: 40px;
    margin-bottom: 20px;
    overflow: visible !important;
}

.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 10px;
    margin: 0;
    border: none !important;
    overflow: visible !important;
}

.woocommerce-pagination ul.page-numbers li {
    border: none !important;
    display: block;
}

.woocommerce-pagination ul.page-numbers li span.current,
.woocommerce-pagination ul.page-numbers li a.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    background: var(--pure-white);
    color: var(--dark-charcoal);
    border: 1.5px solid var(--border-color);
    padding: 0 12px;
}

.woocommerce-pagination ul.page-numbers li a.page-numbers:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: #FFF5F5;
    box-shadow: 0 4px 10px rgba(242, 37, 32, 0.1);
}

.woocommerce-pagination ul.page-numbers li span.current {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 4px 10px rgba(242, 37, 32, 0.25);
}

.woocommerce-pagination ul.page-numbers li a.next.page-numbers,
.woocommerce-pagination ul.page-numbers li a.prev.page-numbers {
    font-weight: 700;
}