@charset "utf-8";
/* CSS Document */


        /* Global Styles */
        :root {
            --primary-blue: #1a237e;
            --primary-orange: #e86a10;
			--accent-orange:#cc5d0e;
            --bg-light-yellow: #fff8e1;
            --text-dark: #333333;
            --text-muted: #6c757d;
			--yellow:#ffb300;
			--text-color:#2d1a11;
			--book-color: #1a237e; /* Primary Blue */
    --page-color: #ffc107;
        }


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#preloader p {
    margin-top: 20px;
    font-family: sans-serif;
    font-weight: 600;
    color: #1a237e;
    letter-spacing: 1px;
}

a{
	text-decoration:none;
}

.book-loader {
    width: 60px;
    height: 45px;
    position: relative;
    margin: 50px auto;
    border: 3px solid var(--book-color);
    border-radius: 3px;
    perspective: 150px; /* Gives the 3D depth */
}

.book-page {
    position: absolute;
    left: 50%;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--page-color);
    transform-origin: left center;
    animation: flip 1.5s linear infinite;
    border-left: 1px solid rgba(0,0,0,0.1);
}

/* Offsets for multiple pages to create a stack effect */
.book-page:nth-child(2) {
    animation-delay: 0.5s;
}

.book-page:nth-child(3) {
    animation-delay: 1s;
}

@keyframes flip {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
    }
    50% {
        transform: rotateY(-180deg);
        opacity: 1;
    }
    100% {
        transform: rotateY(-180deg);
        opacity: 0;
    }
}

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light-yellow);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6, .navbar-brand, .font-serif {
            font-family: 'Playfair Display', serif;
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--primary-orange);
            color: white;
            font-size: 0.85rem;
            padding: 8px 0;
        }
        
        .top-bar a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .top-bar a:hover {
            opacity: 0.8;
        }

        /* Navbar */
        
		
		/* --- Offcanvas Mobile Styling --- */
@media (max-width: 991.98px) {
    .offcanvas {
        width: 280px !important; /* Adjust width of the slide-in menu */
        background-color: white;
    }
    
    .navbar-nav {
        padding-top: 20px;
    }
    
    .nav-link {
        padding: 12px 20px !important;
        border-bottom: 1px solid #f8f9fa;
        margin: 0 !important;
    }
    
    .dropdown-menu {
        box-shadow: none;
        background-color: #fcfcfc;
        border-radius: 0;
        margin: 0;
    }
}

/* --- Keeping your existing styles but cleaning them up --- */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 14px 0;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark, #333) !important;
    margin: 4px 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-orange, #ff6600) !important;
}

/* Dropdown Customization */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-menu li:first-child{
	border-bottom:1px solid rgba(0,0,0,0.1);
	padding-top:10px;
	padding-bottom:10px;
	
}

.dropdown-item:hover {
    background-color: #fff8f3;
    color: var(--primary-orange, #ff6600);
}
	
	
	
	/* Show dropdown on hover */
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove gap */
}

/* Smooth fade effect */
.dropdown-menu {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}	
		

        /* Hero Section */
        .hero-section {
            position: relative;
            /*background-image: url('../images/slider.webp');*/
            background-size: cover;
            background-position: center;
            min-height: 500px;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--primary-blue);
        }
		
		@media (max-width: 768px) {
		  .hero-section {
			  
		   min-height: 400px;
		
		  
		  }
			
			
		}

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
          background: linear-gradient(90deg, hsla(238, 85%, 45%, 0.5) 0%, hsla(27, 76%, 55%, 0.5) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.6;
        }

        .btn-orange {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 500;
        }
        
        .btn-orange:hover {
            background-color: #cc5d0e;
            color: white;
        }

        .btn-green {
            background-color: #25D366;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 500;
        }

        .btn-green:hover {
            background-color: #1ebd5a;
            color: white;
        }

        /* Section Titles */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

    .section-title {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 2rem;
    margin: 0;
    position: relative; /* Required for absolute positioning of the border */
    padding-bottom: 10px; /* Space between text and the border */
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;      /* Thickness of the border */
    width: 50px;      /* Adjust this to change the "half" length */
    background-color: #ffb300;
}

        .btn-view-all {
            color: var(--primary-orange);
            border: 1px solid var(--primary-orange);
            background: transparent;
            border-radius: 20px;
            padding: 5px 20px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-view-all:hover {
            background: var(--primary-orange);
            color: white;
        }

        /* Categories Section */
        .category-card {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 160px;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-end;
            padding: 20px;
            text-decoration: none;
            color: white;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(26,35,126,0.8) 0%, rgba(0,0,0,0.1) 70%);
            z-index: 1;
        }

        .category-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            transition: transform 0.5s ease;
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-info {
            position: relative;
            z-index: 2;
        }

        .category-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }

        .category-count {
            font-size: 0.85rem;
            color: var(--yellow);
        }

        /* Product Cards Base */
.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

/* Image Wrapper & Action Overlay (View Button) */
.product-img-wrapper {
    height: 250px;
    position: relative; /* Essential for overlay positioning */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}

.product-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); /* Soft dimming */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.btn-action {
    background: white;
    color: var(--primary-blue);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.product-card:hover .btn-action {
    transform: translateY(0);
}

.btn-action:hover {
    background: var(--primary-orange);
    color: white;
}

/* Info Section Padding */
.product-card .product-info {
    padding: 15px; /* Increased slightly for better visual balance */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Add to Cart Button Styling */
.btn-add-cart {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    border: 1.5px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background: var(--primary-blue);
    color: white;
}

/* Specific Badge Adjustment */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
}

/* Keep previous text styles... */
.product-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-category { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 5px; }
.product-title { font-size: 0.95rem; font-weight: 600; color: var(--text-color); margin-bottom: 10px; height: 3.8em; }
.product-price { color: var(--primary-orange); font-weight: 600; font-size: 1.1rem; margin-top: 10px; }
.product-title a{
color: var(--text-color);
display: -webkit-box;
    -webkit-line-clamp: 3;   /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
    line-height: 1.6;
    height: calc(1.6em * 3); /* ensures 2 lines height */
	text-decoration:none;
	
}

.badge-new {

            background-color: #ffc107;

            color: #000;

        }



        .badge-bestseller {

            background-color: var(--primary-orange);

            color: white;

        }


.product-price.contact + .btn-add-cart {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.product-price.contact + .btn-add-cart:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

        /* Call to Action Banner */
        .cta-banner {
            background-color: var(--primary-blue);
            color: white;
            padding: 50px 0;
            text-align: center;
            margin: 40px 0;
        }

        .cta-title {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .cta-subtitle {
            font-weight: 300;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-buttons .btn {
            margin: 5px;
            border-radius: 25px;
            padding: 10px 25px;
        }

        .btn-blue {
            background-color: #2c428a;
            color: white;
            border: 1px solid #3d58a8;
        }
        
        .btn-blue:hover {
            background-color: #1e2a5e;
            color: white;
        }

        /* Features Section */
        .features-section {
            background-color: #f8f5eb;
            padding: 40px 0;
            border-top: 1px solid rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            margin-top: 50px;
        }

        .feature-item {
            text-align: center;
            padding: 15px;
        }

        .feature-icon {
            color: var(--primary-orange);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .feature-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .feature-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Footer */
        .footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .footer-desc {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary-orange);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
		
		.footer-links li:before {
    content: "\f054"; /* fa-chevron-right */
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    margin-right: 0px;
    color: #ff6600; /* change color if needed */
	font-size:0.7rem;
	
	position: absolute;
    left: 0;
    top: 2px;
    
	
}
		

        .footer-links li {
            margin-bottom: 12px;
			 list-style: none;
			 position:relative;
			   padding-left: 18px; /* space for icon */
        }

        .footer-links a, .footer-contact-item {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            font-size: 0.9rem;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-start;
        }
		
		.footer-contact-item a{
			color:#fff;
			
		}
		.footer-contact-item a:hover{
			color:var(--accent-orange);	
		}

        .footer-links a:hover {
            opacity: 1;
            color: var(--primary-orange);
        }

        .footer-contact-item i {
            margin-right: 10px;
            margin-top: 4px;
            color: var(--primary-orange);
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* Carousel Navigation Mock */
        .carousel-nav-btn {
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            color: var(--primary-blue);
            z-index: 10;
            cursor: pointer;
            border: 1px solid #eee;
        }

        .carousel-nav-btn:hover {
            background: var(--primary-orange);
            color: white;
        }
        
        .product-row-wrapper {
            position: relative;
        }

        /* Utilities */
        .py-section {
            padding-top: 40px;
            padding-bottom: 40px;
        }
        
        /* Custom scrollbar for row-cols to allow horizontal scroll on mobile */
        @media (max-width: 991px) {
            .flex-nowrap-md {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 15px;
                -webkit-overflow-scrolling: touch;
            }
            .flex-nowrap-md .col {
                min-width: 250px;
            }
            .carousel-nav-btn {
                display: none;
            }
        }



/* Position the arrows */
.product-carousel {
    position: relative;
}

.owl-nav button {
    position: absolute;
    top: 35%; /* Adjust based on your image height */
    background: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.owl-nav .owl-prev {
    left: -20px; /* Pulls button slightly outside container */
}

.owl-nav .owl-next {
    right: -20px;
}

.owl-nav button:hover {
    background: var(--primary-orange) !important;
    color: white !important;
}

/* Hide navigation on mobile for better touch experience */
@media (max-width: 768px) {
    .owl-nav {
        display: none;
    }
}



/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1030; /* Higher than other content */
    padding: 10px 0;
}

.bottom-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 0.75rem;
    transition: 0.3s;
}

.bottom-nav-link i {
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.bottom-nav-link.active {
    color: var(--primary-orange, #ff6600);
}

.bottom-nav-link:hover {
    color: var(--primary-orange, #ff6600);
}

/* Cart Badge for Bottom Nav */
.cart-badge-bottom {
    position: absolute;
    top: -5px;
    right: 25%;
    font-size: 0.6rem;
    padding: 3px 6px;
}

/* Prevent content from being hidden behind the bottom nav */
@media (max-width: 991px) {
    body {
        padding-bottom: 70px; /* Adjust based on your bottom nav height */
    }
}


.bread {
    background: #f7edd4;
    border-bottom: 1px solid #eee;
	text-align:center;
}

.bread h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.breadcrumb {
    background: transparent;
    margin: 0;
    font-size: 0.9rem;
}

.bread a {
    color: var(--primary-orange);
    text-decoration: none;
}

.bread a:hover {
    text-decoration: underline;
}

.bread.active {
    color: #6c757d;
}


/*price slider */
/* Ensure the track is visible and has height */
.price_slider_wrapper {
width:95%;	
}
.price_slider_wrapper .price_slider {
    height: 0.5em;
    position: relative;
    text-align: left;
    margin: 1em 0 2em;
    background: #edf2f4; /* Track color */
    border-radius: 1em;
    display: block !important; /* Force display */
	
}

/* Style the handles so they aren't invisible dots */
.price_slider_wrapper .ui-slider-handle {
    display: block;
    position: absolute;
    z-index: 2;
    width: 1em;
    height: 1em;
    background-color: #ffc43f;
    border-radius: 100%;
    cursor: pointer;
    top: -0.25em;
}

/* The blue/active part of the bar */
.price_slider_wrapper .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-color: #e25450;
    border-radius: 1em;
    height: 100%;
}
.price_slider_wrapper .cart-bt {
    background-color: #FFC43F;
    padding: 10px 20px;
    border-radius: 8px;
    color: #000;
	margin-right:4px;
}


.price_slider_wrapper .cart-bt:hover{
	background-color:#CC8F00;
	padding:10px 20px;
	border-radius:8px;
	color:#fff;
	
}


 .cart-bt {
    background-color: #FFC43F;
    padding: 10px 20px;
    border-radius: 8px;
    color: #000;
	margin-right:4px;
}


.cart-bt:hover{
	background-color:#CC8F00;
	padding:10px 20px;
	border-radius:8px;
	color:#fff;
	
}

.price_slider_wrapper  .price_label{
	color:#000;
	font-weight:500;
	
	
	
}

.add-to-cart{
	  background-color: #FFC43F;
    padding: 10px 20px;
    border-radius: 8px;
    color: #000;
	margin-right:4px;
}

/* */


/* Price Filter Wrapper */
.widget_price_filter {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

/* Input Fields */
.widget_price_filter input[type="text"] {
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

/* Input Focus Effect */
.widget_price_filter input[type="text"]:focus {
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40,167,69,0.2);
}

/* Button Style */
.widget_price_filter .cart-bt {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    width: 100%;
}

/* Button Hover */
.widget_price_filter .cart-bt:hover {
    background: #218838;
}

/* Flex Layout */
.widget_price_filter .d-md-flex {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Price Label */
.widget_price_filter .price_label {
    font-size: 13px;
    color: #666;
}

/* Clear Fix */
.widget_price_filter .clear {
    clear: both;
}

/* Responsive */
@media (min-width: 768px) {
    .widget_price_filter input[type="text"] {
        width: 48%;
        margin-bottom: 0;
    }

    .widget_price_filter .cart-bt {
        width: auto;
        padding: 10px 25px;
    }
}


/*single products */

.single-products .single_add_to_cart_button{
  background-color: var(--primary-orange);
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
	margin-right:4px;
	border:	0px solid #cccc;
}


.single-products .single_add_to_cart_button:hover{
	background-color:#cc5d0e;
	padding:10px 20px;
	border-radius:8px;
	color:#fff;
	
}


.single-products  .price{
	font-size:24px;
	color:var(--text-dark);
	font-weight:600;
}

.single-products  .product_title {
	
	color:var(--text-dark);
	font-size:30px;
	
}

.single-products-images img{
	width:100%;
	height:auto;
	/*background-color:#f4f4f4;*/
	padding:10px;
	
}

.single-products form{
	display:flex;
	height: 80px;
  align-items: center;
	
}

.single-products   .qty{
	
	width:80px!important;
	border:1px solid rgba(0,0,0,0.2);
	margin-right:4px;
	 border-radius: 8px;
	  padding: 10px 20px;
}

.related products h2{
	margin-bottom:10px;
	
}

.product_meta a{
	color:var(--primary-blue);
	text-decoration:none;
	
}
.product_meta a:hover{
	text-decoration:underline;
}

/* resst globals Buttons */

/* Global WooCommerce Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .wc-block-components-button,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
    background-color: var(--primary-orange) !important;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff !important;
    margin-right: 4px;
    border: 0 !important;
    box-shadow: none;
    text-shadow: none;
}


.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .wc-block-components-button:hover {
     background-color:var(--accent-orange)  !important;
   
    color: #fff !important;
  
    border: 0 !important;
    box-shadow: none;
    text-shadow: none;
}

/* Add to Cart buttons */
.woocommerce a.add_to_cart_button,
.woocommerce button.single_add_to_cart_button,
.woocommerce input.single_add_to_cart_button {
    background-color: var(--primary-orange) !important;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff !important;
    margin-right: 4px;
    border: 0 !important;
    font-weight: 500;
}


.woocommerce a.add_to_cart_button:hover,
.woocommerce button.single_add_to_cart_button:hover {
    background-color: #cc5d0e;
    color: #fff;
}


.wc-block-components-button, .wc-block-cart__submit-container{
	  background-color: var(--primary-orange) !important;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff !important;
    margin-right: 4px;
    border: 0 !important;
    font-weight: 500;
}

/* custome cart */

.customecart {
	color:var(--dark-color)	;
}


.customecart h2{
	font-size:24px!important	
}
.customecart .wc-block-cart__submit-container:hover{
background-color:#cc5d0e!important;
	
	color:#fff;
	
}
.customecart  .wc-block-cart__submit-container:hover a{
	color:#fff;
}

.wc-block-components-button:hover{
	background-color:#cc5d0e!important;
	
	color:#fff;
}

.customecart  .wc-block-cart__submit-container a{
	text-decoration:none;
	font-weight:500;
	font-size:20px;	
}


.wc-block-components-product-badge{
	background-color:#c04e35;
	color:#fff;
	border:none;
	padding:4px;
	
}

.wc-block-cart-items__header{
	font-size:16px!important;
	
}
.wc-block-components-product-name {
	color:var(--text-color);
	
}
.wc-block-components-product-name:hover{
	text-decoration:underline;
	
}

.wc-block-cart-item__remove-link{
	  background-color: var(--primary-blue) !important;
    padding: 10px 20px!important;
    border-radius: 8px;
    color: #fff !important;
    margin-right: 4px;
    border: 0 !important;
    font-weight: 500;
font-size:14px	!important;
text-decoration:none!important;
}

.wc-block-cart-item__remove-link:hover{
	background-color:var(--primary-orange)!important;
	
	color:#fff!important;
}

.wc-block-components-button{
	
}

.customecart  .woocommerce-notice--success {
	color:#568203!important;
	text-align:center;
	font-size:20px;
	font-weight:600;
		
	
	
}

/* */
/*  shor by*/
.woocommerce-ordering select  {
  width: auto;
  min-width: 220px;
  display: inline-block;
  padding:10px;
  border:1px solid rgba(0,0,0,0.1);
}


.dividers{
	border-bottom:1px solid rgba(0,0,0,0.2);
	padding-bottom:10px;
	
}






.added_to_cart {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    border: 1.5px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
	text-decoration:none;
}

.added_to_cart:hover {
    background: var(--primary-blue);
    color: white;
}

/* cart 
 */
 
 /* Sidebar */
 
 #cart-close{
	 font-size:30px;
	 cursor:pointer;
	 
 }
#cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

#cart-sidebar.active {
    right: 0;
}

/* Overlay */
#cart-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 9998;
}



/* Header */
.cart-header {
    padding: 15px 20px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

/* Product item */


/* Main container */
.woocommerce-mini-cart-item {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

/* LEFT SIDE (image + title) */
.woocommerce-mini-cart-item a:not(.remove) {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Image */
.woocommerce-mini-cart-item img {
    width: 60px;
	height:auto;
    flex-shrink: 0;
    border-radius: 6px;
}

/* Title */
.woocommerce-mini-cart-item a:not(.remove) {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

/* RIGHT SIDE (price + qty) */
.woocommerce-mini-cart-item .quantity {
    text-align: right;
    font-size: 13px;
    color: #666;
}

/* Move quantity to right column */
.woocommerce-mini-cart-item .quantity {
    grid-column: 2;
}

/* Remove button */
.woocommerce-mini-cart-item {
    position: relative;
}

.woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 5px;
    right: 0;
    font-size: 20px!important;
	color:var(--text-color);
}





/* Quantity buttons */
.qty-box {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.qty-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
}

/* Footer */
.woocommerce-mini-cart__total {
    padding: 10px 0;
    font-weight: bold;
	text-align:center;
}

.woocommerce-mini-cart__buttons a {
    display: block;
    text-align: center;
    padding: 10px;
    background:var(--primary-orange);
    color: #fff;
    border-radius: 6px;
    
	width:80%;
	margin:0 auto;
	margin-top: 10px;
}


.woocommerce-mini-cart__buttons a:hover{
background:	#cc5d0e;
}

/* floating butrons */
#goTopDiv {
    position: fixed;
    bottom: 0px;
    right: 0px;
    display: none;
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 15px;
  
    cursor: pointer;
    font-size: 16px;
    z-index: 9999;
    text-align: center;
}
#goTopDiv:hover{
background: var(--primary-orange);	
}


.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    left:10px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-float  a{
	 color: #fff;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: #fff;
}



.floating-cart {
    position: fixed;
    bottom: 80px;
    left: 10px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
}

.floating-cart:hover {
    background: #333;
    color: #fff;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-blue);
    color: #fff;
    width: 22px;
    height: 22px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.menu-list li a{
	text-decoration:none;
	
}

/* */
/*Login Page */
.loginpage label{
	display:block!important;
	width:100%;
} 
.loginpage input[type="text"], .loginpage input[type="password"],.loginpage input[type="email"]{
	border:0px;
	width:100%!important;
	border:4px;
	padding:10px ;
	
}

.loginpage .woocommerce-Input--text {
		width:100%!important;
		
}


/*User slidebar */
/* Sidebar */
.account-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Menu list */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
}

/* Links */
.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

/* Hover */
.woocommerce-MyAccount-navigation a:hover {
    background: #f5f5f5;
}

/* Active menu */
.woocommerce-MyAccount-navigation .is-active a {
    background: #ff6600;
    color: #fff;
}

/* Right content */
.account-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* */


.account-content a{
	color:var(--primary-orange);
	
	
}
.account-content a:hover{
	color:var(--text-color);
	text-decoration:underline;
}

.cusbtn{
	background-color:var(--primary-orange);
	color:#fff!important;
	padding:14px 10px;
	border-radius: 10px;
	
}
.cusbtn:hover{
	background-color:var(--accent-orange);
	color:#fff!important;
}


.woocommerce-LostPassword a{
	color:var(--text-color);
	margin-top:10px;	
}


@media (max-width: 768px) {
    .bread {
		display:none;
    }
}

.sliderimage img{
	width:100%;
	height:100%;
	margin:0 auto;
	
}

.container-fluid{
	padding:0 100px!important;
	
}



.product-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

/* Hover */
.product-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ACTIVE IMAGE (CURRENT) */
.product-thumb.active {
    border: 2px solid var(--primary-orange);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.woocommerce-table__product-name a{
	color:var(--text-color);
	
}
}