/* ===================================================
   KRISHI AI – AGRISTORE STYLESHEET
   Inspired by BigHaat.com: Clean, Product-Focused, Light Green Theme
=================================================== */

:root {
    --brand-green: #0b7a3a;
    --brand-green-hover: #085a2b;
    --brand-green-light: #e8f5ec;
    --brand-green-tint: #f2f9f4;
    --brand-accent-yellow: #f59e0b;
    --brand-red: #dc2626;
    --text-primary: #192a1e;
    --text-secondary: #5c6f60;
    --text-muted: #889c8d;
    --border-color: #e2ede4;
    --border-subtle: #edf4ee;
    --bg-body: #f8faf8;
    --bg-surface: #ffffff;
    --card-shadow: 0 2px 6px rgba(11, 122, 58, 0.04);
    --card-shadow-hover: 0 8px 20px rgba(11, 122, 58, 0.09);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-full: 9999px;
    --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================================
   HEADER & NAVIGATION
=================================================== */

.store-top-strip {
    background: var(--brand-green-tint);
    border-bottom: 1px solid var(--border-color);
    padding: 6px 20px;
    font-size: 12.5px;
    color: var(--text-secondary);
}

.store-top-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.store-top-strip a {
    color: var(--brand-green);
    font-weight: 600;
}

.store-top-strip a:hover {
    text-decoration: underline;
}

.store-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.store-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.store-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.store-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: var(--brand-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.store-brand-text h1 {
    font-size: 19px;
    font-weight: 800;
    color: var(--brand-green);
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.store-brand-text span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
}

/* Search Bar (BigHaat Style - prominent, clean) */
.store-search-form {
    flex: 1;
    max-width: 520px;
    position: relative;
}

.store-search-input {
    width: 100%;
    height: 42px;
    padding: 0 42px 0 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 13.5px;
    background: var(--bg-body);
    color: var(--text-primary);
    outline: none;
    transition: all 0.2s ease;
}

.store-search-input:focus {
    background: var(--bg-surface);
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(11, 122, 58, 0.1);
}

.store-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    background: var(--brand-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.15s ease;
}

.store-search-btn:hover {
    background: var(--brand-green-hover);
}

.store-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    transition: all 0.15s ease;
}

.store-header-btn:hover {
    background: var(--brand-green-light);
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.store-cart-btn {
    position: relative;
    background: var(--brand-green);
    color: #ffffff;
    border: 1px solid var(--brand-green);
}

.store-cart-btn:hover {
    background: var(--brand-green-hover);
    color: #ffffff;
    border-color: var(--brand-green-hover);
}

.store-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--brand-accent-yellow);
    color: #192a1e;
    font-size: 11px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: var(--radius-full);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* ===================================================
   CATEGORY BAR (BigHaat Style)
=================================================== */

.store-category-bar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.store-category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.store-category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-body);
    transition: all 0.15s ease;
    cursor: pointer;
}

.store-category-chip:hover {
    background: var(--brand-green-light);
    color: var(--brand-green);
    border-color: var(--brand-green);
}

.store-category-chip.active {
    background: var(--brand-green);
    color: #ffffff;
    border-color: var(--brand-green);
    box-shadow: 0 2px 6px rgba(11, 122, 58, 0.2);
}

/* ===================================================
   MAIN STORE CONTAINER & FILTERS
=================================================== */

.store-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 48px;
}

.store-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
}

.store-toolbar-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.store-toolbar-title span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 6px;
}

.store-toolbar-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-select {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    font-size: 13px;
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
}

.store-select:focus {
    border-color: var(--brand-green);
}

/* ===================================================
   PRODUCT GRID & CARDS (Clean BigHaat style)
=================================================== */

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.store-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    animation: cardEntrance 0.45s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    position: relative;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.store-card:hover {
    transform: translateY(-5px);
    border-color: #8cd4a3;
    box-shadow: 0 12px 28px rgba(11, 122, 58, 0.12), 0 2px 8px rgba(0,0,0,0.04);
}

.store-card-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 72%; /* 4:3 Aspect Ratio */
    background: #f4f6f4;
    overflow: hidden;
}

.store-card-img-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.store-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-card:hover .store-card-img {
    transform: scale(1.07);
}

.store-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--brand-green);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 2;
}

.pulse-badge {
    animation: badgePulse 2.4s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 2px 10px rgba(11, 122, 58, 0.4);
    }
}

.store-savings-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #eefdf3;
    color: #0b7a3a;
    border: 1px solid #a7f3d0;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    z-index: 2;
}

.store-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.store-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.store-card-brand {
    font-weight: 600;
    color: var(--brand-green);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.store-card-weight {
    background: #f1f5f2;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 11px;
}

.store-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}

.store-card-title a {
    transition: color 0.15s ease;
}

.store-card-title a:hover {
    color: var(--brand-green);
}

.store-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--brand-accent-yellow);
    margin-bottom: 6px;
}

.store-card-rating span {
    color: var(--text-muted);
    font-size: 11px;
}

.store-card-perks {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.store-perk {
    font-size: 10.5px;
    color: #4b6352;
    background: #f4fbf6;
    border: 1px solid #e1f2e6;
    border-radius: 4px;
    padding: 1px 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.store-card-footer {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.store-price-col {
    display: flex;
    flex-direction: column;
}

.store-current-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--brand-green);
    line-height: 1;
}

.store-mrp-price {
    font-size: 11.5px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: 2px;
}

.store-add-btn {
    background: var(--brand-green-light);
    color: var(--brand-green);
    border: 1px solid #b5d9be;
    font-weight: 700;
    font-size: 12.5px;
    padding: 7px 14px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.store-add-btn:hover {
    background: var(--brand-green);
    color: #ffffff;
    border-color: var(--brand-green);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(11, 122, 58, 0.25);
}

.store-add-btn:active {
    transform: scale(0.97);
}

.ripple-effect::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 0.8s;
}

.ripple-effect:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

.store-qty-control {
    display: inline-flex;
    align-items: center;
    background: var(--brand-green);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.store-qty-btn {
    width: 28px;
    height: 28px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.store-qty-btn:hover {
    background: var(--brand-green-hover);
}

.store-qty-num {
    padding: 0 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
}

/* Empty State */
.store-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    grid-column: 1 / -1;
}

.store-empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.store-empty h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.store-empty p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ===================================================
   SLIDE-IN CART DRAWER
=================================================== */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: var(--bg-surface);
    z-index: 1000;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    transition: right 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
    right: 0;
}

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

.cart-drawer-head h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--brand-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-drawer-close {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
}

.cart-drawer-close:hover {
    background: var(--bg-body);
    color: var(--text-primary);
}

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

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: center;
}

.cart-item-img {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 13px;
    color: var(--brand-green);
    font-weight: 700;
    margin-top: 2px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-drawer-foot {
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-body);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.cart-summary-line.total {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    padding-top: 8px;
    border-top: 1px dashed var(--border-color);
    margin-bottom: 14px;
}

.cart-checkout-btn {
    width: 100%;
    background: var(--brand-green);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 12px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.15s ease;
}

.cart-checkout-btn:hover {
    background: var(--brand-green-hover);
}

/* ===================================================
   CHECKOUT & PRODUCT DETAIL PAGE STYLES
=================================================== */

.store-container-sm {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 20px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
}

@media (max-width: 820px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
}

.checkout-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--brand-green);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 13.5px;
    background: var(--bg-surface);
    color: var(--text-primary);
    outline: none;
    font-family: inherit;
    transition: border-color 0.15s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--brand-green);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.payment-pill-choice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.15s ease;
}

.payment-pill-choice.selected {
    border-color: var(--brand-green);
    background: var(--brand-green-tint);
}

/* Product Detail Specifics */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        padding: 18px;
    }
}

.product-detail-img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 1px solid var(--border-color);
}

/* Toast */
.store-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #192a1e;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.25s ease;
    pointer-events: none;
}

.store-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.store-footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-surface);
    padding: 24px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===================================================
   HERO BANNER CAROUSEL (BigHaat & E-commerce Style)
=================================================== */

.hero-carousel {
    position: relative;
    max-width: 1200px;
    margin: 18px auto 0;
    padding: 0 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-slides {
    position: relative;
    min-height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 122, 58, 0.12);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 32px 48px;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-subtitle {
    font-size: 14.5px;
    opacity: 0.92;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: #ffffff;
    color: var(--brand-green);
    font-weight: 800;
    font-size: 13.5px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.hero-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    background: #f8faf8;
}

.hero-guarantee {
    font-size: 12.5px;
    font-weight: 600;
    opacity: 0.95;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-card {
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    animation: floatVisual 4s ease-in-out infinite alternate;
}

@keyframes floatVisual {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.hero-visual-icon {
    font-size: 46px;
    line-height: 1;
}

.hero-visual-stat strong {
    font-size: 26px;
    font-weight: 800;
    display: block;
    line-height: 1.1;
}

.hero-visual-stat span {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}

/* Nav arrows */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: #192a1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    z-index: 4;
    cursor: pointer;
}

.hero-nav-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    color: var(--brand-green);
}

.hero-prev {
    left: 28px;
}

.hero-next {
    right: 28px;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.hero-dot {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-dot.active {
    width: 38px;
    background: #ffffff;
}

@media (max-width: 768px) {
    .hero-slide {
        padding: 24px 20px;
    }
    .hero-title {
        font-size: 20px;
    }
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 14px;
    }
    .hero-visual {
        display: none;
    }
    .hero-nav-arrow {
        display: none;
    }
}

/* ===================================================
   FLOATING WHATSAPP HELPLINE (Farmer UX)
=================================================== */

.floating-help-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #ffffff;
    border-radius: var(--radius-full);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    font-size: 14px;
    font-weight: 700;
    z-index: 1500;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    animation: helplinePulse 3s infinite;
}

@keyframes helplinePulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65), 0 0 0 6px rgba(37, 211, 102, 0.15);
    }
}

.floating-help-btn:hover {
    background: #20ba59;
    color: #ffffff;
    transform: translateY(-3px) scale(1.04);
}

.floating-help-btn i {
    font-size: 22px;
}

@media (max-width: 600px) {
    .floating-help-btn {
        bottom: 18px;
        right: 18px;
        padding: 10px 14px;
        font-size: 12.5px;
    }
    .floating-help-btn i {
        font-size: 18px;
    }
}