/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner - Slider */
.top-banner {
    background-color: #b70202;
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.banner-marquee {
    width: 100%;
    height: 24px;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    transition: transform 1s ease-in-out;
    height: 100%;
}

.marquee-item {
    font-weight: 500;
    font-size: 14px;
    flex-shrink: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}


/* Header Styles */
.site-header {
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

/* Brand/Logo */
.brand {
    flex-shrink: 0;
}

.site-logo {
    /* height: 40px; */
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

/* Search Section */
.search-section {
    flex: 1;
    max-width: 500px;
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #CCCCCC;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
    outline: none;
    background-color: white;
}

.search-input:focus {
    border-color: #b70202;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background-color: #b70202;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 25px 25px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #d43c3c;
}

/* Cart and Login Section */
.cart-login-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cart-section {
    flex-shrink: 0;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #F0F0F0;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cart-link:hover {
    background-color: #e8e8e8;
}

.cart-icon {
    font-size: 16px;
}

.cart-text {
    font-weight: 500;
}

.cart-count {
    transition: all 0.3s ease;
    display: inline-block;
}

.cart-count.updated {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); color: #b70202; }
    100% { transform: scale(1); }
}

/* Login/Profile Section */
.login-section {
    flex-shrink: 0;
}

.login-link, .profile-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #F0F0F0;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.login-link:hover, .profile-link:hover {
    background-color: #e8e8e8;
}

.login-icon, .profile-icon {
    font-size: 16px;
}

.login-text, .profile-text {
    font-weight: 500;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
.main-nav {
    border-top: 1px solid #f0f0f0;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: #b70202;
}

.nav-list li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #b70202;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Banner Image Responsive */
    .banner-image-desktop {
        display: none !important;
    }
    
    .banner-image-mobile {
        display: block !important;
    }
    
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 15px 0;
    }
    
    /* Hide search section on mobile */
    .search-section {
        display: none;
    }
    
    .brand {
        flex: 1;
    }
    
    /* Mobile cart and login section */
    .cart-login-section {
        gap: 10px;
    }
    
    .cart-text, .login-text, .profile-text {
        display: none;
    }
    
    .cart-link, .login-link, .profile-link {
        padding: 8px 12px;
        border-radius: 20px;
    }
    
    .cart-icon, .login-icon, .profile-icon {
        font-size: 18px;
    }
    
    .cart-section {
        flex-shrink: 0;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #f0f0f0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        text-align: left;
    }
    
    .nav-list li a:hover,
    .nav-list li a.active {
        background-color: #f8f9fa;
    }
    
    .site-logo {
        height: 35px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .top-banner {
        padding: 8px 0;
    }
    
    .marquee-item {
        font-size: 12px;
    }
    
    .banner-marquee {
        height: 20px;
    }
    
    .banner-slider-container {
        height: 250px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .search-section {
        display: none;
    }
    
    .cart-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-list li a {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .site-logo {
        height: 60px;
        max-width: 100px;
    }
    
    .about-overlay-image {
        width: 120px;
        height: 120px;
        bottom: -10px;
        right: -10px;
    }
    
    /* About leaf overlay mobile responsive */
    .about-leaf-overlay {
        max-width: 150px;
        opacity: 0.08;
        top: -50px;
    }
    
    /* About bottom overlay mobile responsive */
    .about-bottom-overlay {
        max-width: 250px;
        opacity: 0.08;
    }
}

/* Main Content Area */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* Categories Carousel */
.categories-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.categories-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.categories-title {
    text-align: center;
    font-size: 2.5rem; /* match .section-title */
    font-weight: 700;  /* match .section-title */
    color: #207000 ;
    margin: 0;
}

.categories-controls {
    display: none; /* Hide navigation buttons */
}

.categories-carousel {
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    z-index: 1;
}

.categories-carousel:active {
    cursor: grabbing;
}

.categories-track {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
    padding: 20px 0;
}

.category-item {
    flex-shrink: 0;
    text-align: center;
}

.category-link {
    text-decoration: none;
    color: #b70202;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.category-link:hover {
    transform: translateY(-5px);
}

.category-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b70202 0%, #d43c3c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(229, 75, 75, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-link:hover .category-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(229, 75, 75, 0.5);
    border: 3px solid;
    /* border-image: linear-gradient(45deg, #b70202, #28a745, #b70202) 1; */
}

.category-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.category-link:hover .category-icon {
    transform: scale(1.1);
}

.category-emoji {
    font-size: 40px;
    transition: transform 0.3s ease;
}

.category-link:hover .category-emoji {
    transform: scale(1.1);
}

.category-name {
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.carousel-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #333;
}

.carousel-btn:hover {
    background: #b70202;
    color: white;
    border-color: #b70202;
    transform: scale(1.05);
}

/* Categories Floating Element */
.categories-floating-element {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.floating-decoration {
    width: 100%;
    height: auto;
    display: block;
    animation: floatOut 15s ease-in-out infinite;
}

@keyframes floatOut {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translate(-20px, -40px) rotate(5deg);
        opacity: 0.25;
    }
    50% {
        transform: translate(-50px, -80px) rotate(0deg);
        opacity: 0.3;
    }
    75% {
        transform: translate(-80px, -120px) rotate(-5deg);
        opacity: 0.25;
    }
    100% {
        transform: translate(-120px, -180px) rotate(0deg);
        opacity: 0.15;
    }
}

/* Categories Floating Element - Bottom Left */
.categories-floating-element-bottom {
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 300px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.floating-decoration-bottom {
    width: 100%;
    height: auto;
    display: block;
    animation: floatOutBottom 15s ease-in-out infinite;
}

@keyframes floatOutBottom {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translate(20px, -40px) rotate(-5deg);
        opacity: 0.25;
    }
    50% {
        transform: translate(50px, -80px) rotate(0deg);
        opacity: 0.3;
    }
    75% {
        transform: translate(80px, -120px) rotate(5deg);
        opacity: 0.25;
    }
    100% {
        transform: translate(120px, -180px) rotate(0deg);
        opacity: 0.15;
    }
}


/* Testimonials Carousel */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 15px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.3s ease;
}

.testimonials-slide {
    display: flex;
    gap: 30px;
    min-width: 100%;
}

.testimonial-card {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 20px;
}

.star {
    font-size: 18px;
    color: #ddd;
    transition: color 0.3s ease;
}

.star.filled {
    color: #ffc107;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.customer-info {
    margin-top: auto;
}

.customer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.customer-location {
    color: #999;
    font-size: 14px;
}

.testimonial-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
}

.testimonial-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #b70202;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    pointer-events: all;
}

.testimonial-btn:hover {
    background: #b70202;
    color: white;
    transform: scale(1.1);
}

/* Banner Slider Section */
.banner-slider-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    border-radius: 12px;
}

.banner-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
    border-radius: 12px 12px 0 0;
}

/* Desktop and Mobile Image Display Control */
.banner-image-desktop {
    display: block;
}

.banner-image-mobile {
    display: none;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #b70202;
    border: 1px solid #b70202;
    transform: scale(1.1);
}

.indicator:hover {
    background: #f0f0f0;
    border-color: #999;
}

/* Products Grid */
.products-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

/* Spicy Powders Section with Fixed Overlay */
.spicy-powders-section {
    position: relative;
    overflow: hidden;
}

/* Spicy Powders Fixed Background Overlay */
.spicy-powders-overlay {
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.fix-bg-decoration {
    width: 100%;
    height: auto;
    display: block;
}

/* Featured Products Section with Fixed Overlay */
.featured-products-section {
    position: relative;
    overflow: hidden;
}

/* Featured Products Fixed Background Overlay */
.featured-products-overlay {
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.fix-bg-1-decoration {
    width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #207000;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    border-radius: 10px;
    border: 1px solid #53811f;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-15px);
    border: 1px solid #b70202;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
}

.product-image:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #53811f;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-mrp {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.product-size {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    flex: 1;
    background-color: #b70202;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #d43c3c;
    transform: translateY(-2px);
}

.add-to-cart-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.add-to-cart-btn:disabled:hover {
    background-color: #6c757d;
    transform: none;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.product-showcase-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.about-image:hover .product-showcase-image {
    transform: rotate(-3deg) scale(1.02);
}

.about-overlay-image {
    position: absolute;
    bottom: -150px;
    right: -30px;
    width: 250px;
    /* height: 200px; */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: rotate(5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.about-image:hover .about-overlay-image {
    transform: rotate(3deg) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.about-text {
    padding-left: 20px;
}

.about-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background-color: #f5f5f5;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.tag-highlight {
    background-color: #b70202;
    color: white;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #207000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b70202;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.about-features {
    margin-bottom: 30px;
}

.features-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: #333;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b70202;
    font-weight: bold;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* About Section Leaf Decoration */
.about-leaf-overlay {
    position: absolute;
    top: -100px;
    right: 0;
    width: 100%;
    max-width: 350px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.leaf-decoration {
    width: 100%;
    height: auto;
    display: block;
    /* transform: rotate(180deg); */
    filter: brightness(0.8);
}

/* About Section Bottom Decoration */
.about-bottom-overlay {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100%;
    max-width: 350px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

.about-bottom-decoration {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1);
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #b70202;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #d43c3c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    border-color: #b70202;
    transform: translateY(-2px);
}

/* Footer - Exact copy from current website */
.or-footer-section-1 {
    background-color: #207000 !important;
    color: white;
}

/* Row and Column Structure (Bootstrap-like) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-3,
.col-md-6 {
    padding: 0 15px;
    box-sizing: border-box;
}

/* Large screens (lg) */
.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

/* Medium screens (md) */
.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.or-footer-widget-wrapper-1 {
    padding: 60px 0 80px;
    position: relative;
}

.or-footer-widget .or-logo-widget p {
    color: #e0e0e0;
    margin: 20px 0;
    line-height: 1.6;
}

.or-footer-widget .widget-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.or-footer-widget .widget-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #b70202;
}

.or-footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.or-footer-widget ul li {
    margin-bottom: 10px;
}

.or-footer-widget ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.or-footer-widget ul li a:hover {
    color: #b70202;
}

.or-footer-widget .or-contact-widget ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.or-footer-widget .or-contact-widget ul li i {
    color: #b70202;
    margin-right: 10px;
    width: 20px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #b70202;
    transform: translateY(-2px);
}

.or-footer-copyright {
    padding: 20px 0;
    background-color: rgba(0,0,0,0.1);
    text-align: center;
}

.or-footer-copyright span {
    color: #e0e0e0;
}

/* Footer Overlay Image */
.footer-overlay-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.footer-bg-overlay {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
    mix-blend-mode: overlay;
}

/* WhatsApp Float Button */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #000;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

/* Lift WhatsApp button above mobile bottom nav on small screens */
@media (max-width: 768px) {
  .has-mobile-bottom-nav .float {
    bottom: calc(var(--rb-bottom-nav-height) + 24px + env(safe-area-inset-bottom));
    z-index: 1100;
  }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #b70202;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
    font-weight: 500;
}

/* Product Card Footer */
.product-card-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.buy-now-btn {
    background-color: #53811f;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
}

.buy-now-btn:hover {
    background-color: #456b1a;
    transform: translateY(-2px);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Button States */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #b70202;
    color: white;
}

.btn-primary:hover {
    background-color: #d43c3c;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #b70202;
    box-shadow: 0 0 0 2px rgba(229, 75, 75, 0.1);
}

/* Alert Styles */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .banner-slider-container {
        height: 210px; /* Maintains 2:1 aspect ratio (420/2) */
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card-footer {
        flex-direction: column;
        gap: 8px;
    }
    
    .add-to-cart-btn,
    .buy-now-btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .product-title {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    /* About section responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-buttons {
        justify-content: center;
    }
    
    .about-overlay-image {
        width: 150px;
        height: 150px;
        bottom: -15px;
        right: -15px;
    }
    
    /* About leaf overlay responsive */
    .about-leaf-overlay {
        max-width: 200px;
        opacity: 0.1;
        top: -50px;
    }
    
    /* About bottom overlay responsive */
    .about-bottom-overlay {
        max-width: 250px;
        opacity: 0.1;
    }
    
    /* Footer responsive */
    .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .or-footer-widget {
        margin-bottom: 30px;
    }
    
    /* Footer overlay responsive */
    .footer-bg-overlay {
        opacity: 0.6;
    }
    
    /* Categories responsive */

    .categories-section {
        padding: 20px 0;
    }
    
    /* Categories floating element responsive */
    .categories-floating-element {
        width: 200px;
        top: -30px;
        right: -60px;
        opacity: 0.15;
    }
    
    /* Categories floating element bottom responsive */
    .categories-floating-element-bottom {
        width: 200px;
        bottom: -30px;
        left: -60px;
        opacity: 0.15;
    }
    
    .categories-track {
        gap: 20px;
    }
    
    .categories-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .categories-controls {
        align-self: center;
    }
    
    .category-circle {
        width: 80px;
        height: 80px;
    }
    
    .category-icon {
        width: 100%;
    }
    
    .category-emoji {
        font-size: 28px;
    }
    
    .category-name {
        font-size: 12px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Categories floating element mobile responsive */
    .categories-floating-element {
        width: 150px;
        top: -20px;
        right: -40px;
        opacity: 0.1;
    }
    
    /* Categories floating element bottom mobile responsive */
    .categories-floating-element-bottom {
        width: 150px;
        bottom: -20px;
        left: -40px;
        opacity: 0.1;
    }
    
    .floating-decoration {
        animation: floatOutMobile 12s ease-in-out infinite;
    }
    
    .floating-decoration-bottom {
        animation: floatOutBottomMobile 12s ease-in-out infinite;
    }
    
    @keyframes floatOutMobile {
        0% {
            transform: translate(0, 0) rotate(0deg);
            opacity: 0.1;
        }
        25% {
            transform: translate(-15px, -30px) rotate(5deg);
            opacity: 0.15;
        }
        50% {
            transform: translate(-30px, -60px) rotate(0deg);
            opacity: 0.2;
        }
        75% {
            transform: translate(-50px, -90px) rotate(-5deg);
            opacity: 0.15;
        }
        100% {
            transform: translate(-80px, -130px) rotate(0deg);
            opacity: 0.1;
        }
    }
    
    @keyframes floatOutBottomMobile {
        0% {
            transform: translate(0, 0) rotate(0deg);
            opacity: 0.1;
        }
        25% {
            transform: translate(15px, -30px) rotate(-5deg);
            opacity: 0.15;
        }
        50% {
            transform: translate(30px, -60px) rotate(0deg);
            opacity: 0.2;
        }
        75% {
            transform: translate(50px, -90px) rotate(5deg);
            opacity: 0.15;
        }
        100% {
            transform: translate(80px, -130px) rotate(0deg);
            opacity: 0.1;
        }
    }
    
    /* Testimonials responsive */
    .testimonials-slide {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* S For Satish Section */
.satish-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #c7def8 0%, #afd6ff 50%, #daecff 100%);
    position: relative;
    overflow: hidden;
}

.satish-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(183, 2, 2, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 129, 31, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(183, 2, 2, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.satish-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.satish-video {
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.satish-text {
    background: white;
    padding: 40px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.satish-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b70202 0%, #53811f 100%);
    border-radius: 12px 12px 0 0;
}

.satish-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.satish-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.satish-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.satish-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

.satish-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #b70202;
    font-weight: bold;
    font-size: 16px;
}

/* Responsive Design for S For Satish Section */
@media (max-width: 768px) {
    .satish-section {
        padding: 60px 0;
    }
    
    .satish-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .satish-text {
        padding: 30px 20px;
    }
    
    .satish-title {
        font-size: 1.8rem;
    }
    
    .satish-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .satish-section {
        padding: 40px 0;
    }
    
    .satish-content {
        gap: 30px;
    }
    
    .satish-text {
        padding: 25px 15px;
    }
    
    .satish-title {
        font-size: 1.6rem;
    }
    
    .satish-description {
        font-size: 0.95rem;
    }
    
    .satish-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .banner-slider-container {
        height: 540px; /* Maintains 2:1 aspect ratio for mobile */
        padding:10px;
    }

    .banner-slider{
        border-radius: 10px;
    }

    .banner-slide{
        border-radius: 10px;
    }
    
    .banner-image{
        border-radius: 10px;
    }
    .banner-title {
        font-size: 1.5rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .products-section {
        padding: 40px 0;
    }
    
    /* Spicy Powders overlay responsive */
    .spicy-powders-overlay {
        width: 200px;
        left: -60px;
        opacity: 0.15;
    }
    
    /* Featured Products overlay responsive */
    .featured-products-overlay {
        width: 200px;
        right: -60px;
        opacity: 0.15;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Spicy Powders overlay mobile responsive */
    .spicy-powders-overlay {
        width: 150px;
        left: -40px;
        opacity: 0.1;
    }
    
    /* Featured Products overlay mobile responsive */
    .featured-products-overlay {
        width: 150px;
        right: -40px;
        opacity: 0.1;
    }
}

/* ===================================
   CART TRAY STYLES
   =================================== */

/* Cart Tray Overlay */
.cart-tray-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-tray-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Tray */
.cart-tray {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.cart-tray.active {
    transform: translateX(0);
}

/* Cart Tray Header */
.cart-tray-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #e5e5e5;
    background: #f8f9fa;
}

.cart-tray-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.cart-tray-count {
    color: #d32f2f;
}

.cart-tray-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-tray-close:hover {
    color: #d32f2f;
}

/* Cart Tray Body */
.cart-tray-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.cart-tray-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #999;
    font-size: 1rem;
}

.cart-tray-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #999;
}

.cart-tray-empty svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-tray-empty h4 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}

.cart-tray-empty p {
    color: #999;
    margin-bottom: 20px;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    animation: slideInRight 0.3s ease;
}

.cart-item:last-child {
    border-bottom: none;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.cart-item-size {
    font-size: 0.875rem;
    color: #666;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 600;
    color: #d32f2f;
    margin-top: auto;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px 10px;
    background: #f8f9fa;
}

.quantity-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    padding: 0 5px;
    transition: color 0.2s ease;
    line-height: 1;
}

.quantity-btn:hover {
    color: #d32f2f;
}

.quantity-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-value {
    font-weight: 600;
    color: #333;
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #dc3545;
    padding: 5px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-item-remove:hover {
    color: #c82333;
    text-decoration: underline;
}

/* Cart Tray Footer */
.cart-tray-footer {
    padding: 20px 25px;
    border-top: 1px solid #e5e5e5;
    background: #f8f9fa;
}

.cart-tray-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.cart-total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.cart-total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
}

.cart-tray-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-tray-btn {
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.cart-tray-btn-primary {
    background: #d32f2f;
    color: white;
}

.cart-tray-btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.cart-tray-btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #ddd;
}

.cart-tray-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #d32f2f;
    color: #d32f2f;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-tray {
        max-width: 100%;
    }
    
    .cart-tray-header {
        padding: 15px 20px;
    }
    
    .cart-tray-title {
        font-size: 1.25rem;
    }
    
    .cart-tray-body {
        padding: 15px 20px;
    }
    
    .cart-item {
        gap: 12px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-name {
        font-size: 0.95rem;
    }
    
    .cart-tray-footer {
        padding: 15px 20px;
    }
}

/* ===================================
   FLOATING CART BANNER STYLES
   =================================== */

/* Floating Cart Banner */
.floating-cart-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
}

.floating-cart-banner.show {
    transform: translateY(0);
}

.floating-cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.floating-cart-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.floating-cart-icon {
    width: 40px;
    height: 40px;
    background: #d32f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.floating-cart-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.floating-cart-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d32f2f;
}

.floating-cart-text {
    font-size: 0.9rem;
    color: #666;
}

.floating-cart-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-left: auto;
}

.floating-cart-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.floating-cart-btn {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.floating-cart-btn-primary {
    background: #d32f2f;
    color: white;
}

.floating-cart-btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.floating-cart-btn-secondary {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.floating-cart-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #d32f2f;
    color: #d32f2f;
}

/* Responsive Floating Cart Banner */
@media (max-width: 768px) {
    .floating-cart-banner {
        padding: 12px 0;
    }
    
    .floating-cart-content {
        gap: 15px;
    }
    
    .floating-cart-info {
        gap: 12px;
    }
    
    .floating-cart-icon {
        width: 35px;
        height: 35px;
    }
    
    .floating-cart-count {
        font-size: 1.1rem;
    }
    
    .floating-cart-text {
        font-size: 0.85rem;
    }
    
    .floating-cart-total {
        font-size: 1.2rem;
    }
    
    .floating-cart-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .floating-cart-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .floating-cart-info {
        justify-content: center;
        width: 100%;
    }
    
    .floating-cart-total {
        margin-left: 0;
    }
    
    .floating-cart-actions {
        width: 100%;
        justify-content: center;
    }
    
    .floating-cart-btn {
        flex: 1;
        justify-content: center;
        max-width: 120px;
    }
}

/* Product Navigation Links */
.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-image-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-name-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name-link:hover {
    color: #b70202;
    text-decoration: none;
}

.product-title .product-name-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title .product-name-link:hover {
    color: #b70202;
    text-decoration: none;
}

/*---------------------------------------------------- */
/*Checkout Section*/
/*----------------------------------------------------*/
.or-checkout-section {
  padding: 100px 0px 150px;
}

.or-checkout-form-area {
  margin-top: 30px;
}

.or-chekcout-coupon {
  font-weight: 500;
  padding: 15px 20px;
  color: #1a2428;
  background-color: #f7f6f7;
  border-top: 3px solid #b70202;
  margin-top: 30px;
}
.or-chekcout-coupon i {
  color: #b70202;
  margin-right: 10px;
}
.or-chekcout-coupon a {
  margin-left: 5px;
  color: #b70202;
  text-decoration: none;
  cursor: pointer;
}
.or-chekcout-coupon a:hover {
  text-decoration: underline;
}
.or-chekcout-coupon input[type="text"] {
  font-size: 18px;
  font-weight: 600;
}
.or-chekcout-coupon input[type="text"]::-webkit-input-placeholder {
  font-size: 18px;
  font-weight: 600;
}
.or-chekcout-coupon input[type="text"]::-moz-placeholder {
  font-size: 18px;
  font-weight: 600;
}
.or-chekcout-coupon input[type="text"]:-ms-input-placeholder {
  font-size: 18px;
  font-weight: 600;
}
.or-chekcout-coupon input[type="text"]::-ms-input-placeholder {
  font-size: 18px;
  font-weight: 600;
}
.or-chekcout-coupon input[type="text"]::placeholder {
  font-size: 18px;
  font-weight: 600;
}
.or-chekcout-coupon button {
  color: #fff;
  height: 50px;
  border: none;
  font-weight: 600;
  background-color: #b70202;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.or-chekcout-coupon button:hover {
  background-color: #76a713;
}
.or-chekcout-coupon #couponInputField {
  display: inline-block;
  vertical-align: middle;
}

.or-checkout-form {
  margin-top: 30px;
}
.or-checkout-form h2 {
  color: #191919;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 25px;
  font-family: "Lora", serif;
}
.or-checkout-form form label {
  width: 100%;
  color: #383838;
  margin-bottom: 10px;
  display: block;
}
.or-checkout-form form input, 
.or-checkout-form form select, 
.or-checkout-form form textarea {
  width: 100%;
  height: 50px;
  margin-bottom: 15px;
  padding-left: 20px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 0;
  font-size: 14px;
  color: #383838;
}
.or-checkout-form form textarea {
  height: 120px;
  padding-top: 15px;
}

.or-bill-form {
  margin-bottom: 15px;
}
.or-bill-form label {
  display: block;
  color: #383838;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.or-bill-form input[type="text"],
.or-bill-form input[type="email"],
.or-bill-form input[type="tel"],
.or-bill-form select {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #ececec;
  background-color: #fff;
  color: #383838;
  font-size: 14px;
  border-radius: 0;
}
.or-bill-form input[type="checkbox"] {
  width: auto;
  height: auto;
  margin-right: 8px;
  margin-bottom: 0;
  vertical-align: middle;
}
.or-bill-form small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.or-checkout-form table {
  width: 100%;
  border: 1px solid #ececec;
  border-collapse: collapse;
}
.or-checkout-form table th {
  font-weight: 700;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #f7f6f7;
}
.or-checkout-form table td {
  color: #383838;
  font-weight: 500;
  padding: 20px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.or-checkout-form table .product-name {
  color: #1a2428;
  font-weight: 600;
}
.or-checkout-form table .product-name a {
  color: #1a2428;
  text-decoration: none;
}
.or-checkout-form table .product-name a:hover {
  color: #b70202;
}
.or-checkout-form table .product-total {
  font-size: 14px;
  color: #b70202;
  font-weight: 700;
}
.or-checkout-form table .product-total-h {
  text-align: right;
}

.or-checkout-pay-item-wrapper {
  margin-top: 30px;
}
.or-checkout-pay-item-wrapper p {
  font-size: 14px;
  color: #6c757d;
  margin-top: 20px;
  line-height: 1.6;
}
.or-checkout-pay-item-wrapper p a {
  color: #b70202;
  text-decoration: underline;
}

.or-checkout-pay-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}
.or-checkout-pay-item input[type="radio"] {
  width: auto;
  height: auto;
  margin: 0;
  margin-right: 10px;
  margin-top: 3px;
}
.or-checkout-pay-item span {
  color: #1a2428;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

.or-btn-2 {
  margin-top: 30px;
}
.or-btn-2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background-color: #b70202;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
.or-btn-2 a:hover {
  background-color: #950202;
  color: #fff;
  text-decoration: none;
}
.or-btn-2 a:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* ===================================
   MOBILE BOTTOM NAVIGATION
   =================================== */

:root {
    --rb-bottom-nav-height: 64px;
}

.mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--rb-bottom-nav-height);
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
    z-index: 1001;
    display: none;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mobile-bottom-nav-item {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.mobile-bottom-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 12px;
}

.mobile-bottom-nav-link i {
    font-size: 18px;
}

.mobile-bottom-nav-link.active {
    color: #d32f2f;
}

/* Show bottom nav only on small screens */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    /* Make space for bottom nav so content isn't overlapped */
    .has-mobile-bottom-nav main {
        padding-bottom: calc(var(--rb-bottom-nav-height) + env(safe-area-inset-bottom));
    }
    /* Hide the floating cart banner when mobile bottom nav is present */
    .has-mobile-bottom-nav .floating-cart-banner {
        display: none !important;
    }
}

/* ===================================
   AFFILIATE SHARE FLOATING BUTTON
   =================================== */
#affiliate-share {
    position: fixed;
    right: 22px;
    bottom: 85px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background: #b70202;
    color: #fff;
    border: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    display: none;
    align-items: center;
    justify-content: center;
}

/* Lift the share button above the mobile bottom nav when it exists */
@media (max-width: 768px) {
    .has-mobile-bottom-nav #affiliate-share {
        bottom: calc(var(--rb-bottom-nav-height) + 24px + env(safe-area-inset-bottom));
    }
}