/*
Theme Name: My Custom Theme
Theme URI: http://example.com
Author:Asim
Author URI: http://example.com
Description: A fully custom WordPress theme ready for WooCommerce
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mycustomtheme
Requires at least: 5.0
Requires PHP: 7.4
*/

/* --- Global / Utility Classes --- */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}
body {
    font-family: 'Montserrat', sans-serif !important;

}
/* navbar */
.header-flex {
    display: flex;
justify-content: space-between;
    gap: 20px;
    margin-left: 80px;
    margin-right: 80px;
    padding-top:12px;
    padding-bottom:12px;
    align-items: center;
     border-bottom: 1px solid #DADADA;
}



/* Search */
.header-search {
    display: flex;
    align-items: center;
    width: 380px;
    height: 39px;
    background: #fff;
    border: 1px solid #DADADA;
    border-radius: 5px;
    overflow: hidden;
}

.search-input {
    flex: 1;
  
    padding: 14px;
    border: none;
    
}
.search-input::placeholder {
    color: #808080;       /* change text color */
    font-size: 12px;   /* change font size */
font-family: 'Montserrat', sans-serif !important;
    opacity: 1;        /* ensures full visibility in some browsers */
}

.search-select {
    padding: 10px;
border:none;
    background: white;
}

.search-btn {
    padding: 10px 12px;
    background:#3F8C53;
    border: none !important;
    border-radius: 4px;
    cursor: pointer;
}

/* Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 550px;
}

.header-icons .icon svg {
    transition: 0.3s;
}

.header-icons .icon:hover svg {
    stroke: #00a3ff;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
    padding: 0px 0px;
    list-style: none;
   color:#1B1B1B;
}
.header-top-bar {
    background: #A4CF53;
    color: #3F8C53;
    align-items: center;
    overflow: hidden;
    font-size: 12px;
    white-space: nowrap;
   
}

.header-top-bar .top-bar-content {
    display:flex;
    gap: 60px;
    align-items: center;
    padding: 6px 0;
}
 .top-bar-content span{
        display: flex;               /* makes text + image align properly */
    align-items: center;         /* centers vertically */
    gap: 2px;   
    color: #3F8C53;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 550;
    align-items: center;
  margin-bottom: 2px;
    font-size: 12px;

 }

.marquee {
    animation: marqueeScroll 18s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.nav-menu a {
    text-decoration: none;
    color: #1B1B1B;
    font-weight:400;
    font-size: 16px;
        font-family: 'Montserrat', sans-serif !important;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #A4CF53;
}
.drop-icon {

    margin-left: 5px;
margin-bottom: 0px;
}

/* === NAV MENU DROPDOWN === */
/* Main dropdown */
.menu-dropdown {
    position: relative;
}

.menu-dropdown .dropdown-list {
    display: none;
    position: absolute;
    background: #fff;
    list-style: none;
    padding: 10px 12px;
    min-width: 200px;
    border: 1px solid #ddd;
    z-index: 100;
    gap: 10px;
    
}

/* Show dropdown on hover */
.menu-dropdown:hover .dropdown-list {
    display: block;
}

/* Submenu dropdown */
.submenu-dropdown {
    position: relative;
}

.submenu-list {
    display: none;
    position: absolute;
    left:100%;
    top: 0;
    background: #fff;
    min-width: 200px;
    border: 1px solid #ddd;
    list-style: none;
    padding: 10px 10px;
}

/* Show submenu on hover */
.submenu-dropdown:hover > .submenu-list {
    display: block;
}

/* Buttons styling */
.menu-drop-btn,
.submenu-drop-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none !important;
    
    cursor: pointer;
       text-decoration: none;
    color: #1B1B1B;
    font-weight:400;
    font-size: 16px;
        font-family: 'Montserrat', sans-serif !important;
    transition: 0.3s;

}

.menu-drop-btn .drop-icon,
.submenu-drop-btn .drop-icon {
    width: 10px;
    height: 10px;
}.menu-dropdown .dropdown-list li {
    margin-bottom: 10px; /* adjust this value as needed */
}

/* Remove extra margin on the last item */
.menu-dropdown .dropdown-list li:last-child {
    margin-bottom: 0;
}

/* Add spacing between submenu items */
.submenu-list li {
    margin-bottom: 10px; /* adjust as needed */
}

.submenu-list li:last-child {
    margin-bottom: 0;
}


/* === SEARCH DROPDOWN === */
.search-dropdown {
    position: relative;
}

.search-drop-btn {
    background: white;
    color: #808080;
    border: none !important   ;           /* Remove all borders */
    border-left: 1px solid #DADADA; /* Add ONLY left-side border */
    padding: 8px 10px;
 font-size: 12px;
 font-family:'Montserrat', sans-serif !important;
 font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
}


.search-drop-list {
    display: none;
    position: absolute;
    background: #fff;

    top: 45px;
    list-style: none;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-drop-list li {
    padding: 8px;
    cursor: pointer;
}

.search-drop-list li:hover {
    background: #f3f3f3;
}

/* ============================
   HEADER RESPONSIVE (without touching top-bar)
============================= */

/* Tablets: 768px - 991px */
@media (max-width: 991px) {
    .header-flex {
        flex-wrap: wrap;
        margin-left: 40px;
        margin-right: 40px;
        gap: 15px;
        justify-content: space-between;
    }

    .header-search {
        width: 100%;
        max-width: 300px;
    }

    .header-icons {
        margin-left: 0;
        gap: 8px;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile: 480px - 767px */
@media (max-width: 767px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 20px;
        margin-right: 20px;
        gap: 10px;
    }

    .header-search {
        width: 100%;
        max-width: 100%;
    }

    .header-icons {
        margin-left: 0;
        gap: 6px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
    }
}

/* Extra Small Mobile: below 480px */
@media (max-width: 480px) {
    .header-flex {
        flex-direction: column;
        align-items: stretch;
        margin-left: 10px;
        margin-right: 10px;
        gap: 8px;
    }

    .header-search {
        width: 100%;
    }

    .header-icons {
        gap: 5px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .search-input {
        padding: 10px;
        font-size: 12px;
    }

    .search-drop-btn {
        padding: 6px 8px;
        font-size: 10px;
    }

    .search-drop-list {
        top: 40px;
        padding: 8px;
    }

    .dropdown-list {
        top: 28px;
        padding: 8px;
    }
}


/* hero */
.hero-section {
    position: relative;
padding-top: 80px;
padding-bottom: 70px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}


.hero-content {
    position: relative;
    margin-left: 150px;
    margin-top:-50px;
    z-index: 2;
}





/* .hero-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #ffba08;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
} */

/* .hero-arrow {
    position: absolute;
    top: 55%;
    z-index: 3;
    border-radius: 4px;
    border: 1px solid black;
    background-color: #423633; 
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
} */

.drop{
    width:14px;
    height:14px;
    margin-bottom: -2px;
    margin-left: -2px;
}

.hero-arrow.left {
    left: 10px;
     background-color: #6A5E52;
}

.hero-arrow.right {
    right: 10px;
     background-color: #423633;
}





.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
}

.highlight1 {
    color: #50B169  ; /* green shade */
}
.highlight2 {
    color: #A4CF53; /* green shade */
}

.hero-subtitle {
     font-family: 'Montserrat', sans-serif !important;
     font-size: 20px;
     font-weight: 500;
     color: #FFFFFF;
     margin-top: -30px;
     margin-bottom: 24px;
}

.hero-btn {
    margin-top: 2px;
    display: inline-block;
    background: #3F8C53;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
}

.hero-btn:hover {
    background: #5ab045;
}

/* arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
      border-radius: 4px;
    border: 1px solid white;
    padding: 8px 15px;
    border-radius: 4px;
  
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 3;
}

.arrowimg{
    width: 16px;
    height: 16px;
}
.hero-arrow.left { left: 40px; }
.hero-arrow.right { right: 40px; }

.hero-arrow:hover {
    background: #ffffffd9;
}

/* Responsive */
@media(max-width: 768px) {
    .hero-title {
        font-size: 2.7rem;
    }
    .hero-section {
        height: 60vh;
    }
}
/* ================================
   HERO SECTION RESPONSIVE DESIGN
================================ */

/* Tablet Screens (max-width: 992px) */
@media (max-width: 992px) {

    .hero-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-content {
        margin-left: 60px;
        margin-top: -20px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-top: -15px;
    }

    .hero-arrow.left { left: 20px; }
    .hero-arrow.right { right: 20px; }
}


/* Large Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
        padding-bottom: 50px;
        height: auto;
    }

    .hero-content {
        margin-left: 0;
        margin-top: 0;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-top: -10px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Move Arrows Closer */
    .hero-arrow {
        padding: 6px 12px;
    }

    .hero-arrow.left { left: 10px; }
    .hero-arrow.right { right: 10px; }
}


/* Small Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {

    .hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-top: -5px;
    }

    .hero-btn {
        padding: 10px 18px;
        font-size: 11px;
    }

    /* Very small screens: arrows inside edges */
    .hero-arrow {
        padding: 5px 10px;
    }

    .hero-arrow.left { left: 5px; }
    .hero-arrow.right { right: 5px; }
}


/* Very Small Height Screens (e.g. old phones) */
@media (max-height: 600px) {
    .hero-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 13px;
    }
}

/* category */
.shop-categories {
    margin: 80px 80px;
    text-align: left;
}

.cat-heading {
    font-size: 26px;
    font-weight: 600;
}

.cat-heading span {
    color:#3F8C53;
    border-bottom: 3px solid #A4CF53;
}

/* Slider wrapper */
.cat-slider-wrapper {
    position: relative;
    overflow: hidden;
}

/* Controls at top-right */
.slider-controls {
    position: absolute;

    top: 0px;
    right: 0;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.slider-btn {
    background: #EBEBEB;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

/* Slider container */
.cat-slider {
    display: flex;
    margin-top: 40px; /* space below controls */
}

.cat-slider-inner {
    display: flex;
    gap: 17px;
    transition: transform 0.4s ease;
}

/* Category box */
.cat-box {
    flex: 0 0 15%; /* 5 visible */
    height: 115px;
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    border-radius: 14px;
    position: relative;
    text-decoration: none;
    color: #000;
    background: #fff;
    transition: 0.3s ease;
}

.cat-box:hover {
    transform: translateY(-5px);
}

/* Background colors */
.cat-box:nth-of-type(1), .cat-box:nth-of-type(6) { background: #B5EBF9; }
.cat-box:nth-of-type(2), .cat-box:nth-of-type(7) { background: #FFF7D9; }
.cat-box:nth-of-type(3), .cat-box:nth-of-type(8) { background: #FCD0D0; }
.cat-box:nth-of-type(4), .cat-box:nth-of-type(9) { background: #A3EDCC; }
.cat-box:nth-of-type(5), .cat-box:nth-of-type(10) { background: #FFDCCA; }

.cat-content {
    max-width: 120px;
    white-space: normal;
}

.cat-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #373737;
    margin-top: -49px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.cat-content p {
    font-size: 12px;
    font-weight: 400;
    margin-top: -15px;
    color: #1B1B1B;
    font-family: 'Montserrat', sans-serif;
}

.cat-img {
    position: absolute;
    top: -15%;
    right: -16px;
    object-fit: contain;
    z-index: 2;
}

/* Dots */
/* Dots */
.slider-dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots span {
    height: 6px;
    background: #aade90;
    border-radius: 10px;
    display: inline-block;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}

/* Make first dot (active) wider */
.slider-dots span.active {
    opacity: 1;
    background: #A4CF53;
    width: 60px;  /* Active dot width */
}

/* Other dots small */
.slider-dots span:not(.active) {
    width: 12px;  /* Small dots */
}


/* Hide scrollbar */
.cat-slider::-webkit-scrollbar { display: none; }
.cat-slider { -ms-overflow-style: none; scrollbar-width: none; }
/* ================================ */
/*     LARGE SCREENS 1200px ↓       */
/* ================================ */
@media (max-width: 1200px) {

    .shop-categories {
        margin: 60px 40px;
    }

    .cat-box {
        flex: 0 0 20%;   /* Show 4 boxes */
        height: 110px;
    }

    .cat-content h3 {
        font-size: 18px;
    }
}


/* ================================ */
/*     TABLET 992px ↓               */
/* ================================ */
@media (max-width: 992px) {

    .shop-categories {
        margin: 50px 30px;
    }

    .cat-box {
        flex: 0 0 25%;   /* Show 3-4 boxes */
        height: 105px;
    }

    .cat-content h3 {
        font-size: 17px;
    }

    .cat-img {
        width: 70px;
        top: -10%;
    }
}


/* ================================ */
/*     SMALL TABLET 768px ↓         */
/* ================================ */
@media (max-width: 768px) {

    .shop-categories {
        margin: 40px 20px;
    }

    .cat-slider {
        margin-top: 25px;
    }

    .cat-box {
        flex: 0 0 35%; /* Show 2 boxes */
        height: 100px;
    }

    .cat-content {
        max-width: 100px;
    }

    .cat-content h3 {
        font-size: 16px;
        margin-top: -35px;
    }

    .cat-content p {
        font-size: 11px;
        margin-top: -10px;
    }

    .slider-controls {
        top: -5px;
    }
}


/* ================================ */
/*     MOBILE 576px ↓               */
/* ================================ */
@media (max-width: 576px) {

    .shop-categories {
        margin: 30px 15px;
    }

    .cat-box {
        flex: 0 0 55%; /* Show 1.5 boxes */
        height: 95px;
    }

    .cat-content {
        max-width: 90px;
    }

    .cat-content h3 {
        font-size: 15px;
    }

    .cat-img {
        width: 60px;
        right: -10px;
        top: -5%;
    }

    .slider-dots span.active {
        width: 40px;
    }
}


/* ================================ */
/*     VERY SMALL MOBILE 430px ↓    */
/* ================================ */
@media (max-width: 430px) {

    .cat-box {
        flex: 0 0 10%; /* Show 1 box mostly */
        height: 60px;
    }

    .cat-content h3 {
        font-size: 14px;
        margin-top: -10px;
    }

    .cat-content p {
        font-size: 10px;
    }

    .cat-img {
        width: 55px;
    }

    .slider-dots span.active {
        width: 30px;
    }
}

/* Image Button */


/* Top Products */
.top-products {
padding-left: 80px;
padding-right: 80px;
margin-bottom: 80px;

 font-family: 'Montserrat', sans-serif !important;
}



.top-products .heading {
  font-size: 26px;
  font-weight: 600;

  font-family: 'Montserrat', sans-serif !important;
  margin-bottom: 30px;
  color: #1B1B1B;
}

.top-products .heading span {
  color: #3F8C53;
  border: none;
  border-bottom:3px solid #A4CF53;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns */
  gap: 19px;
}


.product-card {
  border: 1px solid #C9E790;
  border-radius: 14px;
    gap: 10px; 
  padding: 12px;
  text-align: left;
  position: relative;

  transition: 0.3s ease;
}

.product-price{
    display: flex;
align-items: center ;
margin-bottom: -14px;
    justify-content: space-between;
}
.categories{
    display: flex;
    justify-content: space-between;
}


.category {
  background: #EFF8DE;
  color: #0a9d3c;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 500;
  font-family: 'Inter';
  display: inline-block;
  
height: 15px;
    backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.image {
  width: 100%;
  height: 150px;
  margin-top: 50px;
   background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom:25px;
}

.image img {
  max-width: 100%;
     background: transparent;
  max-height: 150%;
  object-fit: contain;
}

.product-name {
  font-size: 14px;
  color: #1B1B1B;
  font-weight: 500;
  font-family: 'Inter';
   margin-top: 10px;
    font-weight: 600;

    /* NEW: Limit lines and add ellipsis */
    display: -webkit-box;       /* Required for line clamp */
    -webkit-line-clamp: 2;      /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3em;         /* Adjust depending on font size */
    height: 2.6em;   
margin-top: 50px;
}

.price {
  font-size: 20px;
  font-weight: 500;
  color: #1B1B1B;
   font-family: 'Montserrat', sans-serif !important;
   

}
/* 
.cart-btn {

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
    color: #1B1B1B;
  transition: 0.3s ease;
  margin-top: 20px;
} */

.heart{
    width:auto;
    margin-bottom: 12px;
}
/* ================================ */
/*   LARGE SCREENS 1200px ↓         */
/* ================================ */
@media (max-width: 1200px) {

    .top-products {
        padding-left: 50px;
        padding-right: 50px;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 products */
    }
}


/* ================================ */
/*   TABLETS 992px ↓                */
/* ================================ */
@media (max-width: 992px) {

    .top-products {
        padding-left: 40px;
        padding-right: 40px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 products */
        gap: 16px;
    }

    .image {
        height: 130px;
    }

    .product-name {
        font-size: 13px;
    }
}


/* ================================ */
/*   SMALL TABLETS 768px ↓          */
/* ================================ */
@media (max-width: 768px) {

    .top-products {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 products */
        gap: 15px;
    }

    .image {
        height: 120px;
    }

    .product-name {
        font-size: 13px;
    }

    .price {
        font-size: 18px;
    }
}


/* ================================ */
/*   MOBILE 576px ↓                 */
/* ================================ */
@media (max-width: 576px) {

    .top-products {
        padding-left: 15px;
        padding-right: 15px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* still 2 */
        gap: 12px;
    }

    .image {
        height: 110px;
    }

    .product-name {
        font-size: 12px;
        margin-top: 25px;
    }

    .price {
        font-size: 17px;
    }

    .category {
        font-size: 10px;
        padding: 4px 8px;
    }
}


/* ================================ */
/*   VERY SMALL MOBILE 430px ↓      */
/* ================================ */
@media (max-width: 430px) {

    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 product per row */
    }

    .image {
        height: 130px;
    }

    .product-name {
        margin-top: 15px;
        font-size: 14px;
    }

    .price {
        font-size: 18px;
    }
}


/* specailoffer */
/* Section */
.special-offers {
    margin-top: 80px;
    padding-left: 80px;
    padding-right: 80px;
    text-align: left;
}

.section-title {
    font-size: 26px;
    font-weight: 600;
    text-align: left;
    font-family: 'Montserrat';
    margin-bottom: 20px;
}
.section-title span {
    color: #57B33E;
    border-bottom:3px solid #A4CF53;
}

/* Grid Layout */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
}

/* Cards */
.offer-card {
    flex: 1;
    min-width: 500px;
    height: 300px;
    border-radius: 20px;
    padding: 0px 26px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

/* Background Colors */
.green { background-color: #3F8C53; }
.light-green { background-color: #A4CF53; }

.text-area {
    max-width: 80%;
}

.text-area h3,
.text-area1 h3 {
    color: #fff;
    font-size: 42px;
    font-family: 'inter';
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 9px rgba(0,0,0,0.3);
    margin-top: 24px;
}

.text-area h3 { margin-bottom: 90px; }
.text-area1 h3 { margin-bottom: 130px; }

.btn {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    border-radius: 8px;
    border: 1px solid #FFFFFF;
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.product-img img,
img {
    object-fit: contain;
}

.product-img {
    position: absolute;
    right: -15px;
    bottom: 5px;
}

.tag-img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.drops {
    margin-bottom: -5px;
    margin-left: -5px;
}

/* ============================
   RESPONSIVE SPECIAL OFFERS
============================= */

/* Tablets: 768px - 991px */
@media (max-width: 991px) {
    .special-offers {
        padding-left: 40px;
        padding-right: 40px;
    }

    .section-title {
        font-size: 22px;
    }

    .offer-card {
        min-width: 350px;
        height: auto; /* allow height to adjust */
        padding: 0 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .text-area, .text-area1 {
        max-width: 90%;
    }

    .text-area h3,
    .text-area1 h3 {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .btn {
        font-size: 11px;
        padding: 8px 20px;
    }

    .product-img {
        right: -10px;
        bottom: 0px;
    }

    .tag-img {
        right: 5px;
        top: 50%;
    }
}

/* Mobile: 480px - 767px */
@media (max-width: 767px) {
    .special-offers {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .offers-grid {
        grid-template-columns: 1fr; /* stack vertically */
        gap: 20px;
    }

    .offer-card {
        min-width: auto;
        height: auto;
        padding: 0 15px;
    }

    .text-area h3,
    .text-area1 h3 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .btn {
        font-size: 10px;
        padding: 6px 18px;
    }

    .product-img {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .tag-img {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 5px;
    }
}

/* Extra Small Mobile: below 480px */
@media (max-width: 480px) {
    .section-title {
        font-size: 18px;
    }

    .text-area h3,
    .text-area1 h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .btn {
        font-size: 12px;
        padding: 5px 15px;
    }

    .product-img img {
        width: 100%;
        height: auto;
    }

    .tag-img img {
        width: 80%;
        height: auto;
    }
}



/* best seller */

.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns */
  gap: 19px;
}


.bestseller-card {
  border: 1px solid #C9E790;
  border-radius: 14px;
  
  padding: 12px;
  text-align: left;
  position: relative;
  background: #fff;
  transition: 0.3s ease;
}

.bestseller-product-price{
    display: flex;
align-items: center ;
margin-bottom: -14px;
    justify-content: space-between;
}
.bestseller-categories{
    display: flex;
    justify-content: space-between;
}
.bestseller-category {
 background: #EFF8DE;
  color: #0a9d3c;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 500;
  font-family: 'Inter';
  display: inline-block;
height: 15px;
    backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bestseller-image {
  width: 100%;
  height: 150px;
  background: transparent;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom:25px;
}

.bestseller-image img {
  max-width: 100%;
  max-height: 150%;
  object-fit: contain;
}

.bestseller-product-name {
font-size: 14px;
  color: #1B1B1B;
  font-weight: 500;
  font-family: 'Inter';
  display: -webkit-box;       /* Required for line clamp */
    -webkit-line-clamp: 2;      /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3em;         /* Adjust depending on font size */
    height: 2.6em;   
margin-top: 50px;
}

.bestseller-price {
  font-size: 20px;
  font-weight: 500;

  color: #1B1B1B;
   font-family: 'Montserrat', sans-serif !important;

}

/* .bestseller-cart-btn {

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
    color: #1B1B1B;
  transition: 0.3s ease;
  margin-top: 20px;
} */

.bestseller-heart-btn{
    cursor: pointer;
    transition: transform 0.2s;
    width:auto;
    margin-bottom: 12px; 
     backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bestseller-heart-btn:hover {
    transform: scale(1.2);
}


/* Section Wrapper best seller */
.bestseller-section {
  padding-left: 80px;
  padding-right: 80px;
padding-top: 50px;
}

/* Heading */
.bestseller-heading {
  font-size: 26px;
  font-weight: 600;
  font-family: 'Montserrat';
  text-align: left;
  margin-bottom: 25px;
}
.bestseller-heading span {
  color:#3F8C53;
  border: none;
  border-bottom: 3px solid #A4CF53;
}
/* ============================
   BASE GRID (Desktop)
============================= */
.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 19px;
}

/* ============================
   SECTION WRAPPER
============================= */
.bestseller-section {
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 50px;
}

/* ============================
   RESPONSIVE BREAKPOINTS
============================= */

/* Large Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
  .bestseller-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .bestseller-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bestseller-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Small Tablets & Large Mobiles (max-width: 768px) */
@media (max-width: 768px) {
  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bestseller-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bestseller-image {
    height: 120px;
  }

  .bestseller-product-name {
    font-size: 13px;
    margin-top: 25px;
  }

  .bestseller-price {
    font-size: 18px;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .bestseller-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .bestseller-heading {
    font-size: 22px;
  }

  .bestseller-image {
    height: 100px;
  }
}




/* trust section */
.trust-section {
    text-align: center;

    margin-top: 80px;
    margin-bottom: 80px;
    font-family: 'Montserrat', sans-serif !important;
}

.trust-section h2 {
    font-size: 26px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
    margin-bottom: 33px;
}
.trust-section h2 span {
color: #3F8C53;
border-bottom: 2.5px solid #A4CF53;
}
.trust-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-box1 {
    border-right: 2px solid #ddd;
    padding-right:62px;
  
    display: flex;
    align-items: center;
    gap: 12px;
 
    justify-content: center;
}
.trust-box2 {
    border-right: 2px solid #ddd;
    padding-right:62px;
    padding-left: 31px;
    display: flex;
    align-items: center;
    gap: 12px;
 
    justify-content: center;
}.trust-box3 {
  
    padding-left:31px;
  
    display: flex;
    align-items: center;
    gap: 12px;
   
    justify-content: center;
}

.icon {
    font-size: 36px;
    color: #3A8A50;
}

.trust-box1 p {
    margin: 0;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif !important;

    font-weight: 500;
    color: #373737;
}
.trust-box2 p {
    margin: 0;
    font-size: 16px;
   font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    color: #373737;
}

.trust-box3 p {
    margin: 0;
    font-size: 16px;
     font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    color: #373737;
}

/* ============================
   TRUST SECTION BASE STYLES
============================= */
.trust-section {
    text-align: center;
    margin: 80px auto ;
    font-family: 'Montserrat', sans-serif !important;
}

.trust-section h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 33px;
}

.trust-section h2 span {
    color: #3F8C53;
    border-bottom: 2.5px solid #A4CF53;
}

.trust-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-box1,
.trust-box2,
.trust-box3 {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-box1 {
    border-right: 2px solid #ddd;
    padding-right: 62px;
}

.trust-box2 {
    border-right: 2px solid #ddd;
    padding: 0 62px 0 31px;
}

.trust-box3 {
    padding-left: 31px;
}

.icon {
    font-size: 36px;
    color: #3A8A50;
}

.trust-box1 p,
.trust-box2 p,
.trust-box3 p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #373737;
}

/* ============================
   RESPONSIVE STYLES
============================= */

/* Tablets: 768px - 991px */
@media (max-width: 991px) {
    .trust-boxes {
        gap: 20px;
    }

    .trust-box1,
    .trust-box2,
    .trust-box3 {
        padding: 0 20px;
        border-right: none;
    }
}

/* Small Tablets & Mobile: 480px - 767px */
@media (max-width: 767px) {
    .trust-boxes {
        flex-direction: column;
        gap: 25px;
    }

    .trust-box1,
    .trust-box2,
    .trust-box3 {
        padding: 0;
        border: none;
    }

    .trust-box1 p,
    .trust-box2 p,
    .trust-box3 p {
        font-size: 14px;
    }

    .icon {
        font-size: 28px;
    }
}

/* Extra Small Mobiles: below 480px */
@media (max-width: 480px) {
    .trust-section h2 {
        font-size: 22px;
    }

    .trust-box1 p,
    .trust-box2 p,
    .trust-box3 p {
        font-size: 13px;
    }

    .icon {
        font-size: 24px;
    }
}


/* carousal */

/* Full width */
.top-brands {
    width: 100%;
margin-top: 50px;

    background: #FAFAFA;
}

/* Header: left title + right buttons */
.tb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
}

.tb-title {
    font-size: 26px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
    margin: 0;
}

.tb-title span {
    color: #3F8C53;
    border-bottom: 2px solid #A4CF53;
}

/* Buttons on the right */
.tb-btn-group {
    display: flex;
    gap: 8px;
}

.tb-btn {
    background: #f2f2f2;
    border: none!important;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 4px;

    transition: background 0.2s;
}

.tb-btn:hover {
    background: #e0e0e0;
}

/* Carousel */
.tb-carousel-wrapper {
padding-bottom: 40px;
  
        overflow: hidden;
    position: relative;
}

.tb-carousel {
  
        display: flex;
    gap: 30px;
    will-change: transform;
    transition: transform 0.3s ease-in-out;
}

/* Logos */
.tb-carousel img {
     /* adjust as needed */
    cursor: pointer;
    transition: transform 0.3s;

}
.tb-carousel a img:hover {
  transform: scale(1.1);
}

/* Optional: hide scrollbar if needed */
.tb-carousel::-webkit-scrollbar { display: none; }
/* ================================ */
/*   LARGE SCREENS 1200px ↓         */
/* ================================ */
@media (max-width: 1200px) {
    .tb-header {
        padding: 30px 50px;
    }

    .tb-carousel {
        gap: 25px;
    }

    .tb-carousel img {
        width: 130px;
    }
}


/* ================================ */
/*   TABLETS 992px ↓                */
/* ================================ */
@media (max-width: 992px) {
    .tb-header {
        padding: 25px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tb-title {
        font-size: 24px;
    }

    .tb-carousel {
        gap: 20px;
    }

    .tb-carousel img {
        width: 120px;
    }
}


/* ================================ */
/*   SMALL TABLETS 768px ↓          */
/* ================================ */
@media (max-width: 768px) {
    .tb-header {
        padding: 20px 25px;
    }

    .tb-title {
        font-size: 22px;
    }

    .tb-carousel {
        gap: 20px;
    }

    .tb-carousel img {
        width: 110px;
    }

    .tb-btn-group {
        display: none; /* optionally hide arrows on tablet */
    }
}


/* ================================ */
/*   MOBILE 576px ↓                 */
/* ================================ */
@media (max-width: 576px) {
    .tb-header {
        padding: 20px 20px;
    }

    .tb-title {
        font-size: 20px;
    }

    .tb-carousel {
        gap: 15px;
    }

   
}


/* ================================ */
/*   VERY SMALL MOBILE 430px ↓      */
/* ================================ */
@media (max-width: 430px) {
    .tb-header {
        padding: 15px 15px;
        gap: 10px;
    }

    .tb-title {
        font-size: 18px;
    }

    .tb-carousel {
        gap: 12px;
    }

}

/* reviews */
/* MAIN SECTION */
.reviews-section {
    margin-top: 50px;
    margin-bottom: 50px;

  background: #FAFAFA;
  font-family: 'Montserrat', sans-serif !important;
}
.reviews{
    padding-left: 80px;
    padding-right: 80px;
padding-top:30px;
padding-bottom: 42px;
}

/* TITLE + ARROWS ROW */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-title {
  font-size:26px;
  font-weight: 600;
  margin-bottom: 25px;
}

.main-title span {
  color: #3F8C53;
  border-bottom: 2.5px solid #A4CF53;
}

/* TRUSTPILOT ROW */
.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #373737;
  margin-bottom: 0px;
}
.trust-row span{
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
    color: #000;
    margin-top: 2px;
    margin-left: -4px;
}
.rating {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif !important;
}

.trust-logo {
margin-right: -5px;
margin-top: -3px;
}

.based {
  font-size: 16px;
  color: #373737;
    font-family: 'Montserrat', sans-serif !important;   
    font-weight: 500;
}

/* RIGHT ARROWS TOP POSITION */
.nav-arrows .arrow-btn {
  padding: 8px 10px;
  background: #f2f2f2;
  border-radius: 4px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  margin-left: 6px;
  transition: 0.2s ease;
}

.nav-arrows .arrow-btn:hover {
  background: #e6e6e6;
}

/* REVIEWS ROW */
.reviews-wrapper {
  display: flex;
  
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 15px;
  position: relative;
}

/* CARD DESIGN */
.review-card {
  width: 341px;
  height: 260px;
  background: url('assets/images/card-bg.png') no-repeat right bottom;
  background-size: contain;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: space-between;
}

/* BACKGROUND IMAGE IN TILE */
/* .card-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;  
  height: 100%;
  
  background-image: url("assets/images/Mask\ group\ \(22\).png"); 
  background-size: cover;      
  background-position: center;  
  background-repeat: no-repeat;

  pointer-events: none;
  z-index: 0; 
} */


/* REVIEW TEXT */
.review-text {
  font-size: 14px;
  line-height: 20px;
  color: #373737;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500;
  
}
/* STARS */
.stars {
  display: flex;
  gap: 4px; /* space between stars */
  margin: 10px 0 30px;
}


.review-item {
  display: flex;
  flex-direction: column;
   /* same width as card */
}
.profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 50px; 
  margin-top: -30px;/* optional: small indent like design */
}

/* PROFILE INFO */


.avatar {
 
  border-radius: 50%;
}

.profile h4 {
  margin: 0;
  font-size: 12px;
  color: #373737;
}

.profile span {
  font-size: 10px;
  color: #909090;
}
/* ============================
   RESPONSIVE STYLES ONLY
============================= */

/* Tablets: 768px - 991px */
@media (max-width: 991px) {
    .reviews {
        padding-left: 40px;
        padding-right: 40px;
    }

    .main-title {
        font-size: 22px;
    }

    .trust-row span {
        font-size: 16px;
    }

    .rating, .based {
        font-size: 14px;
    }

    .profile {
        margin-left: 20px;
        margin-top: -20px;
    }

    .stars {
        margin: 8px 0 25px;
    }

    .review-text {
        font-size: 13px;
        line-height: 18px;
    }
}

/* Mobile: 480px - 767px */
@media (max-width: 767px) {
    .reviews {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .main-title {
        font-size: 20px;
    }

    .trust-row span {
        font-size: 14px;
        margin-left: 0;
    }

    .rating, .based {
        font-size: 12px;
    }

    .profile {
        margin-left: 10px;
        margin-top: -15px;
    }

    .stars {
        margin: 6px 0 20px;
    }

    .review-text {
        font-size: 12px;
        line-height: 16px;
    }
}

/* Extra Small Mobile: below 480px */
@media (max-width: 480px) {
    .reviews {
        padding-left: 10px;
        padding-right: 10px;
    }

    .main-title {
        font-size: 18px;
    }

    .trust-row span {
        font-size: 12px;
    }

    .rating, .based {
        font-size: 11px;
    }

    .profile h4 {
        font-size: 10px;
    }

    .profile span {
        font-size: 9px;
    }

    .stars {
        margin: 4px 0 15px;
    }

    .review-text {
        font-size: 11px;
        line-height: 14px;
    }

    .profile {
        margin-left: 5px;
        margin-top: -10px;
    }
}

/* footer */

#royal-footer {
    background: #FAFAFA;
    font-family: 'Montserrat', sans-serif !important;
}
.rf-social brand-social{
    color: black;
}
/* GRID LAYOUT */
.rf-container {
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 62px;
    margin: auto;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}

/* Paragraphs */
.rf-col p {
    font-size: 12px;
    color: #808080;
    line-height: 18px;
    max-width: 80%;
    text-align: justify;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* Headings */
.rf-col h4 {
    font-size: 16px;
    color: #3F8C53;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Lists */
.rf-col ul {
    list-style: none;
    padding: 0px;
}
.rf-col ul li a {
    color: #1B1B1B;
    text-decoration: none;
    display: block;
    margin: 12px 0;
    font-weight: 500;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
}

.rf-logo {
    margin-bottom: 0px;
}

/* Ratings */
.rf-rating {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 12px;
}
.rf-rating span {
    font-size: 8px;
    font-weight: 400;
    font-family: 'Poppins';
}

/* SOCIAL + NEWSLETTER FLEX */
.rf-social-news {
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

/* Left Social Icons */
.rf-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Newsletter */
.rf-newsletter form {
    display: flex;
    align-items: center;
    margin-right: 80px;
}

/* Wrapper: input + button inside */
.newsletter-wrapper {
    position: relative;
    width: 350px;
}

/* Input field */
.newsletter-wrapper input {
    width: 100%;
    padding: 12px 50px 12px 18px;
    border-radius: 6px;
    border: none;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
}

/* Placeholder */
.newsletter-wrapper input::placeholder {
    font-size: 12px;
    color: #767676;
}

/* Subscribe button inside input */
.newsletter-wrapper button {
    position: absolute;
    right:-65px;
    top: 50%;
    transform: translateY(-50%);
    background: #3F8C53;
    border: none;
    color: white;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.newsletter-wrapper button img {
    width: 14px;
    height: 14px;
    margin-bottom: -2px;
}

/* Bottom Bar */
.rf-bottom {
    background: #A4CF53;
    border-top: 1px solid #d6e7a9;
    margin-top: 30px;
    padding: 8px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rf-bottom p {
    font-size: 12px;
    color: #1B1B1B;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.rf-bottom p span {
    color: #000;
}

/* Payment logos */
.rf-payments img {
    margin-left: 10px;
}/* ============================
   FOOTER RESPONSIVE
============================= */

/* Tablets: 768px - 991px */
@media (max-width: 991px) {
    .rf-container {
        grid-template-columns: 2fr 1fr 1fr 1fr; /* fewer columns */
        padding-left: 40px;
        padding-right: 40px;
        gap: 20px;
    }

    .rf-social-news {
        padding-left: 40px;
        padding-right: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .rf-newsletter form {
        margin-right: 0;
    }

    .newsletter-wrapper button {
        right: -55px;
        padding: 8px 10px;
    }

    .rf-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 40px;
        gap: 10px;
    }
}

/* Mobile: 480px - 767px */
@media (max-width: 767px) {
    .rf-container {
        grid-template-columns: 1fr 1fr; /* 2 columns stacked */
        padding-left: 20px;
        padding-right: 20px;
        gap: 15px;
    }

    .rf-col p, .rf-col ul li a {
        font-size: 11px;
    }

    .rf-social-news {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .newsletter-wrapper {
        width: 100%;
    }

    .newsletter-wrapper button {
        right: -50px;
        padding: 7px 10px;
    }

    .rf-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 20px;
        gap: 10px;
    }

    .rf-payments img {
        margin-left: 5px;
        width: auto;
        max-height: 20px;
    }
}

/* Extra Small Mobile: below 480px */
@media (max-width: 480px) {
    .rf-container {
        grid-template-columns: 1fr; /* stacked vertically */
        padding-left: 15px;
        padding-right: 15px;
        gap: 10px;
    }

    .rf-col h4 {
        font-size: 14px;
    }

    .rf-col p, .rf-col ul li a {
        font-size: 10px;
    }

    .newsletter-wrapper {
        width: 100%;
    }

    .newsletter-wrapper input {
        padding: 10px 40px 10px 12px;
        font-size: 11px;
    }

    .newsletter-wrapper button {
        right: -45px;
        padding: 6px 8px;
    }

    .rf-bottom {
        padding: 8px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .rf-payments img {
        margin-left: 5px;
        max-height: 18px;
    }
}


