/* Green Diet India - Master Agriculture Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-dark: #07281c;
    --header-dark: #0f3a28;
    --primary-green: #0e7536;
    --primary-green-hover: #0b5f2a;
    --accent-green: #2e7d32;
    --light-green: #eef7f2;
    --gold: #f59e0b;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8faf8;
    --border-color: #e2e8f0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
}

/* 1. TOP BAR */
.top-bar {
    background-color: var(--header-dark);
    color: #ffffff;
    font-size: 13px;
    padding: 7px 0;
}
.top-bar a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s;
}
.top-bar a:hover {
    color: #86efac;
}

/* Language Dropdown & Google Translate Custom Styling */
.top-bar .dropdown-menu {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}
.top-bar .dropdown-menu a.dropdown-item {
    color: #1e293b !important;
    font-weight: 600 !important;
    padding: 8px 14px !important;
    transition: all 0.2s ease !important;
}
.top-bar .dropdown-menu a.dropdown-item:hover {
    background-color: #eef7f2 !important;
    color: #0e7536 !important;
}
.top-bar .dropdown-menu a.dropdown-item.active {
    background-color: #eef7f2 !important;
    color: #0e7536 !important;
    font-weight: 700 !important;
}

/* Hide Google Translate Banner Frame & Gadgets */
.goog-te-banner-frame.skiptranslate, 
.goog-te-banner-frame,
#goog-gt-tt, 
.goog-te-balloon-frame {
    display: none !important;
}
body {
    top: 0px !important;
}
.goog-te-gadget-icon, 
.goog-te-gadget-simple span {
    display: none !important;
}

/* 2. MAIN HEADER */
.main-header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.brand-logo img {
    height: 48px;
}
.brand-logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
}
.brand-logo-text .logo-diet {
    color: var(--gold);
}
.brand-logo-text .logo-india {
    color: var(--primary-green);
    font-weight: 800;
    margin-left: 2px;
}

.search-form-wrap {
    padding-right: 0;
    margin-right: 0;
}

.search-form {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
    height: 46px;
}
.search-form:focus-within {
    box-shadow: 0 4px 14px rgba(7, 40, 28, 0.15);
}
.search-category-select {
    border: none;
    background: #f8faf8;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    border-right: 1px solid #e2e8f0;
    outline: none;
    cursor: pointer;
    max-width: 145px;
    height: 100%;
}
.search-input {
    border: none;
    padding: 8px 16px;
    width: 100%;
    font-size: 14px;
    outline: none;
    background: transparent;
    height: 100%;
}
.search-btn {
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 0 24px;
    height: 100%;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.search-btn:hover {
    background: var(--primary-green-hover);
}

.header-icon-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}
.header-icon-btn:hover {
    background: var(--light-green);
    color: var(--primary-green);
}
.badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary-green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* 3. CATEGORY NAVIGATION BAR */
.nav-bar {
    background: var(--primary-green);
    padding: 0;
    margin: 0;
    box-shadow: none;
}
.btn-all-categories {
    background: #0a5828;
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-all-categories:hover {
    background: #07421e;
    color: #fff;
}
.dropdown-menu .dropdown-item:hover {
    background-color: #f0fdf4 !important;
    color: #0e7536 !important;
}
.nav-link-custom {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 16px !important;
    transition: background 0.2s, color 0.2s;
}
.nav-link-custom:hover {
    background: rgba(255,255,255,0.12);
}
.badge-hot {
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    vertical-align: super;
}

.testimonial-hover-card {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.testimonial-hover-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 45px rgba(22, 163, 74, 0.14) !important;
    border-color: #16a34a !important;
}

/* 4. HERO BANNER SLIDER */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0b4f28 0%, #157e40 100%);
    color: #ffffff;
    border-bottom: 4px solid var(--gold);
}
.hero-slide-content {
    padding: 80px 0;
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    color: #ffffff;
}
.hero-subtitle {
    font-size: 20px;
    color: #dcfce7;
    margin-bottom: 30px;
    font-weight: 400;
}
.btn-hero-solid {
    background: var(--primary-green) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    border-radius: 50px !important;
    border: 2px solid var(--primary-green) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 12px rgba(14, 117, 54, 0.25) !important;
}
.btn-hero-solid:hover {
    background: #095427 !important;
    border-color: #095427 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}
.btn-hero-outline {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid #ffffff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-hero-outline:hover {
    background: #ffffff;
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Universal Swiper Slider Arrows Design */
.swiper-button-next,
.swiper-button-prev {
    width: 38px !important;
    height: 38px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    color: var(--primary-green) !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.25s ease-in-out !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px !important;
    font-weight: 800 !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-green) !important;
    color: #ffffff !important;
    border-color: var(--primary-green) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(14, 117, 54, 0.35) !important;
}

/* Custom Product Filter Tabs */
#productFilterTabs {
    gap: 8px;
}
#productFilterTabs .nav-link {
    background: #ffffff;
    color: var(--primary-green) !important;
    border: 2px solid var(--primary-green) !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 8px 22px !important;
    transition: all 0.25s ease-in-out;
}
#productFilterTabs .nav-link:hover {
    background: var(--light-green);
    color: #095427 !important;
    border-color: #095427 !important;
}
#productFilterTabs .nav-link.active {
    background: var(--primary-green) !important;
    color: #ffffff !important;
    border-color: var(--primary-green) !important;
    box-shadow: 0 4px 12px rgba(14, 117, 54, 0.3) !important;
}

/* 5. TRUST BADGES BAR */
.trust-badges-bar {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.08);
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding: 25px 30px;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.trust-badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-green);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* 6. CATEGORY & CROP CARDS */
.section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.section-title span {
    color: var(--primary-green);
}
.category-circle-card {
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    transition: transform 0.3s ease;
}
.category-circle-card:hover {
    transform: translateY(-6px);
    color: var(--primary-green);
}
.category-circle-img-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 3px solid var(--primary-green);
    padding: 3px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.category-circle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.category-circle-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

/* 7. PRODUCT CARDS */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* List View Mode Styles */
.list-view-mode .product-card-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}
.list-view-mode .product-card {
    flex-direction: row !important;
    align-items: center;
    padding: 12px;
}
.list-view-mode .product-img-wrap {
    width: 180px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 8px;
}
.list-view-mode .product-card-body {
    flex-grow: 1;
    padding: 0 20px;
}

/* Pagination Styling Override */
.pagination-green .pagination {
    gap: 6px;
    margin-bottom: 0;
}
.pagination-green .page-item .page-link {
    border-radius: 8px !important;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    border: 1px solid #cbd5e1;
    padding: 6px 14px;
    transition: all 0.2s ease;
}
.pagination-green .page-item.active .page-link {
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    color: #ffffff !important;
}
.pagination-green .page-item .page-link:hover {
    background-color: var(--light-green);
    color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Hide Number Spinner Arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: var(--light-green);
}
.product-badge-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-green);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 5;
}
.product-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8faf8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img-wrap img {
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}
.product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-cat-small {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}
.product-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.product-title a:hover {
    color: var(--primary-green);
}
.product-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 10px;
}
.product-price-box {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}
.price-current {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-green);
}
.price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}
.product-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}
.btn-add-cart {
    background: var(--primary-green);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 10px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.btn-add-cart:hover {
    background: #095427;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(14, 117, 54, 0.3);
}
.btn-card-action {
    width: 34px;
    height: 34px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #ffffff;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.btn-card-action:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: var(--light-green);
    transform: translateY(-1px);
}

/* 8. WHY CHOOSE US CARDS */
.why-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s;
}
.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-green);
    color: var(--primary-green);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* 9. ABOUT US HOMEPAGE CARD */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}
.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
}

/* 10. DEALER BANNER */
.dealer-banner {
    background: linear-gradient(90deg, #07281c 0%, #0e7536 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
}

/* 11. TRACKING STEP TIMELINE */
.tracking-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 30px 0;
}
.tracking-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
}
.tracking-timeline-progress {
    position: absolute;
    top: 24px;
    left: 40px;
    height: 4px;
    background: var(--primary-green);
    z-index: 1;
    transition: width 0.4s ease;
}
.tracking-step {
    position: relative;
    z-index: 2;
    text-align: center;
    background: #fff;
    padding: 0 10px;
}
.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 10px;
    border: 3px solid #fff;
}
.tracking-step.completed .step-icon {
    background: var(--primary-green);
    color: #fff;
}
.tracking-step.active .step-icon {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 0 0 4px var(--light-green);
}

/* 12. FOOTER DESIGN SYSTEM */
.site-footer {
    background: linear-gradient(180deg, #07281c 0%, #041a12 100%) !important;
    color: #cbd5e1 !important;
    padding-top: 60px;
    padding-bottom: 30px;
    font-size: 14px;
    border-top: 4px solid var(--gold);
    position: relative;
}
.site-footer h5 {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    margin-bottom: 22px !important;
    position: relative;
    display: inline-block;
}
.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}
.footer-text {
    color: #94a3b8 !important;
    font-size: 14px;
    line-height: 1.6;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #cbd5e1 !important;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.25s ease-in-out;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--gold) !important;
    transform: translateX(4px);
}
.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-social-icon:hover {
    background: var(--primary-green) !important;
    color: #ffffff !important;
    border-color: var(--primary-green) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(14, 117, 54, 0.4);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #cbd5e1 !important;
    font-size: 13px;
}
.footer-contact-item i {
    color: var(--gold) !important;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 20px;
    margin-top: 30px;
    color: #94a3b8 !important;
    font-size: 13px;
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* 13. FORM INPUTS & GREEN THEME FOCUS OVERRIDES */
.form-control, .form-select, textarea {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: #0f172a !important;
    background-color: #f8fafc !important;
    transition: all 0.25s ease-in-out !important;
}

.form-control:hover, .form-select:hover, textarea:hover {
    background-color: #ffffff !important;
    border-color: #cbd5e1 !important;
}

.form-control:focus, .form-select:focus, textarea:focus, input:focus {
    background-color: #ffffff !important;
    border-color: #0e7536 !important;
    box-shadow: 0 0 0 0.25rem rgba(14, 117, 54, 0.15) !important;
    outline: none !important;
}

/* Contact Information Circular Icons */
.contact-icon-circle {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    border-radius: 50% !important;
    background: #e6f4ea !important;
    color: #0e7536 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
}

/* Social Media Circular Buttons */
.social-circle-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #475569 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 15px !important;
    transition: all 0.25s ease-in-out !important;
    background: #ffffff !important;
}

.social-circle-btn:hover {
    background: #0e7536 !important;
    color: #ffffff !important;
    border-color: #0e7536 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 10px rgba(14, 117, 54, 0.3) !important;
}

/* Custom Rounded 4 Card Styling */
.rounded-4 {
    border-radius: 1rem !important;
}

/* Mobile Bottom Navigation & Floating Whatsapp Offset */
@media (max-width: 991.98px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    body {
        padding-bottom: 65px !important;
    }
    .whatsapp-float {
        bottom: 75px !important;
    }
    .hero-slide-content {
        padding: 35px 15px !important;
        text-align: center !important;
    }
    .hero-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
        word-break: break-word !important;
    }
    .hero-subtitle {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    .btn-hero-solid, .btn-hero-outline {
        padding: 10px 22px !important;
        font-size: 13px !important;
        margin: 0 auto !important;
    }
    .swiper-button-next, .swiper-button-prev {
        width: 32px !important;
        height: 32px !important;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 20px !important;
    }
    .brand-logo-text {
        font-size: 19px !important;
    }
    .brand-logo i {
        font-size: 1.4rem !important;
    }
    .hero-product-img {
        max-height: 180px !important;
    }
}

/* Scrollbar Hiding Utility & Horizontal Product Filter Tabs */
.no-scrollbar::-webkit-scrollbar {
    display: none !important;
}
.no-scrollbar {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

#productFilterTabs .nav-link {
    background-color: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
    font-size: 13px;
    transition: all 0.25s ease;
}

#productFilterTabs .nav-link.active, #productFilterTabs .nav-link:hover {
    background-color: #0e7536 !important;
    color: #ffffff !important;
    border-color: #0e7536 !important;
    box-shadow: 0 4px 12px rgba(14, 117, 54, 0.25);
}

/* Master Mobile Horizontal Overflow Lock */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

@media (max-width: 991.98px) {
    body, main, header, section, .hero-section, .swiper, .swiper-wrapper, .container, .container-fluid {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    .hero-section, .heroSwiper {
        overflow: hidden !important;
    }
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .mobile-product-scroll {
        overflow-x: auto !important;
    }
}

/* Mobile Touch-Scrollable Product & Blog Cards Row (2 Products Per Slide on Mobile) */
@media (max-width: 767.98px) {
    .mobile-product-scroll {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        scrollbar-width: none !important;
    }
    .mobile-product-scroll::-webkit-scrollbar {
        display: none !important;
    }
    .mobile-product-scroll > [class*="col-"] {
        flex: 0 0 48% !important;
        max-width: 48% !important;
        min-width: 48% !important;
        width: 48% !important;
        scroll-snap-align: start;
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
}

/* Master Compact Green Pill Button System (Uniform Size Across Entire Site) */
.btn-success, .btn-hero-solid, .btn-custom-pill {
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    padding: 9px 24px !important;
    font-size: 13.5px !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 12px rgba(14, 117, 54, 0.25) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}

.btn-success:hover, .btn-hero-solid:hover, .btn-custom-pill:hover {
    background-color: #0b5f2a !important;
    border-color: #0b5f2a !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(14, 117, 54, 0.35) !important;
}

@media (min-width: 992px) {
    .d-lg-none, .btn.d-lg-none, .btn-success.d-lg-none {
        display: none !important;
    }
}

.btn-success.btn-sm, .btn-custom-pill.btn-sm {
    padding: 6px 16px !important;
    font-size: 12px !important;
}

@media (max-width: 576px) {
    .btn-success, .btn-hero-solid, .btn-custom-pill {
        padding: 8px 20px !important;
        font-size: 13px !important;
    }
}

/* Swiper Pagination Green Theme */
.swiper-pagination-bullet {
    background: #cbd5e1 !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
    transition: all 0.3s ease !important;
}
.swiper-pagination-bullet-active {
    background: var(--primary-green) !important;
    width: 22px !important;
    border-radius: 4px !important;
}

/* Mobile Trust Badges Bar 2x2 Grid Responsive Rules */
@media (max-width: 767.98px) {
    .trust-badges-bar {
        margin-top: -20px !important;
        padding: 15px 12px !important;
        border-radius: 14px !important;
    }
    .trust-badge-item {
        gap: 10px !important;
        padding: 4px 0 !important;
    }
    .trust-badge-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
    }
    .trust-badge-item h6 {
        font-size: 13.5px !important;
    }
    .trust-badge-item small {
        font-size: 10.5px !important;
        line-height: 1.2 !important;
        display: block !important;
    }
    .dealer-banner {
        padding: 20px 10px !important;
    }
}

/* 100% Exact Match Design for Variant Attribute Cards (Responsive Full Grid Fill) */
.variant-attribute-card {
    background: #fafafa !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 14px 10px 10px 10px !important;
    position: relative !important;
    cursor: pointer !important;
    text-align: center !important;
    transition: all 0.2s ease-in-out !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 64px !important;
    user-select: none !important;
    width: 100% !important;
}

.variant-attribute-card:hover {
    border-color: #cbd5e1 !important;
    background: #ffffff !important;
}

.variant-attribute-card.active {
    border: 2px solid #0e7536 !important;
    background: #ffffff !important;
    box-shadow: 0 3px 10px rgba(14, 117, 54, 0.12) !important;
}

.variant-save-badge {
    position: absolute !important;
    top: -9px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #0e7536 !important;
    color: #ffffff !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
    padding: 2px 7px !important;
    border-radius: 10px !important;
    font-family: var(--font-heading) !important;
    letter-spacing: 0.2px !important;
    box-shadow: 0 2px 4px rgba(14, 117, 54, 0.25) !important;
    white-space: nowrap !important;
    z-index: 3 !important;
    line-height: 1.2 !important;
}

.variant-card-name {
    font-size: 12.5px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    line-height: 1.2 !important;
    margin-top: 1px !important;
    margin-bottom: 2px !important;
    font-family: var(--font-heading) !important;
    letter-spacing: -0.2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
}

.variant-card-prices {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 5px !important;
}

.variant-card-oldprice {
    font-size: 11px !important;
    color: #c4b588 !important;
    text-decoration: line-through !important;
    font-weight: 700 !important;
    font-family: var(--font-heading) !important;
}

.variant-card-price {
    font-size: 13.5px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    font-family: var(--font-heading) !important;
}

.variant-check-badge {
    position: absolute !important;
    right: -8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 19px !important;
    height: 19px !important;
    background: #eef2f6 !important;
    color: #cbd5e1 !important;
    border: 2px solid #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 9px !important;
    transition: all 0.2s ease !important;
    z-index: 2 !important;
}

.variant-check-badge i {
    opacity: 0.9 !important;
}

.variant-attribute-card.active .variant-check-badge {
    background: #0e7536 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: 0 2px 5px rgba(14, 117, 54, 0.3) !important;
}

.variant-attribute-card.active .variant-check-badge i {
    opacity: 1 !important;
}

/* Premium Product Gallery System (Horizontal Strip Below Main Image) */
.product-thumbs-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 2px;
    width: 100%;
    scrollbar-width: thin;
    cursor: grab;
    user-select: none;
}

.product-thumbs-strip .thumb-box {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    transition: all 0.25s ease-in-out;
}

.product-thumbs-strip .thumb-box:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-thumbs-strip .thumb-box.active {
    border-color: #0e7536 !important;
    border-width: 2px !important;
    box-shadow: 0 4px 12px rgba(14, 117, 54, 0.2) !important;
    transform: translateY(-2px);
}

.product-thumbs-strip::-webkit-scrollbar {
    height: 4px;
}

.product-thumbs-strip::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

@media (max-width: 991.98px) {
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 16px;
    }
}

.btn-group>.btn-group:not(:first-child), .btn-group>:not(.btn-check:first-child)+.btn {
    margin-left: calc(var(--bs-border-width) * -1);
    margin-left: 10px;
    border-radius: 10px;
}

.pagination-green {
    margin-left: 10px !important;
}

.pagination {
    margin-left: 12px !important;
}

.pagination-green .text-muted,
.pagination-green p,
.pagination-green small {
    display: none !important;
}

/* Crop Swiper Slider Custom Navigation Arrows */
.cropSwiper-next,
.cropSwiper-prev {
    width: 40px !important;
    height: 40px !important;
    background: #ffffff !important;
    color: #0e7536 !important;
    border-radius: 50% !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.25s ease !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    z-index: 10 !important;
}

.cropSwiper-next:after,
.cropSwiper-prev:after {
    font-size: 16px !important;
    font-weight: bold !important;
}

.cropSwiper-next:hover,
.cropSwiper-prev:hover {
    background: #0e7536 !important;
    color: #ffffff !important;
    border-color: #0e7536 !important;
    box-shadow: 0 6px 16px rgba(14, 117, 54, 0.3) !important;
}

.cropSwiper-next {
    right: 0px !important;
}

.cropSwiper-prev {
    left: 0px !important;
}

/* Custom Product Detail Nav Pills Styling (Brand Green Theme Only) */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
.custom-detail-pills .nav-link.active {
    background-color: #0e7536 !important;
    background: #0e7536 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(14, 117, 54, 0.3) !important;
}

.custom-detail-pills .nav-link {
    background: #f8fafc !important;
    color: #0e7536 !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.25s ease !important;
}

.custom-detail-pills .nav-link:hover {
    color: #0e7536 !important;
    background: #eef7f2 !important;
    border-color: #0e7536 !important;
}

.custom-detail-pills .nav-link .tab-icon-badge {
    background: #eef7f2 !important;
    color: #0e7536 !important;
    transition: all 0.25s ease !important;
}

.custom-detail-pills .nav-link.active .tab-icon-badge {
    background: #ffffff !important;
    color: #0e7536 !important;
}

/* Premium Top Controls Bar Styling (Desktop & Mobile) */
.top-controls-bar {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 14px 22px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

.product-search-input-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.product-search-input-wrap .search-icon {
    position: absolute;
    left: 14px;
    color: #0e7536;
    font-size: 14px;
    pointer-events: none;
}
.product-search-input {
    width: 100%;
    height: 42px;
    padding-left: 38px;
    padding-right: 32px;
    font-size: 13.5px;
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    background: #f8faf8;
    color: #1e293b;
    outline: none;
    transition: all 0.25s ease;
}
.product-search-input:focus {
    background: #ffffff;
    border-color: #0e7536;
    box-shadow: 0 0 0 3px rgba(14, 117, 54, 0.15);
}
.clear-search-btn {
    position: absolute;
    right: 12px;
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.clear-search-btn:hover {
    color: #ef4444;
}

.product-sort-select {
    height: 42px !important;
    width: 180px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    border: 1.5px solid #cbd5e1 !important;
    background-color: #f8faf8 !important;
    color: #1e293b !important;
    padding-left: 14px !important;
    padding-right: 32px !important;
    cursor: pointer;
    transition: all 0.25s ease;
}
.product-sort-select:focus {
    border-color: #0e7536 !important;
    box-shadow: 0 0 0 3px rgba(14, 117, 54, 0.15) !important;
    background-color: #ffffff !important;
}

.product-view-btn-group {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    height: 42px;
}
.product-view-btn-group .view-btn {
    border: none;
    background: transparent;
    color: #64748b;
    width: 36px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.product-view-btn-group .view-btn:hover {
    color: #0e7536;
}
.product-view-btn-group .view-btn.active {
    background: #0e7536;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(14, 117, 54, 0.3);
}

/* Mobile Phone 2-Column Product Grid Styling (<576px) */
@media (max-width: 575.98px) {
    .top-controls-bar {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-bottom: 8px !important;
    }
    .mb-5 {
        margin-bottom: 0 !important;
    }
    .mb-5 {
        margin-bottom: 0 !important;
    }
    .row > * {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    #productListingContainer,
    .mobile-product-scroll {
        --bs-gutter-x: 0.5rem !important;
        --bs-gutter-y: 0.75rem !important;
    }
    #productListingContainer > [class*="col-"],
    .mobile-product-scroll > [class*="col-"] {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
    .product-card {
        border-radius: 12px !important;
    }
    .product-badge-discount {
        top: 6px !important;
        left: 6px !important;
        font-size: 9.5px !important;
        padding: 2px 6px !important;
    }
    .product-img-wrap {
        height: 140px !important;
        padding: 6px !important;
    }
    .product-img-wrap img {
        max-height: 125px !important;
    }
    .product-card-body {
        padding: 10px 8px !important;
    }
    .product-title {
        font-size: 12.5px !important;
        margin-bottom: 4px !important;
        height: 32px !important;
        line-height: 1.25 !important;
    }
    .product-cat-small {
        font-size: 9px !important;
        margin-bottom: 2px !important;
    }
    .product-stars {
        font-size: 9.5px !important;
        margin-bottom: 4px !important;
    }
    .product-price-box {
        gap: 4px !important;
        margin-bottom: 6px !important;
    }
    .price-current {
        font-size: 14px !important;
    }
    .price-old {
        font-size: 11px !important;
    }
    .product-card-actions {
        gap: 3px !important;
        margin-top: 4px !important;
    }
    .btn-add-cart {
        font-size: 10.5px !important;
        padding: 6px 4px !important;
    }
    .btn-add-cart i {
        font-size: 10px !important;
    }
    .btn-add-cart span {
        display: inline !important;
    }
    .btn-card-action {
        width: 28px !important;
        height: 28px !important;
        font-size: 10.5px !important;
        flex-shrink: 0 !important;
    }
}

/* Fix .rounded-4 Utility Class & Card Padding (1rem radius + 14px padding) */
.rounded-4 {
    border-radius: 1rem !important;
    padding: 14px !important;
}

/* Revert default badge/btn padding when using .rounded-4 */
.badge.rounded-4,
.btn.rounded-4,
.btn-close.rounded-4,
.nav-link.rounded-4,
.form-control.rounded-4,
.form-select.rounded-4 {
    padding: initial !important;
}

/* Utility Helper for 14px Padding */
.p-3.5 {
    padding: 14px !important;
}

/* Review Cards Container Padding Enforcement */
#reviewsListContainer .p-3.5,
#reviewsListContainer .rounded-4 {
    padding: 14px !important;
    border-radius: 1rem !important;
}
