/* Banner Cement Section */
.banner-cement-section {
    padding: 20px 0;
    background: #f5f5f5;
}

/* Brands Section Compact */
.brands-section-compact {
    padding: 30px 0;
    background: white;
}

.brands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.brands-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.view-all-btn {
    background: #2E8B57;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.brands-grid-compact {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.brand-item-compact {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
}

.brand-item-compact:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.brand-item-compact img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

/* Products with Sidebar Layout */
.products-with-sidebar-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.products-sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.main-products-area {
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.section-header-inline h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.product-filter-tabs {
    display: flex;
    gap: 10px;
}

.filter-tab {
    padding: 8px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.filter-tab.active {
    background: #2E8B57;
    color: white;
    border-color: #2E8B57;
}

.filter-tab:hover {
    border-color: #2E8B57;
}

.product-tab-content {
    display: none;
}

.product-tab-content.active {
    display: block;
}

.products-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card-compact {
    position: relative;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card-compact:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.sale-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e74c3c;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    z-index: 5;
    letter-spacing: 0.3px;
}

.product-img-compact {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-img-compact img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-details-compact {
    padding: 15px;
}

.product-details-compact h3 {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    min-height: 40px;
    line-height: 1.3;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.new-price {
    color: #28a745;
    font-size: 18px;
    font-weight: 700;
}

/* Sidebar Featured */
.sidebar-featured {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.sidebar-featured h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.featured-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.featured-item-sidebar {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.featured-item-sidebar:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.featured-item-sidebar a {
    display: flex;
    gap: 12px;
    padding: 10px;
    text-decoration: none;
}

.featured-item-sidebar img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 5px;
}

.featured-info-sidebar h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.price-sidebar {
    display: flex;
    align-items: center;
    gap: 6px;
}

.old-price-small {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}

.new-price-small {
    color: #28a745;
    font-size: 16px;
    font-weight: 700;
}

.sidebar-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    padding: 15px;
    color: white;
    transition: all 0.3s ease;
}

.sidebar-banner:hover .banner-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
}

.banner-overlay h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.banner-overlay p {
    font-size: 13px;
    opacity: 0.9;
    margin: 5px 0 0 0;
}

/* Reviews Section Home */
.reviews-section-home {
    padding: 50px 0;
    background: white;
}

.section-title-center {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.reviews-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

.review-card-home {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.review-header {
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: #2E8B57;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.reviewer-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.review-card-home p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Features Section */
.features-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2E8B57 0%, #32CD32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.feature-icon i {
    color: #ffffff !important;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-sidebar-layout {
        grid-template-columns: 1fr;
    }
    
    .products-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brands-grid-compact {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brands-grid-compact {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reviews-grid-home {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-filter-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .products-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .brands-grid-compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}


/* Hero Banner Section */
/* Hero Slider Section */
.hero-slider-section {
    padding: 0;
    margin-bottom: 30px;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-image-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slide-image-link:hover {
    transform: scale(1.02);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 500px;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    border-radius: 15px;
    z-index: -1;
}

/* Remove overlay on mobile for better image visibility */
@media (max-width: 768px) {
    .slide-content::before {
        background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    }
}

.slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slide-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2E8B57 0%, #32CD32 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
    color: white;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #2E8B57;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Dots Indicator */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Side Banners Grid */
.side-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.side-banner-item {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.side-banner-item:nth-child(2) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.side-banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.side-banner-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.side-banner-item p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.hero-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white;
}

.side-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-banner-item {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 10px;
    height: 190px;
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.side-banner-item:nth-child(2) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.side-banner-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.side-banner-item p {
    font-size: 16px;
    opacity: 0.95;
}

/* Cement Banner */
.banner-cement-section .cement-bags-slider {
    background: linear-gradient(to right, #2E8B57, #32CD32);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.banner-cement-section .cement-bags-slider img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.9;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-banner-grid {
        grid-template-columns: 1fr;
    }
    
    .main-hero-banner {
        height: 350px;
    }
    
    .side-banners {
        flex-direction: row;
    }
    
    .side-banner-item {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .hero-content-overlay {
        padding: 40px 30px;
    }
    
    .hero-content-overlay h1 {
        font-size: 32px;
    }
    
    .hero-content-overlay p {
        font-size: 18px;
    }
    
    .main-hero-banner {
        height: 300px;
    }
    
    .side-banners {
        flex-direction: column;
    }
    
    .side-banner-item {
        height: 120px;
        padding: 20px;
    }
    
    .side-banner-item h3 {
        font-size: 20px;
    }
    
    .side-banner-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-banner-section {
        padding: 10px 0;
    }
    
    .hero-banner-grid {
        gap: 10px;
    }
    
    .main-hero-banner {
        height: 280px;
        border-radius: 8px;
    }
    
    .hero-content-overlay {
        padding: 30px 20px;
    }
    
    .hero-content-overlay h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .hero-content-overlay p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-shop-btn {
        padding: 10px 25px;
        font-size: 13px;
        border-radius: 20px;
        color: white;
    }
    
    .side-banners {
        gap: 10px;
    }
    
    .side-banner-item {
        height: 100px;
        padding: 15px;
        border-radius: 8px;
    }
    
    .side-banner-item h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .side-banner-item p {
        font-size: 12px;
    }
}


/* Mobile Specific Styles - Enhanced with Logo Colors */
@media (max-width: 480px) {
    /* Container Mobile */
    .container {
        padding: 0 10px;
    }
    
    /* Cement Banner Mobile */
    .banner-cement-section {
        padding: 10px 0;
        display: none; /* Hide on mobile for cleaner look */
    }
    
    /* Brands Section Mobile */
    .brands-section-compact {
        padding: 20px 0;
        background: white;
    }
    
    .brands-header {
        margin-bottom: 15px;
        padding: 0 5px;
    }
    
    .brands-header h2 {
        font-size: 18px;
        font-weight: 700;
        color: var(--balaji-text-dark);
    }
    
    .view-all-btn {
        padding: 6px 12px;
        font-size: 11px;
        border-radius: 4px;
        background: var(--balaji-primary);
        color: white;
        transition: all 0.3s ease;
    }
    
    .view-all-btn:hover {
        background: var(--balaji-secondary);
        transform: translateY(-1px);
    }
    
    .brands-grid-compact {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .brand-item-compact {
        padding: 8px;
        border-radius: 6px;
        background: var(--balaji-lighter);
        border: 1px solid var(--balaji-border);
        transition: all 0.3s ease;
    }
    
    .brand-item-compact:hover {
        border-color: var(--balaji-primary);
        box-shadow: 0 3px 10px rgba(46, 139, 87, 0.15);
        transform: translateY(-2px);
    }
    
    .brand-item-compact img {
        height: 45px;
    }
    
    /* Products Section Mobile */
    .products-with-sidebar-section {
        padding: 20px 0;
        background: var(--balaji-lighter);
    }
    
    .products-sidebar-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .main-products-area {
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(46, 139, 87, 0.1);
        background: white;
    }
    
    .section-header-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 12px;
        margin-bottom: 15px;
        border-bottom: 2px solid var(--balaji-border);
    }
    
    .section-header-inline h2 {
        font-size: 17px;
        font-weight: 700;
        color: var(--balaji-text-dark);
    }
    
    .product-filter-tabs {
        width: 100%;
        display: flex;
        gap: 6px;
    }
    
    .filter-tab {
        padding: 8px 0;
        font-size: 11px;
        flex: 1;
        text-align: center;
        border-radius: 6px;
        font-weight: 600;
        transition: all 0.3s ease;
        background: white;
        border: 2px solid var(--balaji-border);
        color: var(--balaji-text-dark);
    }
    
    .filter-tab.active {
        background: var(--balaji-primary);
        color: white;
        border-color: var(--balaji-primary);
        box-shadow: 0 3px 10px rgba(46, 139, 87, 0.3);
    }
    
    .filter-tab:hover {
        border-color: var(--balaji-primary);
        color: var(--balaji-primary);
    }
    
    .filter-tab.active:hover {
        color: white;
    }
    
    .products-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-card-compact {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(46, 139, 87, 0.1);
        background: white;
        border: 1px solid var(--balaji-border);
        transition: all 0.3s ease;
    }
    
    .product-card-compact:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
        border-color: var(--balaji-primary);
    }
    
    .product-card-compact:active {
        transform: scale(0.98);
    }
    
    .sale-tag {
        top: 5px;
        left: 5px;
        padding: 2px 5px;
        font-size: 8px;
        font-weight: 700;
        border-radius: 2px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        background: #e74c3c;
        color: white;
    }
    
    .product-img-compact {
        height: 140px;
        padding: 8px;
        background: var(--balaji-lighter);
    }
    
    .product-img-compact img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .product-details-compact {
        padding: 8px;
    }
    
    .product-details-compact h3 {
        font-size: 12px;
        min-height: 32px;
        margin-bottom: 6px;
        line-height: 1.3;
        font-weight: 600;
        color: var(--balaji-text-dark);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .price-row {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .old-price {
        font-size: 10px;
        color: var(--balaji-text-medium);
        text-decoration: line-through;
    }
    
    .new-price {
        font-size: 15px;
        font-weight: 700;
        color: var(--balaji-primary);
    }
    
    /* Enhanced Order Now Button for Mobile - Logo Green Colors */
    .btn-order-now {
        width: 100%;
        padding: 12px 16px;
        background: linear-gradient(135deg, #2E8B57 0%, #32CD32 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        box-shadow: 0 4px 15px rgba(46, 139, 87, 0.4);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        margin: 0;
        position: relative;
        overflow: hidden;
    }
    
    .btn-order-now::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        transform: translate(-50%, -50%);
        transition: width 0.4s, height 0.4s;
    }
    
    .btn-order-now:hover::before,
    .btn-order-now:active::before {
        width: 200px;
        height: 200px;
    }
    
    .btn-order-now:hover, 
    .btn-order-now:active {
        background: linear-gradient(135deg, #228B22 0%, #2E8B57 100%);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 20px rgba(46, 139, 87, 0.6);
    }
    
    .btn-order-now:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 3px 12px rgba(46, 139, 87, 0.4);
    }
    
    .btn-order-now i {
        font-size: 14px;
    }
    
    /* Sidebar Mobile */
    .sidebar-featured {
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(46, 139, 87, 0.1);
        background: white;
        border: 1px solid var(--balaji-border);
    }
    
    .sidebar-featured h3 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--balaji-text-dark);
    }
    
    .featured-list {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .featured-item-sidebar {
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(46, 139, 87, 0.1);
        border: 1px solid var(--balaji-border);
        transition: all 0.3s ease;
    }
    
    .featured-item-sidebar:hover {
        border-color: var(--balaji-primary);
        box-shadow: 0 3px 10px rgba(46, 139, 87, 0.15);
    }
    
    .featured-item-sidebar a {
        padding: 8px;
        gap: 8px;
    }
    
    .featured-item-sidebar img {
        width: 65px;
        height: 65px;
        border-radius: 4px;
        background: var(--balaji-lighter);
    }
    
    .featured-info-sidebar h4 {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.3;
        color: var(--balaji-text-dark);
    }
    
    .old-price-small {
        font-size: 10px;
        color: var(--balaji-text-medium);
    }
    
    .new-price-small {
        font-size: 13px;
        font-weight: 700;
        color: var(--balaji-primary);
    }
    
    .sidebar-banner {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(46, 139, 87, 0.15);
        border: 1px solid var(--balaji-border);
    }
    
    .banner-overlay {
        padding: 12px;
        background: linear-gradient(to bottom, rgba(46, 139, 87, 0.8), rgba(50, 205, 50, 0.6));
    }
    
    .banner-overlay h4 {
        font-size: 14px;
        font-weight: 700;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    
    .banner-overlay p {
        font-size: 12px;
        color: rgba(255,255,255,0.9);
    }
    
    /* Reviews Section Mobile */
    .reviews-section-home {
        padding: 20px 0;
        background: white;
    }
    
    .section-title-center {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--balaji-text-dark);
        text-align: center;
    }
    
    .reviews-grid-home {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .review-card-home {
        padding: 15px;
        border-radius: 8px;
        background: var(--balaji-lighter);
        border: 1px solid var(--balaji-border);
        box-shadow: 0 2px 6px rgba(46, 139, 87, 0.1);
    }
    
    .review-header {
        margin-bottom: 12px;
    }
    
    .reviewer-avatar {
        width: 38px;
        height: 38px;
        font-size: 16px;
        font-weight: 700;
        background: linear-gradient(135deg, var(--balaji-primary) 0%, var(--balaji-accent) 100%);
        color: white;
    }
    
    .reviewer-info h4 {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 3px;
        color: var(--balaji-text-dark);
    }
    
    .stars {
        font-size: 11px;
        letter-spacing: 1px;
        color: #ffc107;
    }
    
    .review-card-home p {
        font-size: 12px;
        line-height: 1.5;
        color: var(--balaji-text-medium);
    }
    
    /* Features Section Mobile */
    .features-section {
        padding: 20px 0;
        background: var(--balaji-lighter);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .feature-item {
        padding: 15px 10px;
        border-radius: 8px;
        background: white;
        box-shadow: 0 2px 8px rgba(46, 139, 87, 0.1);
        border: 1px solid var(--balaji-border);
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
        border-color: var(--balaji-primary);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin: 0 auto 10px;
        background: linear-gradient(135deg, var(--balaji-primary) 0%, var(--balaji-accent) 100%);
        color: white;
        box-shadow: 0 3px 10px rgba(46, 139, 87, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-icon i {
        color: white !important;
    }
    
    .feature-item h3 {
        font-size: 11px;
        margin-bottom: 5px;
        font-weight: 700;
        color: var(--balaji-text-dark);
        line-height: 1.3;
    }
    
    .feature-item p {
        font-size: 10px;
        line-height: 1.4;
        color: var(--balaji-text-medium);
    }
}


/* Force Order Now button on mobile - Remove any Add to Cart */
@media (max-width: 768px) {
    /* Hide any add to cart buttons */
    .btn-add-to-cart,
    button[onclick*="addToCart"],
    a[onclick*="addToCart"] {
        display: none !important;
    }
    
    /* Ensure Order Now button is visible */
    .btn-order-now {
        display: flex !important;
        width: 100%;
        padding: 10px 16px;
        background: linear-gradient(135deg, #2E8B57 0%, #32CD32 100%);
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 13px;
        font-weight: 600;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 8px;
    }
    
    .product-card-compact .btn-order-now {
        margin: 0 8px 8px 8px;
    }
}

/* Hero Slider Responsive Styles */
@media (max-width: 1024px) {
    .hero-slider-container {
        height: 400px;
    }
    
    .slide-content {
        left: 30px;
        max-width: 400px;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
}