/*Write Css*/
.singleBlog-global .blogCaption .tittle {
    font-weight: bold !important;
}
.construction_blog_area .construction_blog__contents__title {
    font-weight: bold !important;
}
/*.barberShop_testimonial__single__contents__para {*/
/*    max-width: 100%;*/
/*}*/
/*.barberShop_testimonial__single.barberShop-section-bg{*/
/*    max-width: 100%;*/
/*}*/
.barberShop_testimonial_single {
    min-height: 320px;  
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*.cta-section {*/
/*    width: 100vw;       */
/*    padding: 0;         */
    /*box-sizing: border-box; */
    
/*}*/
.cta-section {
    width: 100vw;       /* Full viewport width */
    padding: 0;         /* Remove section padding */
    margin: 0;          /* Remove any default margin */
    box-sizing: border-box;
}

.cta-section .row {
    margin-left: 0 !important;   /* Remove row left margin */
    margin-right: 0 !important;  /* Remove row right margin */
}

.cta-section [class*="col-"] {
    padding-left: 0 !important;  
    padding-right: 0 !important; 
}
.product-card-content a.title {
  font-size: 22px;
  font-weight: bold;
  
}
.product-card-content a.tag {
  font-size: 16px;
  font-weight: bold;
}

.special-item-entry img {
  opacity: 0.7; /* Change to desired opacity (0 = fully transparent, 1 = fully visible) */
}
/* Add this to your stylesheet or in cPanel custom CSS */
.header-top-entry .title {
    display: flex !important;         /* forces flexbox layout */
    align-items: center !important;   /* vertically centers the items */
    gap: 8px !important;              /* space between icon, text, and number */
    justify-content: flex-start !important; /* aligns the content to the left */
    white-space: nowrap !important;   /* prevents text from wrapping to next line */
    flex-wrap: nowrap;                /* ensure no wrapping */
}

.header-top-entry .title a {
    margin: 0 !important;             /* remove any margin */
    color: #fff !important;           /* change color if needed */
    text-decoration: none !important; /* remove underline */
}
/* Make the "Others" text larger inside product cards */
/* Make the "Others" text larger and bold inside product cards */
.tabsproducts-listing .product-card-content > a.tag {
  font-size: 24px !important;   /* adjust to taste */
  line-height: 1.2 !important;  /* keeps it tidy */
  font-weight: bold !important; /* force bold */
}
.left-btn {
  background-color: #2e871b !important; /* green background */
  color: white !important;              /* text color */
  padding: 10px 20px;                   /* spacing */
  border-radius: 6px;                   /* rounded corners */
  text-decoration: none;                /* remove underline */
  display: inline-block;                /* keeps button shape */
  font-weight: bold;                    /* bold text */
  transition: background-color 0.3s ease; /* smooth hover transition */
}

.left-btn:hover {
  background-color: #eaa065 !important; /* hover color */
  color: #fff !important;               /* keep text white */
}
/* Make the CTA section full width */
.cta_3 .container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.barberShop_testimonial_area .container {
    max-width: 100%;
    
}
.construction_blog_area .container {
    max-width: 100%;
    padding: 0 12px;
}



/* Default (desktop / large screen) */
.offer-area-info-block .special-item-entry .title {
  font-size: 32px !important;
  font-weight: bold;
}


/* Tablet screens */
@media (max-width: 1024px) {
  .offer-area-info-block .special-item-entry .title {
    font-size: 2px !important;
  }
}

/* Mobile screens */
@media (max-width: 600px) {
  .offer-area-info-block .special-item-entry .title {
    font-size: 2px !important;
  }
}








/* Base button style */
.button.style-6 {
  display: inline-block;
  padding: 12px 24px;       /* normal desktop padding */
  font-size: 16px;          /* desktop font size */
  border-radius: 6px;
  background-color: #2e871b; /* example green background */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Hover effect */
.button.style-6:hover {
  background-color: #eaa065;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .button.style-6 {
    padding: 8px 16px;      /* smaller padding */
    font-size: 14px;        /* smaller text */
  }
}

@media (max-width: 480px) {
  .button.style-6 {
    padding: 6px 12px;      /* even smaller on very small screens */
    font-size: 13px;
  }
}





/* Mobile carousel items round and small */
 @media (max-width: 430px) {
 .promo-banner-box,
 .promo-banner-box .cat-contents { 
   height: 110px !important; 
   width: 110px !important; 
   border-radius: 50%; 
   overflow: hidden;
   margin: auto;
 }

 .promo -banner-box img { 
   max-width: 100%; 
   max-height: 100%; 
   object-fit: cover; 
   border-radius: 50%; 
     
 }

@media (max-width: 430px) {
  /* Make item itself small and round */
  .owl-item .item {
    width: 110px !important;
    height: 110px !important;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px; /* spacing between items */
  }

  .owl-item .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  /* Make the stage display flex so items wrap nicely */
  .owl-stage {
    display: flex !important;
    justify-content: start;
    gap: 5px; /* space between items */
  }

  /* Optional: remove Owl Carousel inline width */
  .owl-item {
    width: auto !important;
  }
}