   :root {
    --primary-color: #e67e22;
    --secondary-color: #d35400;
    --accent-color: #f39c12;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --background-color: #fff8f0;
    --border-radius: 5px;
}

body {
    font-family: "Tenor Sans", sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: var(--background-color);
}

/* Product Price Fix */
.product-card .product-price {
    font-weight: 700;
    color: white !important;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: rgba(230, 126, 34, 0.8);
    border-radius: 3px;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.product-card .product-price .old-price {
    text-decoration: line-through;
    color: #f1c40f;
    font-size: 0.9rem;
    margin-left: 5px;
    text-shadow: none;
}

/* Additional improvements to match the Baisakhi theme */
.hero-content {
    background: rgba(255, 248, 240, 0.95);
}

.category-card, .product-card {
    background-color: white;
    border: 1px solid #fdebd0;
}

.btn-add-to-cart, .btn-shop-now {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.btn-add-to-cart:hover, .btn-shop-now:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.main-navigation {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.testimonial-slider .item {
    background: #fff8f0;
    border: 1px solid #fdebd0;
}

.footer {
    background: linear-gradient(to right, #2c3e50, #34495e);
}
        
        /* Header Styles */
        .top-header {
            background-color: var(--dark-color);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-header a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .top-header a:hover {
            color: var(--primary-color);
        }
        
        .main-header {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo img {
            max-height: 60px;
        }
        
        .search-box {
            position: relative;
            width: 100%;
        }
        
        .search-box input {
            width: 100%;
            padding: 10px 15px;
            border-radius: 50px;
            border: 1px solid #ddd;
            outline: none;
        }
        
        .search-box button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 5px 15px;
        }
        
        .header-icons a {
            color: var(--dark-color);
            font-size: 20px;
            margin-left: 15px;
            position: relative;
            transition: color 0.3s;
        }
        
        .header-icons a:hover {
            color: var(--primary-color);
        }
        
        .header-icons .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        /* Navigation */
        .main-navigation {
            background-color: var(--primary-color);
        }
        
        .main-navigation .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 12px 20px;
            position: relative;
        }
        
        .main-navigation .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: white;
            transition: width 0.3s;
        }
        
        .main-navigation .nav-link:hover:after {
            width: 100%;
        }
        
        /* Hero Slider */
        .hero-slider {
            position: relative;
        }
        
        .hero-slider .owl-item {
            height: 600px;
        }
        
        .hero-slider .item {
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            background: rgba(255,255,255,0.9);
            padding: 30px;
            max-width: 500px;
            border-radius: var(--border-radius);
        }
        
        .hero-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
        }
        
        .hero-content p {
            margin-bottom: 20px;
        }
        
        .btn-shop-now {
            background: var(--primary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-shop-now:hover {
            background: var(--dark-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Categories Section */
        .section-title {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 10px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .category-card {
            border: 1px solid #eee;
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: all 0.3s;
            margin-bottom: 20px;
        }
        
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .category-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .category-card .category-body {
            padding: 15px;
            text-align: center;
        }
        
        .category-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        /* Products Section */
        .product-card {
            border: 1px solid #eee;
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: all 0.3s;
            margin-bottom: 20px;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .product-card .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary-color);
            color: white;
            padding: 3px 10px;
            border-radius: 3px;
            font-size: 12px;
        }
        
        .product-card .product-img {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .product-card .product-img img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
        
        .product-card .product-body {
            padding: 15px;
        }
        
        .product-card .product-title {
            font-size: 1rem;
            margin-bottom: 5px;
            font-weight: 600;
            background-color: rgba(230, 126, 34, 0.8);
            border-radius: 3px;
            display: inline-block;
            padding: 5px 10px;
           
        }

        .product-card .product-title a {
             color:#fff8f0 !important;
        }
        
        .product-card .product-price {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .product-card .product-price .old-price {
            text-decoration: line-through;
            color: #999;
            font-size: 0.9rem;
            margin-left: 5px;
        }
        
        .product-card .product-rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .btn-add-to-cart {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            width: 100%;
            transition: all 0.3s;
        }
        
        .btn-add-to-cart:hover {
            background: var(--dark-color);
        }
        
        /* Testimonials */
        .testimonial-slider .item {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 10px;
        }
        
        .testimonial-slider .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 15px;
        }
        
        .testimonial-slider .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-slider .client-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .testimonial-slider .client-designation {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        /* Newsletter */
        .newsletter-section {
            background-color: var(--primary-color);
            padding: 50px 0;
            color: white;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            outline: none;
        }
        
        .newsletter-form button {
            background: var(--dark-color);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 0;
        }
        
        .footer h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--primary-color);
            margin-top: 3px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            background: rgba(0,0,0,0.2);
            padding: 15px 0;
            margin-top: 30px;
        }
        
        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .hero-slider .owl-item {
                height: 500px;
            }
            
            .hero-content {
                max-width: 400px;
            }
            
            .hero-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .top-header {
                text-align: center;
            }
            
            .header-icons {
                justify-content: center;
                margin-top: 15px;
            }
            
            .hero-slider .owl-item {
                height: 450px;
            }
            
            .hero-content {
                max-width: 100%;
                margin: 0 15px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 50px;
                padding: 12px 20px;
            }
        }
        
        /* Animation for links */
        a {
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--primary-color) !important;
        }
        
        .nav-link {
            transition: all 0.3s ease;
        }
    
/* Blog Styles */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.blog-card {
    background: white;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

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

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

.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-decoration: none;
}

.blog-category:hover {
    background: var(--secondary-color);
    color: white;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--dark-color);
    text-decoration: none;
}

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

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more i {
    margin-left: 5px;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: white;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.list-group-item {
    border: none;
    padding: 10px 0;
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list-group-item:hover,
.list-group-item.active {
    background: none;
    color: var(--primary-color);
}

.list-group-item i {
    margin-right: 10px;
    width: 16px;
}

.recent-posts .recent-post-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.recent-posts .recent-post-item:last-child {
    border-bottom: none;
}

.recent-posts h6 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.recent-posts h6 a {
    color: var(--dark-color);
    text-decoration: none;
}

.recent-posts h6 a:hover {
    color: var(--primary-color);
}

/* Blog Detail Page */
.blog-post {
    background: white;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-featured-image {
    margin-bottom: 30px;
}

.blog-featured-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.blog-post-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 15px;
}

.blog-category-badge:hover {
    background: var(--secondary-color);
    color: white;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 30px;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 8px;
}

.blog-post-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Responsive Blog Styles */
@media (max-width: 991.98px) {
    .blog-post {
        padding: 20px;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 767.98px) {
    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-card {
        margin-bottom: 20px;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .blog-post-title {
        font-size: 1.8rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }
}