:root {
    --primary: #3CB815;
    --secondary: #F65005;
    --light: #F7F8FC;
    --dark: #111111;
}

:root {
    --hvt-primary: #28a745;
    --hvt-secondary: #6c757d;
    --hvt-success: #20c997;
    --hvt-warning: #ffc107;
    --hvt-light: #f8f9fa;
    --hvt-dark: #343a40;
    --hvt-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --hvt-shadow: 0 10px 30px rgba(40, 167, 69, 0.1);
    --hvt-shadow-hover: 0 20px 40px rgba(40, 167, 69, 0.2);
}

.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.error {
    color: red !important;
    font-size: 12px;
}

.form-floating .text-danger {
    margin-top: 4px;
    font-size: 12px;
    display: block;
    position: absolute;
    top: 45px;
}

a.active {
    color: #F65005;
}

.hvt-navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e8ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.hvt-navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #28a745 !important;
    margin: 0;
    transition: transform 0.3s ease;
}

.hvt-navbar-brand:hover {
    transform: scale(1.05);
}

.hvt-brand-secondary {
    color: #6c757d !important;
}

.hvt-nav-container {
    padding: 0.5rem 1rem;
}

.hvt-nav-links {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hvt-nav-item {
    margin: 0 0.5rem;
}

.hvt-nav-link {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.hvt-nav-link:hover,
.hvt-nav-link.hvt-active {
    color: #28a745;
    background-color: #e8f5e8;
}

/* .hvt-nav-link.hvt-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: #28a745;
    border-radius: 2px;
} */

.hvt-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hvt-search-container {
    position: relative;
    margin-right: 0.5rem;
}

.hvt-search-input {
    width: 200px;
    padding: 0.5rem 0.75rem;
    padding-right: 2.5rem;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.hvt-search-input:focus {
    outline: none;
    border-color: #28a745;
    background: white;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
}

.hvt-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: #28a745;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hvt-search-btn:hover {
    background: #218838;
    transform: translateY(-50%) scale(1.05);
}

.hvt-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.hvt-icon-btn:hover {
    border-color: #28a745;
    color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.hvt-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Global Styles */
.hvt-container {
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
    min-height: 100vh;
}

.hvt-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hvt-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 10 Q 25 0 50 10 T 100 10 V 20 H 0 Z" fill="rgba(40,167,69,0.03)"/></svg>') repeat-x;
    pointer-events: none;
}

/* About Section */
.hvt-about-container {
    background: var(--hvt-gradient);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--hvt-shadow);
    transition: all 0.3s ease;
}

.hvt-about-container:hover {
    transform: translateY(-10px);
    box-shadow: var(--hvt-shadow-hover);
}

.hvt-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hvt-about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(40, 167, 69, 0.2) 0%, transparent 50%);
}

.hvt-about-title {
    -webkit-background-clip: text;
    background-clip: text;
    color: #111111;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.hvt-feature-check {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hvt-cta-button {
    background: var(--hvt-gradient);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.hvt-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
    color: white;
}

/* Features Section */
.hvt-features-section {
    background: white;
    position: relative;
}

.hvt-feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(40, 167, 69, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hvt-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.1), transparent);
    transition: left 0.5s;
}

.hvt-feature-card:hover::before {
    left: 100%;
}

.hvt-feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(40, 167, 69, 0.2);
    border-color: var(--hvt-primary);
}

.hvt-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--hvt-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hvt-feature-card:hover .hvt-feature-icon {
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.hvt-feature-title {
    color: var(--hvt-dark);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.hvt-feature-button {
    background: transparent;
    border: 2px solid var(--hvt-primary);
    color: var(--hvt-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hvt-feature-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--hvt-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.hvt-feature-button:hover::before {
    left: 0;
}

.hvt-feature-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* Products Section */
.hvt-products-section {
    background: white;
}

.hvt-product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.hvt-tab-button {
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid var(--hvt-primary);
    color: var(--hvt-primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hvt-tab-button.active,
.hvt-tab-button:hover {
    background: var(--hvt-primary);
    color: rgb(0, 0, 0);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.hvt-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.hvt-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(40, 167, 69, 0.2);
}

.hvt-product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.hvt-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hvt-product-card:hover .hvt-product-image img {
    transform: scale(1.1);
}

.hvt-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--hvt-gradient);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.hvt-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hvt-product-card:hover .hvt-product-overlay {
    opacity: 1;
}

.hvt-product-info {
    padding: 25px;
    text-align: center;
}

.hvt-product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hvt-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

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

.hvt-product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hvt-primary);
    margin-bottom: 20px;
}

.hvt-product-price span,
.price-tag span {
    font-size: 0.7rem;
    color: var(--hvt-secondary);
}

.hvt-product-actions {
    display: flex;
    border-top: 1px solid rgba(40, 167, 69, 0.1);
}

.hvt-product-action {
    flex: 1;
    padding: 15px;
    text-align: center;
    color: var(--hvt-primary);
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}

.hvt-product-action:hover {
    background: var(--hvt-primary);
    color: white;
}

.hvt-product-action:first-child {
    border-right: 1px solid rgba(40, 167, 69, 0.1);
}

/* Visit Firm Section */
.hvt-visit-section {
    background: var(--hvt-gradient);
    position: relative;
    overflow: hidden;
}

.hvt-visit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-100px) translateY(-100px);
    }
}

.hvt-visit-content {
    position: relative;
    z-index: 2;
}

.hvt-visit-title {
    color: white;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hvt-visit-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
}

.hvt-visit-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hvt-visit-button:hover {
    background: white;
    color: var(--hvt-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Testimonials Section */
.hvt-testimonials-section {
    background: white;
}

.hvt-testimonial-card {
    background: white;
    border-radius: 20px;
    /* height: 85% !important;  */
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.hvt-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(40, 167, 69, 0.15);
}

.hvt-testimonial-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    color: var(--hvt-primary);
    font-size: 3rem;
}

.hvt-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--hvt-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.hvt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hvt-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--hvt-primary);
    padding: 3px;
}

.hvt-testimonial-info h5 {
    color: var(--hvt-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.hvt-testimonial-info span {
    color: var(--hvt-primary);
    font-weight: 600;
}

/* Blog Section */
.hvt-blog-section {
    background: white;
}

.hvt-blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.hvt-blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(40, 167, 69, 0.2);
}

.hvt-blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.hvt-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hvt-blog-card:hover .hvt-blog-image img {
    transform: scale(1.1);
}

.hvt-blog-content {
    padding: 30px;
}

.hvt-blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hvt-dark);
    line-height: 1.4;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.hvt-blog-title:hover {
    color: var(--hvt-primary);
}

.hvt-blog-meta {
    border-top: 1px solid rgba(40, 167, 69, 0.1);
    padding-top: 20px;
    display: flex;
    gap: 20px;
}

.hvt-blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hvt-secondary);
    font-size: 0.9rem;
}

.hvt-blog-meta-item i {
    color: var(--hvt-primary);
}

/* Section Headers */
.hvt-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.hvt-section-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--hvt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hvt-section-subtitle {
    font-size: 1.2rem;
    color: var(--hvt-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
.hvt-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.hvt-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hvt-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hvt-section {
        padding: 60px 0;
    }

    .hvt-about-title,
    .hvt-visit-title,
    .hvt-section-title {
        font-size: 2rem;
    }

    .hvt-feature-card,
    .hvt-product-card,
    .hvt-testimonial-card,
    .hvt-blog-card {
        margin-bottom: 30px;
    }

    .hvt-product-tabs {
        flex-direction: column;
        align-items: center;
    }
}

/* Loading Animation */
.hvt-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    border-top-color: var(--hvt-primary);
    animation: spin 1s ease-in-out infinite;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--hvt-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hvt-primary);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.hvt-dropdown {
    position: relative;
}

.hvt-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 6px;
}

.hvt-dropdown:hover .hvt-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hvt-dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
}

.hvt-dropdown-item:last-child {
    border-bottom: none;
}

.hvt-dropdown-item:hover {
    background: #f8f9fa;
    color: #28a745;
    padding-left: 1.2rem;
}

.hvt-login-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.hvt-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    color: white;
}

.hvt-signup-btn {
    background: transparent;
    color: #28a745;
    border: 2px solid #28a745;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    margin-left: 0.25rem;
}

.hvt-signup-btn:hover {
    background: #28a745;
    color: white;
    transform: translateY(-1px);
}

.hvt-slide {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hvt-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.hvt-carousel-content {
    position: relative;
    z-index: 2;
    color: white;
    top: 50%;
    transform: translateY(-50%);
}

@media(max-width: 768px) {
    .hvt-carousel-title {
        font-size: 2.2rem;
    }

    .hvt-slide {
        background-position: top center;
    }
}


/* =============================
   MAIN CAROUSEL CONTAINER
============================= */

.hvt-hero-carousel {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}


/* =============================
   SLIDE BACKGROUND + OVERLAY
============================= */
.hvt-carousel-item {
    height: 75vh;
    /* better responsive height */
    min-height: 600px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.hvt-carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    /* shorthand: top, right, bottom, left = 0 */
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.8), rgba(32, 201, 151, 0.6));
    z-index: 1;
}


/* =============================
   WAVE EFFECT AT BOTTOM
============================= */
.hvt-carousel-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
}


/* =============================
   CONTENT AREA (TEXT SIDE)
============================= */
.hvt-carousel-content {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
}

.hvt-reel-video {
    position: relative;
    width: 100%;
    padding-top: 177%;
    /* 9:16 Reel Aspect Ratio */
    overflow: hidden;
}

.hvt-reel-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* Tablet / Mobile */
@media(max-width: 992px) {
    .hvt-reels-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media(max-width: 576px) {
    .hvt-reels-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =============================
   IMAGE WRAPPER (RIGHT SIDE)
============================= */
.hvt-carousel-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* evenly fill column height */
}

.hvt-carousel-img-wrapper img {
    max-width: 100%;
    max-height: 380px;
    /* slightly taller image */
    border-radius: 16px;
    object-fit: contain;
    transition: transform 0.4s ease-in-out;
    /* smooth zoom on hover */
}

.hvt-carousel-img-wrapper img:hover {
    transform: scale(1.05);
    /* subtle zoom effect */
}

/* =============================
   BUTTON RESPONSIVENESS
============================= */
.hvt-carousel-btn {
    margin-right: 12px;
}


/* =============================
   RESPONSIVE FIXES
============================= */
@media (max-width: 992px) {
    .hvt-carousel-content {
        text-align: center;
    }

    .hvt-carousel-btn {
        margin: 8px 0;
    }

    .hvt-carousel-img-wrapper {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hvt-carousel-content {
        top: 45%;
    }

    .hvt-carousel-img-wrapper img {
        max-height: 250px;
    }
}



.hvt-carousel-badge {
    background: rgba(255, 193, 7, 0.9);
    color: var(--hvt-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hvt-carousel-title {
    font-size: 4rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hvt-carousel-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
}

.hvt-carousel-btn {
    padding: 1rem 2.5rem;
    border-radius: 35px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-right: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hvt-carousel-btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--hvt-primary);
    border: 2px solid transparent;
}

.hvt-carousel-btn-primary:hover {
    background: white;
    color: var(--hvt-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hvt-carousel-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hvt-carousel-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.hvt-carousel-controls .carousel-control-prev,
.hvt-carousel-controls .carousel-control-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hvt-carousel-controls .carousel-control-prev:hover,
.hvt-carousel-controls .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: white;
}

.hvt-carousel-controls .carousel-control-prev {
    left: 3rem;
}

.hvt-carousel-controls .carousel-control-next {
    right: 3rem;
}

/* Background Images */
.hvt-bg-vegetables {
    background-image: linear-gradient(135deg, rgba(40, 167, 69, 0.8), rgba(32, 201, 151, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%2328a745" width="1920" height="1080"/><circle fill="%23ffffff" fill-opacity="0.1" cx="200" cy="200" r="100"/><circle fill="%23ffffff" fill-opacity="0.05" cx="800" cy="300" r="150"/><circle fill="%23ffffff" fill-opacity="0.08" cx="1400" cy="400" r="120"/></svg>');
}

.hvt-bg-organic {
    background-image: linear-gradient(135deg, rgba(32, 201, 151, 0.8), rgba(40, 167, 69, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%2320c997" width="1920" height="1080"/><circle fill="%23ffffff" fill-opacity="0.1" cx="300" cy="100" r="80"/><circle fill="%23ffffff" fill-opacity="0.06" cx="900" cy="200" r="200"/><circle fill="%23ffffff" fill-opacity="0.09" cx="1500" cy="300" r="90"/></svg>');
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
    /* ensure buttons are on top */
}



/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hvt-nav-container {
        padding: 0.5rem 1rem;
    }

    .hvt-search-input {
        width: 160px;
    }

    .hvt-nav-links {
        flex-wrap: wrap;
    }

    .hvt-nav-actions {
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hvt-search-input {
        width: 120px;
    }

    .hvt-nav-item {
        margin: 0 0.25rem;
    }

    .hvt-nav-actions {
        gap: 0.25rem;
    }

    .hvt-login-btn,
    .hvt-signup-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }
}


/* Basic carousel layout */
.hvt-product-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.hvt-product-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.hvt-product-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 0 0.75rem;
}

/* Optional: arrows styling (you can tweak to match your design) */
.hvt-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.hvt-carousel-prev {
    left: -20px;
}

.hvt-carousel-next {
    right: -20px;
}

.hvt-carousel-arrow:focus {
    outline: none;
}

/* For very small screens, tighten side padding */
@media (max-width: 575.98px) {
    .hvt-product-slide {
        padding: 0 0.5rem;
    }
}


.hvt-section {
    background: white;
    /* border-radius: 20px;
    padding: 60px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

.hvt-section-header {
    margin-bottom: 30px;
}

.hvt-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.hvt-section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
}

.hvt-product-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hvt-tab-button {
    padding: 12px 30px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hvt-tab-button:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.hvt-tab-button.active {
    background: linear-gradient(135deg, #24B568 0%, #24B568 100%);
    border-color: #24B568;
    color: white;
}

.tab-content {
    margin-top: 50px;
}

.hvt-tab-pane h3 {
    color: #2d3748;
    font-weight: 700;
    font-size: 1.8rem;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

/* Product Card */
.hvt-product-card {
    flex: 0 0 calc(25% - 15px);
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hvt-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hvt-product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.hvt-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hvt-product-card:hover .hvt-product-image img {
    transform: scale(1.1);
}

.hvt-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.hvt-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #24B568;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: 120px;
    text-align: center;
}

.hvt-product-info {
    padding: 20px;
}

.hvt-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    min-height: 50px;
}

.hvt-product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #24B568;
}

.hvt-product-actions {
    padding: 0 20px 20px;
}

.carousel-control {
    z-index: 50 !important;
    /* 🔥 Puts arrows above everything */
    position: absolute;
    /* Required for z-index to work */
}

.hvt-product-action {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #24B568 0%, #24B568 100%);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* .hvt-product-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
} */

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgb(200, 200, 200);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: #24B568;
    color: white;
}

.carousel-control-prev {
    left: 35px;
}

.carousel-control-next {
    right: 35px;
}

.hvt-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #24B568 0%, #24B568 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.hvt-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .hvt-product-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .hvt-product-card {
        flex: 0 0 calc(50% - 10px);
    }

    .hvt-section-title {
        font-size: 2rem;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hvt-product-card {
        flex: 0 0 100%;
    }

    .hvt-product-tabs {
        justify-content: center;
    }
}

.hvt-tab-pane {
    display: none;
}

.hvt-tab-pane.active {
    display: block;
}

.hvt-testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.hvt-testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.hvt-testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* 3 cards per view on large screens */
.hvt-testimonial-slide {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 8px;
}

/* 2 per row on medium screens */
@media (max-width: 992px) {
    .hvt-testimonial-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* 1 per row on small screens */
@media (max-width: 576px) {
    .hvt-testimonial-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Arrows – you can match your product carousel styles here */
.hvt-testimonial-arrow {
    border: none;
    background: #ffffff;
    border-radius: 50%;
    padding: 8px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    width: 45px !important;
}

.hvt-testimonial-arrow i {
    font-size: 14px;
}



.whatsapp-insta {
    border-radius: 12px;              /* Default shape */
    transition: all 0.35s ease;       /* Smooth transition */
}

.whatsapp-insta:hover {
    cursor: pointer !important;
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;              /* Keep shape on hover */
}


.floating-cart-btn {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    color: white;
    padding: 14px 24px;
    border-radius: 12px 12px 0 0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-cart-btn:hover {
    background: linear-gradient(135deg, #245c43, #327e5a);
    transform: translateX(-50%) translateY(-4px);
    color: black;
}

.floating-cart-btn i {
    font-size: 1.4rem;
    position: relative;
}

.floating-cart-btn .badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ff3d00;
    color: #fff;
    font-size: 0.65rem;
    padding: 3px 6px;
    border-radius: 50%;
    font-weight: bold;
}

.short-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2; /* default collapsed */
    transition: all .3s ease;
  }
  
  .short-description.expanded {
    -webkit-line-clamp: unset; /* remove clamp */
    display: block;            /* allow full content */
  }

  .readmore-link {
    color: #007bff;
    cursor: pointer;
    font-weight: 500;
    text-decoration: underline;
  }
  .readmore-link:hover {
    text-decoration: none;
  }
  
.search-results-box {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    max-height: 350px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.search-item {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
}

.search-item:hover {
    background: #f8f8f8;
}

.search-item img {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    margin-right: 10px;
    object-fit: cover;
}

.search-no-result {
    padding: 12px;
    text-align: center;
    color: #777;
}

.hvt-tab-button.hvt-active {
    background: #24B568;
    color: #fff;
    border-color: #24B568;
}
