/*
Theme Name: Biryani Theme
Theme URI: http://example.com
Author: Your Name
Author URI: http://example.com
Description: Biryani Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Biryani
*/

.hero-image {
  width: 50%;    
  height: auto;
  display: inline-block;
}

.category_like {
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
}

.wp-post-image {
   width:274px !important;
   height:441px !important;
}


    /* Header styling */
    .site-header {
 background-color: #f4ece0b5;
        padding: 5px 0 0 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #00000032; 
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap; /* Prevent wrapping */
    }

    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
        text-decoration: none;
        text-align: center;
        flex-grow: 1; /* Allows it to take up space and center */
        position: relative;
        margin: 0 auto;
    }
    .logo img{
        width: 50%;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-item {
        margin-left: 1.5rem;
    }

    .nav-link {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    .nav-link
 {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s 
ease;
    padding-right: 30px;
}

    .nav-link:hover {
        color: #E2982B;
    }

    .hamburger-menu {
        display: none; /* Hidden on desktop */
        flex-direction: column;
        cursor: pointer;
        z-index: 10;
    }

    .hamburger-menu span {
        height: 3px;
        width: 25px;
        background-color: #333;
        margin-bottom: 5px;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    /* Mobile styles */
    @media (max-width: 767.98px) {
        .header-content {
            justify-content: space-between;
        }
        .logo {
            flex-grow: 0;
            text-align: left;
        }
        .nav-menu {
            display: none; /* Hide menu by default on mobile */
            flex-direction: column;
            width: 100%;
            position: absolute;
            top: 60px; /* Adjust based on header height */
            left: 0;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            text-align: center;
        }
        .nav-menu.open {
            display: flex; /* Show menu when 'open' class is active */
        }
        .nav-item {
            margin: 0.5rem 0;
        }
        .hamburger-menu {
            display: flex; /* Show on mobile */
        }
        .hamburger-menu.active .bar1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        .hamburger-menu.active .bar2 {
            opacity: 0;
        }
        .hamburger-menu.active .bar3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
    }



/* New Hero Section Styling */
        .hero-section {
            background:  linear-gradient(rgba(255,255,255,0.5), rgba(0,0,0,0.25)),
    url('https://biryaniguys.net/wp-content/uploads/2025/09/main-banner-1.png') no-repeat center center/cover;
            /* Blue background color as requested */
            background-color: #f4ece0ab;
            color: #000;
            background-repeat: no-repeat;
			height:80vh;
            padding: 3rem 0;
            max-width: 100%;
            width: 100vw;
        }
        
    @media (max-width: 768px) { /* Edit By Affan breakpoint as needed */
    
      
    .hero-image {
        width: 80vw;
   
    }
    
    .hero-section {
      height:400px;
    }
      
      
    }
       
       
        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.2;
        }
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
        }
        .hero-title .yellow-text {
            color: #FFC107;
        }
        .hero-bullet-points {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
        }
        .hero-bullet-points li {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        .hero-bullet-points li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;          /* circle size */
    height: 18px;
    margin-right: 10px;
    background: #e53935;  /* red background */
    color: #fff;   /* tick transparent */
    border: 2px solid #e53935;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    padding: 4px;
    box-sizing: border-box;
}





 .hero-button {
  position: relative;
  background-color: #FFC107;
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  text-transform: uppercase;
  margin-top: 2rem;
  width: 45%;
  overflow: hidden; /* keeps icon inside */
}

.hero-button::before {
  content: "f07a"; /* shopping-cart icon (Font Awesome unicode) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid style */
  position: absolute;
  left: 50px;       /* push to right side */
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: white;

  pointer-events: none; /* don’t block button clicks */
}


.hero-button svg {
  flex-shrink: 0;
}


        .hero-button:hover {
            background-color: #FFC107;
            border-color: #FFC107;
            color: #fff;
            font-weight: bold;

            text-transform: uppercase;
            margin-top: 2rem;

        }
        .hero-image {
            max-width: 85%;
            height: auto;
            border-radius: 10px;
        }


        /* Product Section Styling */
        .products-section {
            padding: 2rem 0;
            text-align: left;
        }
        .product-item {
            margin-bottom: 2rem;
        }
        .product-item img {
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        .product-item h3 {
            font-weight: bold;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        .product-item p.description {
            font-size: 1rem;
            color: #555;
            margin-bottom: 0.5rem;
        }
        .product-item .price {
            font-size: 1.25rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
        }
        .product-item .btn-add-to-cart {
            background-color: #E2982B;
            border-color: #E2982B;
            color: #fff;
            font-weight: bold;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-transform: uppercase;
        }


.testimonial-section {
            padding: 3rem 0;
        }
        .testimonial-content {
            text-align: center;
            max-width: 600px;
            margin: auto;
        }
        .testimonial-content h4 {
            font-weight: bold;
            font-size: 1.25rem;
            color: #333;
            letter-spacing: 2px;
        }
        .testimonial-content h2 {
            font-weight: 900;
            font-size: 3rem;
        }
        .testimonial-content h2 .yellow-text {
            color: #FFC107; /* Yellow color for "OUR CLIENT" */
        }
        .testimonial-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin: 1.5rem 0;
        }
        .testimonial-content .author {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 2rem;
            color: #333;
        }
        /* Swiper custom styling for red dots */
        /* Change bullet color */
.swiper-pagination-bullet {
  background: red !important; /* default bullet color */
  opacity: 1;       /* make all bullets fully visible */
  
}

/* Active bullet color */
.swiper-pagination-bullet-active {
  background: red; /* change this to your active color */
}
.swiper-pagination{
position: relative !important;
margin-top: 15px !important;
}



        
        /* New section styling */
        .story-section {
            background-color: #F0F0F0;
            padding: 1rem 1rem;
            text-align: left;
            border-radius: 10px;
            max-width: 800px;
            margin: 1rem auto;
        }
        .story-section h2 {
            font-weight: 900;
            font-size: 2.5rem;
            color: #333;
        }
        .story-section h2 .story-text {
            color: #E2982B; /* Orange color for "BIRYANI" */
        }
        .story-section p {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #555;
            margin: 1rem auto;
            max-width: 80%;
        }
        .story-section .btn-primary {
            background-color: #E2982B;
            border-color: #E2982B;
            color: #fff;
            font-weight: bold;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-transform: uppercase;
        } 


        /* Footer styling with background image */
        .site-footer {
            /* Replace the URL below with your desired background image */
            background-image: url('https://biryaniguys.net/wp-content/uploads/2025/09/Layer-39.png'); 
            background-size: cover;
            background-position: center;
            position: relative;
            color: #000000;
            padding: 10px 0 10rem 0;
            overflow: hidden;
        }

        /* Semi-transparent overlay for readability */
        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(252, 252, 252, 0.3); /* Adjust opacity as needed */
            z-index: 1;
        }

        .site-footer .container {
            position: relative;
            z-index: 2;
        }

.footer-social a i {
    background: black;
    color: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    padding-top: 9px;
}

.footer-logo img{
    width: 55%;
}



        
        .heading {
            font-size: 2rem;
            font-weight: 900;
            line-height: 1.2;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }
        
        .heading .highlight {
            color: #FBB040;
        }
        
        .full-menu-button {
            background-color: #FBB040;
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: bold;
            padding: 1.25rem 3rem;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            text-transform: uppercase;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
            
        }
        
        .full-menu-button:hover {
            background-color: #E2982B;
            
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {


                #yith-quick-view-modal .yith-quick-view-content div.images, #yith-quick-view-modal .yith-quick-view-content div.summary {
        width: 100% !important;
        height: 180px !important;
        max-height: none;
        padding: 10px 15px;

    }

    
            
            .full-menu-button {
                font-size: 1.25rem;
                padding: 1rem 2.5rem;
            }

            
.logo img {
    width: 58%;
}
.hero-title{
    font-size: 2.5rem;
}

.ribbon {
 

  font-size: 10px;
}
.hero-button::before{
display:none;
}

.story-section {
    background-color: #F0F0F0;
    padding: 4rem 1rem;
    text-align: center;
    border-radius: 10px;
    max-width: 800px;
    margin: 4rem 15px;
}
.heading {
        font-size: 1.5rem;
    }

.testimonial-content h2
 {
    font-weight: 900;
    font-size: 1.7rem;
 }
}




.chilli-swiper {
    width: 100vw;
    height: 100%;
    position: relative;
  }

  .chilli-swiper .chilli-slide {
    position: relative;
  }

  .chilli-swiper .chilli-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Caption */
  .chilli-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    display:none;
  }

  /* Custom arrows */
  .chilli-swiper .swiper-button-next,
  .chilli-swiper .swiper-button-prev {
    color: #fbbf24; /* yellow */
  }


.ribbon {
  display: inline-block;
  background: #e53935; /* red */
  color: #fff;
  font-weight: bold;
  padding: 8px 20px;
  position: relative;
  font-family: Arial, sans-serif;
  border-radius: 2px;
  width: 53%;
  
  /* inward cut on right side */
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 50%, 100% 100%, 0 100%);
}






.yith-wcqv-button {
  background: #e53935;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
}
.yith-wcqv-button:hover {
  background: #c62828;
}

 @media (max-width: 768px) {  /* Edit by Affan */
     
.chilli-swiper .chilli-slide img {
    width: 100%;
    height: 60%;
  }
  
  .chilli-swiper {
    width: 100%;
    height: 50%;
    position: relative;
  }

     
     
 }














.woocommerce-mini-cart .mini_cart_item a{
font-size:10px;
    font-weight:700;
}


.cart-icon {
  position: relative;
  font-size: 22px;
  text-decoration: none;
  color: #000;
}

.cart-count {
  background: red;
  color: #fff;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 12px;
  position: absolute;
  top: -8px;
  right: -10px;
}



.offcanvas {
  width: 380px; /* adjust */
  border-radius: 20px 0 0 20px; /* rounded corners */
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
}

#mini-cart-contents {
  max-height: 70vh;
  overflow-y: auto;
}

/* Drawer container */
.mini-cart-drawer {
  width: 380px;
  border-radius: 20px 0 0 20px;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

/* Drawer body should scroll if too long */
.mini-cart-body {
  max-height: 65vh;
  overflow-y: auto;
  padding-right: 5px;
}

/* Product list */
.woocommerce-mini-cart {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-mini-cart li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f1f1;
}

.woocommerce-mini-cart li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.woocommerce-mini-cart .mini_cart_item a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.woocommerce-mini-cart .quantity {
  font-size: 13px;
  color: #777;
}

/* Footer buttons */
.offcanvas-footer .btn {
  border-radius: 50px;
  font-size: 14px;
  padding: 10px;
}

.offcanvas p.woocommerce-mini-cart__buttons.buttons {
    display: none;
}










/* Quantity input styling without breaking increment/decrement */
.woocommerce .quantity .qty {
  width: 70px;                  /* Width of the box */
  height: 42px;                 /* Height for balance */
  padding: 5px 10px;
  border: 1px solid #ccc;       /* Light border */
  border-radius: 6px;           /* Rounded corners */
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background: #fff;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* On focus */
.woocommerce .quantity .qty:focus {
  border-color: #0073e6; /* WooCommerce blue */
  box-shadow: 0 0 4px rgba(0,115,230,0.4);
  outline: none;
}

/* ✅ Keep browser arrows visible */
.woocommerce .quantity .qty::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-outer-spin-button {
  opacity: 1;              /* keep arrows */
  height: auto;
}

.woocommerce .quantity .qty[type=number] {
  -moz-appearance: number-input; /* allow arrows in Firefox */
}




/* Modern Animated Add to Cart Button */
.woocommerce a.button.add_to_cart_button,
.woocommerce button.button.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;                          /* space between icon and text */
  background: linear-gradient(135deg, #e60023, #b3001b); /* red gradient */
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 26px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.3);
  animation: pulse-red 1.8s infinite; /* subtle pulsing */
}

/* Hover effect */
.woocommerce a.button.add_to_cart_button:hover,
.woocommerce button.button.single_add_to_cart_button:hover {
  background: linear-gradient(135deg, #ff1a40, #cc001f);
  box-shadow: 0 6px 16px rgba(230, 0, 35, 0.6);
  transform: translateY(-2px);
}



/* Pulse animation */
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(230, 0, 35, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(230, 0, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 0, 35, 0); }
}


.yith-wcqv-head {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1000;
    width: 30px;
    height: 30px;
    background: red;
    border-radius: 20px;
}
.yith-wcqv-head svg{
color:#fff;
}


.product_meta a {
    background: #ff4805;
    color: #fff;
    padding: 1px 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
}


.woocommerce div.product .product_title {

    text-transform: capitalize;
    font-weight: 700;
}

.product-item h3{

    text-transform: capitalize;
    font-weight: 700;
}



.call-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ff3b3b;
  }
  .hotline-top {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff3b3b;
    line-height: 1;
  }
  .hotline-number {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
  }

  .hotline-number:hover {
    text-decoration: underline;
  }




.woocommerce-mini-cart li img {

  margin-right: 10px;
}









  /* Fullscreen loader */
  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000da;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  /* Logo with zoom in/out animation */
  #loader img {
    width: 100px;
    height: 100px;
    animation: zoomInOut 1.5s ease-in-out infinite;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
  }

  @keyframes zoomInOut {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
  }

  /* Loading text */
  #loader p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
  }

  /* Hide the loader after page load */
  body.loaded #loader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
  }

input#yith-wapo-1-0 {
    height: 100px;
    min-height: 100px;
    resize: vertical;
    white-space: pre-wrap;

    display: flex;          /* Make it a flex container */
    align-items: flex-start; /* Align items to the start (top) */
    padding-bottom: 100px;      /* Still good to have padding */
    padding-top: 15px;
}


/* For WebKit browsers */
#yith-quick-view-content div.summary::-webkit-scrollbar {
  width: 2px;
}

#yith-quick-view-content div.summary::-webkit-scrollbar-thumb {
  background-color: red;
  border-radius: 5px;
}

#yith-quick-view-content div.summary::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* For Firefox */
#yith-quick-view-content div.summary {
  scrollbar-color: #b3001b #f1f1f1;
}


.yith-wcqv-head {
    position: absolute;
    top: 10px;
    right: 8px;
    z-index: 1000;
    width: 29px;
    height: 29px;
    background: #b3001b;
    border-radius: 20px;
}
/* Hamburger button */
.hamburger-menu {
  width: 30px;
  height: 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1001; /* stays above overlay */
}

.hamburger-menu .bar {
  height: 3px;
  width: 100%;
  background-color: #333; /* bars visible on white bg */
  border-radius: 3px;
  transition: all 0.4s ease;
}

/* Animate to "X" */
.hamburger-menu.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Fullscreen nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff; /* white background */
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
  padding: 4rem 2rem; /* space from top */
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
  overflow-y: auto;
}

/* Show nav */
.mobile-nav.active {
  transform: translateY(0);
}

/* Nav links */
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center; /* center align text */
}

.mobile-nav ul li {
  margin: 1.5rem 0; /* space between items */
}

.mobile-nav ul li:first-child {
  margin-top: 2.5rem; /* extra margin above Home */
}

.mobile-nav ul li a {
  color: #000; /* black text */
  font-size: 2rem; /* bigger text */
  line-height: 2.8rem; /* more spacing */
  font-weight: 700; /* bold for impact */
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
  color: #ffc107; /* accent color */
}


.yith-wcqv-button {
    background: #e53935;
    color: #fff;
    padding: 8px 30px;
    border-radius: 25px;
    display: inline-block;
    text-decoration: none;
}









.bottom-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #d81919; /* same red */
  color: #ffc107;       /* yellow text */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  z-index: 9999;
}

.bottom-cart-bar .cart-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-count-circle {
  border: 2px solid #ffc107;
  color: #ffc107;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.bottom-cart-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 10px;
    margin: 0 auto;
    width: 295px;
    background: #d81919;
    color: #ffc107;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    z-index: 200;
}



.shop-category-menu {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff; /* Or your site background color */
  padding: 10px 15px;
  overflow-x: auto;
  white-space: nowrap;
  flex-wrap: nowrap !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.shop-category-menu::-webkit-scrollbar {
  display: none;
}

.shop-category-menu a {
  display: inline-block;
  white-space: nowrap;
  margin-right: 10px;
  font-weight: 500;
  color: #fff;
  background: #fbb040!important;
}

@media (max-width: 500px) {
    .shop-category-menu {
  overflow-x: auto;
  white-space: nowrap;
  flex-wrap: nowrap !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.shop-category-menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.shop-category-menu a {
  display: inline-block;
  white-space: nowrap;
}
    
    
}





/* Banner */
.contact-banner {

  padding: 40px 0;
  text-align: center;
}

.contact-banner h1 {
  font-size: 32px;
  font-weight: bold;
}


.contact-logo {
  width: 20vw;         /* Logo width */
  height: auto;         /* Logo height */
  margin: 0 auto 20px;  /* Center + space below logo */
  cursor: pointer;    
}




/* Contact Boxes */
.contact-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
}

.contact-boxes { display: flex; justify-content: center; gap: 20px; padding: 40px 20px; } .contact-box { background: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; text-align: center; flex: 1; max-width: 3 }

/* Responsive layout for larger screens */
@media (min-width: 600px) {
  .contact-boxes {
    flex-direction: row;
  }

  .contact-box {
    max-width: 300px;
  }
}

@media (max-width: 767.98px) {
   .contact-logo {
      width: 250px; 
   }
    
}

/* Banner 
.about-banner {

  padding: 40px 0;
  text-align: center;
}

.about-banner h1 {
  font-size: 22px;
  font-weight: bold;
  margin: 0;

}

.about-banner h1::before {
  content: "";
  display: block;
  background-image: url('https://biryaniguys.net/wp-content/uploads/2025/09/Layer-50.png'); /* Replace with your logo path 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 320px;          
  height: 210px;         
  margin: 0 auto 20px;  
} */


/* About Content */
.about-content {
  padding: 50px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}


/* WooCommerce Page Banner */
.woocommerce-page .entry-header {

  padding: 20px 20px;  /* Banner height */
  text-align: center;  /* Center align text */
  margin-bottom: 40px; /* Space below banner */
  border-radius: 6px;  /* Optional rounded edges */
  margin-top: 30px;
}


.woocommerce-page .entry-header h1::before {
  content: "";
  display: block;
  background-image: url('https://biryaniguys.net/wp-content/uploads/2025/09/Layer-50.png'); /* Replace with your logo path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 320px;         /* Logo width */
  height: 210px;         /* Logo height */
  margin: 0 auto 20px;  /* Center + space below logo */
}

.woocommerce-page .entry-header h1,
.woocommerce-page .entry-header .entry-title {
  font-size: 22px;
  font-weight: bold;
  margin: 0;

}

/* Product Title */
h2.woocommerce-loop-product__title {
  color: #000 !important;
        text-transform: capitalize;
}

/* Product Price */
span.woocommerce-Price-amount.amount {
  color: #000 !important;
}

/* Checkout Button */
.wc-block-cart__submit-button {
  display: inline-block;
  background: #d81919;   /* Red background */
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* Hover Effect */
.wc-block-cart__submit-button:hover {
  background: #b81414; /* Darker red */
  color: #fff !important;
}

/* Product name anchor styling */
a.wc-block-components-product-name {
  color: #000 !important;        /* Black text */
  text-decoration: none !important; /* Remove underline */
  font-weight: normal;           /* Keep normal text weight */
  cursor: default;               /* Cursor won’t look like a link */
}

/* Optional: On hover, keep it same */
a.wc-block-components-product-name:hover {
  color: #000 !important;
  text-decoration: none !important;
}