/* ===== Base ===== */
:root {
  --brand-green: #2E7D32;
  --text: #1a1a1a;
  --muted: #777;
  --line: #e9e9e9;
  --soft: #f3f3f3;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

.topbar-row {
  gap: 14px;
  padding: 5px 0;
}

.brand-text {
  font-weight: 800;
  font-size: 38px;
  letter-spacing: .5px;
  color: var(--brand-green);
  line-height: 1;
  text-transform: lowercase;
  white-space: nowrap;
}

.header-Search {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 280px;
}

/* Search container */


.search-box {
  position: relative;
  width: 100%;
  max-width: 980px;
}


.search-box input {
  width: 100%;
  height: 45px;
  padding: 0 74px 0 18px;
  font-size: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 26px;
  outline: none;
  background: #fff;
  transition: 0.25s ease;
}

.search-box input::placeholder {
  color: #b7b7b7;
}

.search-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 54px;
  width: 70px;
  border: 0;
  background: #87ce51;
  border-radius: 0 6px 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.search-btn i {
  color: #fff;
  font-size: 22px;
}

.search-btn:hover {
  background: #256628;
}

.search-box input:focus {
  border-color: #d8d8d8;
  box-shadow: 0 0 0 4px rgba(8, 168, 38, 0.2);
}

.search-icon {
    position: absolute;
    right: -6px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 22px;
    top: 53%;
    transform: translateY(-50%);
    color: #ffffff;
    background-color: #87ce51;
    padding: 5px 12px;
    font-size: 18px;

}

.delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: .2s ease;
}

.delivery-pill i {
  color: #87ce51;
  font-size: 16px;
}

.delivery-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* Right side */
.account {
  color: var(--text);
}

.account i {
  font-size: 22px;
  color: #111;
}

.account-title {
  font-weight: 700;
  font-size: 15px;
}

.account-sub {
  font-size: 13px;
  color: var(--muted);
}

.cart {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.cart i {
  font-size: 22px;
}

.cart-text {
  font-size: 15px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  background: #2e7d32;
  color: #fff;
  border-radius: 999px;
  border: 2px solid #fff;
}

.customCartItem{
    display:flex;
    gap:14px;
    padding:14px 0;
    border-bottom:1px solid #e9ecef;
}

.customCartThumb{
    width:88px;
    height:88px;
    border-radius:14px;
    overflow:hidden;
    background:#f8f9fa;
    border:1px solid #e5e5e5;
    flex-shrink:0;
}

.customCartThumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.customCartName{
    font-size:15px;
    font-weight:600;
    line-height:1.45;
    color:#1f2937;
}

.plantCart__removeIcon{
    color:#ef4444;
    font-size:20px;
    line-height:1;
}

.plantCart__removeIcon:hover{
    color:#dc2626;
}

.customQtyBox{
    display:flex;
    align-items:center;
    border:1px solid #dbe2ea;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

.customQtyBox .plantCart__qtyBtn{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#374151;
    font-size:20px;
    background:#fff;
}

.customQtyBox .plantCart__qtyInput{
    width:42px;
    height:34px;
    text-align:center;
    border:0;
    background:#fff;
    font-weight:600;
}

.customCartSummary{
    padding:18px 0 10px;
    border-top:1px solid #e5e7eb;
    margin-top:8px;
}

/* Responsive tune */
@media (max-width: 992px) {
  .brand-text {
    font-size: 34px;
  }

  .header-Search {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .brand-text {
    font-size: 30px;
  }
}


/* ===== Navline ===== */
.navline {
  border-top: 1px solid var(--line);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.navlinks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 6px 0;
  flex-wrap: wrap;
}

.navbar .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1c !important;
  padding: 10px 6px;
  white-space: nowrap;
}

.mega-dropdown {
  position: relative;

}

.mega-menu {
  border: none;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  width: min(1100px, calc(100vw - 24px));
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  margin-top: 10px;
}

.mega-inner {
  padding: 36px 24px 24px 24px;
}

.mega-menu h6 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.mega-menu .dropdown-item {
  padding: 9px 0;
  color: #555;
  background: transparent;
}

.mega-menu .dropdown-item:hover {
  color: #2e7d32;
}

.list-dropdown-item {
  padding-left: 33px;
}

.list-dropdown-item a {
  line-height: 14px;
}

.plants-bottom-dropdown {
  display: flex;
  border-top: 1px solid #c2c2c2;
  padding-top: 20px;
}

@media (hover:hover) and (min-width: 992px) {
  .navbar .mega-dropdown:hover>.mega-menu {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .mega-menu {
    width: 100%;
    left: 0;
    transform: none;
    margin-top: 6px;
    border-radius: 10px;
  }

  .mega-inner {
    padding: 16px;
  }
}

.mega-menu {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0 26px;
  box-shadow: none;
}

.mega-inner {
  background: transparent;
}

.mega-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.mega-link {
  display: block;
  padding: 5px 0;
  color: #111;
  text-decoration: none;
  font-size: 14px;
}

.mega-link:hover {
  text-decoration: underline;
}

.dropdown-menu {
  border: 3px solid black;
  border-radius: 10px;
  padding: 10px;
}

.dropdown-item {
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #fff !important;
}

.dropdown-menu .mega-inner ul li::marker {
  color: #1b8f12;
}

.dropdown-menu .mega-inner ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #181818;
}

.dropdown-menu .mega-inner ul li a:hover {
  color: green;
}

@media (max-width: 991.98px) {
  .navlinks {
    gap: 0;
    padding-bottom: 12px;
  }

  .mega-menu {
    padding: 14px 0 10px;
  }

  .brand-text {
    font-size: 34px;
  }

  .cart-text {
    display: none;
  }
}

.navbar-nav .mega-dropdown {
  position: static;
  margin-right: -10px;
}

.navbar-nav .mega-dropdown .mega-menu {
  left: 50px !important;
  right: 50px !important;
  top: 100%;
  width: auto !important;
  transform: none !important;
  margin-top: -6px;
  border-top: 1px solid;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  padding: 0;
}

.mega-inner {
  padding: 22px;
}


@media (hover:hover) and (min-width: 992px) {
  .navbar-nav .mega-dropdown:hover>.mega-menu {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav .mega-dropdown {
    position: relative;
  }

  .navbar-nav .mega-dropdown .mega-menu {
    position: static;
    box-shadow: none;
    margin-top: 0;
    border-radius: 0;
  }

  .mega-inner {
    padding: 14px 12px;
  }
}

.soilMore-dd {
  position: relative;
}

.soilMore-menu {
  position: absolute;
  top: 90%;
  width: max-content;
  min-width: 240px;
  padding: 5px 14px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.soilMore-col .soilMore-item {
  margin-left: 15px;
}

.soilMore-title ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #181818;
}

.mega-menu-2 {
  border: 1px solid #fff !important;
}

.soilMore-inner {
  padding: 10px 25px 10px 5px;
}

.soilMore-title {
  font-weight: 800;
  font-size: 15px;
  margin: 0 0 10px;
}

.soilMore-item {
  font-size: 12px;
  padding: 5px 0;
  color: #333;
}

.soilMore-item:hover {
  background: transparent;
  color: #1b8f12;
  transition: .2s;
}

@media (min-width: 992px) {
  .soilMore-dd:hover>.soilMore-menu {
    display: block;
    margin-top: 0;
  }
}

/* ---------------------------------------------------------------------------------------------------------------- */



/* ===============================================main slider css start================================== */
 .index-banner {
        padding: 28px 0;
        background: #fff;
    }

    .big-banner {
        height: 520px;
        border-radius: 0;
        overflow: hidden;
        position: relative;
        background: #ddd;
    }

    .big-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .side-banner {
        height: 245px;
        border-radius: 0;
        overflow: hidden;
        position: relative;

    }

    .side-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 18px;
    }

    .banner-content {
        position: absolute;
        inset: 0;
        padding: 26px 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .banner-text h2 {
        margin: 0;
        font-weight: 800;
        font-size: 33px;
        line-height: 1.05;
        color: #fff;
        width: 100px !important;
    }

    .banner-text p {
        margin: 18px 0 0;
        font-size: 15px;
        font-weight: 600;
        color: #000;
        background-color: #fff;
        display: inline-block;
        padding: 2px 14px;
        border-radius: 4px;
    }

    .banner-img {
        width: 56%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .banner-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .banner-text .highlight {
        color: #ffb400;
    }

    @media (max-width: 992px) {
        .big-banner {
            height: 360px;
        }

        .side-banner {
            height: 220px;
        }

        .banner-text h2 {
            font-size: 34px;
        }
    }

    @media (max-width: 576px) {
        .big-banner {
            height: 260px;
        }

        .side-banner {
            height: 200px;
        }

        .banner-content {
            padding: 18px;
        }

        .banner-text h2 {
            font-size: 26px;
        }

        .banner-text p {
            font-size: 14px;
        }

        .banner-img {
            width: 52%;
        }
    }

    .big-banner-slider {
        position: relative;
        height: 520px;
        overflow: hidden;
    }

    .big-banner-slider .slide {
        position: absolute;
        inset: 0;
        transform: translateX(100%);
        opacity: 0;
        transition: transform .75s ease, opacity .75s ease;
    }

    .big-banner-slider .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .big-banner-slider .slide.active {
        transform: translateX(0);
        opacity: 1;
        z-index: 2;
    }

    .big-banner-slider .slide.prev {
        transform: translateX(-100%);
        opacity: 0;
        z-index: 1;
    }

    .banner-dots {
        position: absolute;
        left: 50%;
        bottom: 14px;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .banner-dots button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 0;
        background: rgba(255, 255, 255, .55);
        cursor: pointer;
        transition: .25s ease;
        padding: 0;
    }

    .banner-dots button.active {
        width: 26px;
        border-radius: 999px;
        background: #fff;
    }

    @media(max-width:992px) {
        .big-banner-slider {
            height: 360px;
        }
    }

    @media(max-width:576px) {
        .big-banner-slider {
            height: 250px;
        }

        .banner-dots {
            bottom: 10px;
        }
    }
/* ===============================================1main slider css end================================== */


/* ===============================================2 Trending on Garden slider css end================================== */

 .slider-container {
        position: relative;
        width: 100%;
        height: 290px ;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
        margin-bottom: 30px;

    }

    .slider-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide.active {
        opacity: 1;
        transform: translateX(0);
        z-index: 2;
    }

    .slide.prev {
        transform: translateX(-100%);
        z-index: 1;
    }


    .slide:nth-child(1) {
        background: linear-gradient(135deg, #1b5e20 0%, #45c06a 100%);
    }

    .slide:nth-child(2) {
        background: linear-gradient(135deg, #0f3d22 0%, #2e7d32 55%, #79d98e 100%);
    }

    .slide:nth-child(3) {
        background: linear-gradient(135deg, #134e2a 0%, #36b37e 100%);
    }

    .slide:nth-child(4) {
        background: linear-gradient(135deg, #1d6b3a 0%, #baf3c7 120%);
        color: #0f2a17;
    }

    .slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 55%);
        pointer-events: none;
    }

    .slide-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        padding: 18px 18px;
    }

    .left-text {
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
    }

    .vertical-text {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 3px;
        opacity: 0.9;
        transform: rotate(180deg);
        text-transform: uppercase;
    }

    .center-content {
        text-align: center;
        padding: 0 70px;
    }

    .slide-title {
        font-size: clamp(2.1rem, 4vw, 4.2rem);
        font-weight: 900;
        letter-spacing: 2px;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
        margin: 0 0 8px;
    }

    .slide-subtitle {
        margin: 0;
        opacity: .92;
        font-weight: 600;
        letter-spacing: .3px;
        font-size: 14px;
    }

    .cta-row {
        margin-top: 16px;
        display: inline-flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 0;
        padding: 10px 14px;
        border-radius: 10px;
        font-weight: 800;
        font-size: 12px;
        letter-spacing: .3px;
        cursor: pointer;
        transition: .25s ease;
        text-decoration: none;
    }

    .cta-primary {
        background: rgba(255, 255, 255, 0.92);
        color: #72cb2e;
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
    }

    .cta-primary:hover {
        transform: translateY(-2px);
        background: #fff;
    }

    .cta-ghost {
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(10px);
    }

    .cta-ghost:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.26);
    }

    .right-text {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        text-align: right;
    }

    .vertical-text-right {
        writing-mode: vertical-lr;
        text-orientation: mixed;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 3px;
        opacity: 0.9;
        display: block;
        margin-bottom: 14px;
        text-transform: uppercase;
    }

    .slide-number {
        font-size: 2.2rem;
        font-weight: 900;
        opacity: 0.95;
        margin-bottom: 6px;
    }

    .slide-details {
        font-size: 11px;
        opacity: 0.85;
        letter-spacing: 1px;
        margin: 0;
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.18);
        border: none;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        transition: all 0.25s ease;
        backdrop-filter: blur(10px);
        z-index: 10;
    }

    .nav-btn:hover {
        background: rgba(255, 255, 255, 0.28);
        transform: translateY(-50%) scale(1.08);
    }

    .prev-btn {
        left: 16px;
    }

    .next-btn {
        right: 16px;
    }

    .dots-container {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.45);
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .dot.active {
        background: white;
        transform: scale(1.35);
    }

    .progress-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: rgba(255, 255, 255, 0.22);
    }

    .progress-fill {
        height: 100%;
        background: rgba(255, 255, 255, 0.92);
        width: 0%;
        transition: width 0.12s linear;
    }

    .banner-slider .header {
        text-align: center;
        margin-bottom: 18px;
    }

    .banner-slider .main-title {
        margin: 0;
        font-weight: 900;
        letter-spacing: .6px;
        color: #111;
        font-size: 28px;
    }

    .banner-slider .subtitle {
        margin: 6px 0 0;
        color: #6b7280;
        font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .slider-container {
            height: 300px;
            border-radius: 14px;
        }

        .center-content {
            padding: 0 56px;
        }

        .nav-btn {
            width: 40px;
            height: 40px;
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }

        .left-text {
            left: 14px;
        }

        .right-text {
            right: 14px;
        }
    }

    @media (max-width: 480px) {
        .slider-container {
            height: 250px;
        }

        .center-content {
            padding: 0 46px;
        }

        .vertical-text,
        .vertical-text-right {
            font-size: 10px;
            letter-spacing: 2px;
        }

        .slide-number {
            font-size: 1.6rem;
        }

        .slide-details {
            font-size: 10px;
        }
    }

    .slider-container {
        touch-action: pan-y;
    }

    
/* ===============================================2 slider Trending on Garden css end================================== */


/* ===============================================Explore Categories start================================== */

    .cat-section {
        padding: 28px 0 22px;
        background: #fff;
    }

    .top-cat-title {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .top-cat-title h2 {
      font-size: 34px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #111;
        margin: 0;
        padding-bottom: 22px;
        display: inline-block;
        position: relative;
    }

  

    .top-cat-title h2::after {

        content: "";
        position: absolute;
      left: 49%;
    top: 50px;
    transform: translateX(-50%);
    width: 152px;
        height: 4px;
        background: #1b8f12;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

  
    .cat-slider {
        position: relative;
        padding: 14px 52px;
        border-radius: 18px;
        overflow: hidden;
    }

    .cat-viewport {
        overflow: hidden;
        width: 100%;
    }

    .cat-track {
        display: flex;
        gap: 20px;
        transition: transform .35s ease;
        will-change: transform;
        padding: 6px 4px;
    }
    .top-cat-card {
        flex: 0 0 auto;
        padding: 18px 0px;
        border-radius: 8px;
        width: 150px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        transition: .22s ease;
    }


    .top-cat-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 8px;
        width: 100%;
    }

    .top-cat-card:hover {
        transform: translateY(-6px);
    }

    .cat-thumb {
        width: 145px;
        height: 146px;
        display: grid;
        place-items: center;
        margin-bottom: 10px;
    }

    .cat-thumb img {
        width: 124px;
        height: 124px;
        object-fit: cover;
        border-radius: 999px;
    }

    .cat-title {
        font-size: 18px;
        font-weight: 700;
        color: #1f1f1f;
        margin: 0;
        line-height: 1.1;
        text-align: center;
    }

    .cat-sub {
        font-size: 12px;
        font-weight: 600;
        color: #6b7280;
        margin-top: 6px;
    }

    /* ====== ARROWS ====== */
    .cat-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 999px;
        border: 1px solid rgba(17, 24, 39, 0.10);
        background: rgba(255, 255, 255, 0.95);
        display: grid;
        place-items: center;
        cursor: pointer;
        z-index: 5;
        user-select: none;
        transition: .15s;
    }

    .cat-arrow:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .cat-arrow.left {
        left: 10px;
        background-color: #e8e8e8;
        color: #000 !important;
    }

    .cat-arrow.right {
        right: 10px;
        background-color: #e8e8e8;
    }

    .cat-arrow svg {
        width: 18px;
        height: 18px;
        stroke: #111;
    }

    .cat-arrow:disabled {
        opacity: .45;
        cursor: not-allowed;
    }

    /* view all button */
    .view-all-wrap {
        display: flex;
        justify-content: center;
        margin-top: 14px;
    }

    .view-all-btn-2 {
       border: 0;
    background: #111827;
    color: #fff;
    padding: 10px 20px;
    border-radius: 7px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: .2s;
    }

    .view-all-btn:hover {
        transform: translateY(-2px);
        opacity: .95;
    }

    /* ====== RESPONSIVE ====== */
    @media (max-width: 1200px) {
        .top-cat-card {
            width: 190px;
        }
    }

    @media (max-width: 992px) {
        .cat-slider {
            padding: 14px 48px;
        }

        .top-cat-card {
            width: 175px;
            height: 170px;
        }
    }

    @media (max-width: 576px) {
        .cat-slider {
            padding: 12px 44px;
            border-radius: 14px;
        }

        .cat-track {
            gap: 14px;
        }

        .top-cat-card {
            width: 155px;
            height: 160px;
        }

        .cat-thumb {
            width: 84px;
            height: 84px;
        }

        .cat-thumb img {
            width: 68px;
            height: 68px;
        }

        .cat-title {
            font-size: 16px;
        }
    }
/* ===============================================Explore Categories end================================== */


/* ===============================================Plants Under ₹99 card start================================== */
  .products-sec {
        padding: 0px 0px 20px 0px;
        background: #fff;
    }

    .new-stock {
        margin: 40px 0 25px;
        position: relative;
    }

    .new-stock h2 {
        font-size: 34px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #111;
        margin: 0;
        padding-bottom: 22px;
        display: inline-block;
        position: relative;
    }

    .new-stock h2::after {

        content: "";
        position: absolute;
        left: 46%;
        top: 40px;
        transform: translateX(-50%);
        width: 152px;
        height: 4px;
        background: #1b8f12;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .p-card {
        border: 1px solid #ededed;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        height: 100%;
    }

    .p-card__media {
        position: relative;
        height: 230px;
        background: #ffffff;
        display: grid;
        place-items: center;
        padding: 0;
        overflow: hidden;
        border-radius: 8px;
    }

    .p-card__media img {
        width: 95%;
        height: 95%;
        border-radius: 8px;
        object-fit: contain;
        filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .08));
        transition: transform 1.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    }


    .p-card__media:hover img {
        transform: scale(1.18);
    }

    .p-card__badge {
        position: absolute;
        top: 12px;
        left: 12px;
        padding: 4px 10px;
        font-weight: 700;
        font-size: 12px;
        letter-spacing: .2px;
        color: #fff;
        background: var(--badge-red);
        border-radius: 6px;
        box-shadow: 0 6px 14px rgba(255, 107, 107, .25);
        text-transform: uppercase;
    }

    .p-card__body {
        padding: 10px 14px 12px;
        border-top: 1px solid #eef2f6;
    }

    .p-card__title {
        font-weight: 700;
        font-size: 14px;
        color: var(--text-dark);
        line-height: 1.2;
        margin: 0 0 0px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 23px;
    }

    .p-card__sub {
        font-size: 13px;
        color: var(--text-muted);
        margin: 0 0 10px;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .p-card__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
            padding: 0px 11px;
            margin-bottom: 10px;
    }

    .p-card__prices {
        display: flex;
        align-items: baseline;
        gap: 10px;
        white-space: nowrap;
    }

    .p-card__price {
        font-weight: 800;
        color: var(--price);
        font-size: 16px;
    }

    .p-card__old {
        color: #9aa4b2;
        text-decoration: line-through;
        font-weight: 600;
        font-size: 13px;
    }

    .p-card__btn {
        border: 0;
        background: #87ce51;
        color: #fff;
        font-weight: 800;
        font-size: 13px;
        padding: 4px 12px;
        border-radius: 6px;
        letter-spacing: .3px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .p-card__btn .plus {
        font-size: 16px;
        font-weight: 900;

    }

    .p-card__btn:hover {
        filter: brightness(.95);
    }

    @media (max-width: 991.98px) {
        .p-card__media {
            height: 210px;
        }
    }

    @media (max-width: 575.98px) {
        .p-card__media {
            height: 190px;
        }

        .p-card__btn {
            padding: 9px 14px;
        }
    }

    @media (min-width: 1200px) {
        .col-xl-2-4 {
            flex: 0 0 auto;
            width: 20%;
        }
    }

    .cart-control {
        display: inline-flex;
        align-items: center;
    }

    .qty-box {
        border: 0;
        background: #87ce51;
        color: #fff;
        font-weight: 800;
        font-size: 13px;
        padding: 5px 8px;
        border-radius: 6px;
        letter-spacing: .3px;
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }

    .qty-btn {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 13px;
        font-weight: 900;
        cursor: pointer;
    }
/* =============================================== Plants Under ₹99 card End=========================================================== */





/* ===============================================Green Decor for Every Location start========================================================= */

  /* ====== SECTION ====== */
    .category-grid-section {
        padding: 15px 0px 40px 0px;
        background: #fff;
    }

    .Green_Decor h2 {
        font-size: 34px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #111;
        margin: 0;
        padding-bottom: 50px;
        display: inline-block;
        position: relative;
    }

    .Green_Decor h2::after {
        content: "";
        position: absolute;
        left: 19.5%;
        top: 46px;
        transform: translateX(-50%);
        width: 180px;
        height: 4px;
        background: #1b8f12;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .cg-card {
        position: relative;
        border: 1px solid #cfd8ea;
        border-radius: 18px;
        overflow: hidden;
        background: #f3f4f6;
        box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    }

    .cg-card .cg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .cg-card .cg-label {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.92);
        border-top: 1px solid rgba(207, 216, 234, .8);
        padding: 12px 10px;
        text-align: center;
        font-weight: 700;
        letter-spacing: .6px;
        color: #5b6776;
        text-transform: uppercase;
        font-size: 16px;
    }

    .cg-card .cg-label:hover {
        background-color: black;
        color: #fff;
        transition: 0.9s;
    }

    .cg-big {
        min-height: 290px;
        height: 340px;
    }

    .cg-small {
        min-height: 260px;
        height: 265px;
    }

    /* Responsive tuning */
    @media (max-width: 992px) {
        .cg-big {
            min-height: 260px;
        }

        .cg-small {
            min-height: 240px;
        }

        .cg-card .cg-label {
            font-size: 15px;
        }
    }

    @media (max-width: 576px) {

        .cg-big,
        .cg-small {
            min-height: 220px;
        }

        .cg-card {
            border-radius: 16px;
        }

        .cg-card .cg-label {
            font-size: 14px;
            padding: 10px;
        }
    }
/* =============================================== Green Decor for Every Location End=========================================================== */





/* ===============================================Best Seller start========================================================= */

  .bottom-categories {
        padding: 0px 0px;
    }

    .new-stock_Seller {
       margin-bottom: 90px;
        position: relative;
        text-align: center;
    }

    .new-stock_Seller h2 {
        font-size: 34px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #111;
        margin: 0;
        padding-bottom: 45px;
        display: inline-block;
        position: relative;
    }

    .new-stock_Seller h2::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 40px;
        transform: translateX(-50%);
        width: 115px;
        height: 4px;
        background: #1b8f12;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }


    .bottom-categories .bc-card {
        position: relative;
        background: #f3f3f3;
        border-radius: 16px;
        padding: 23px 6px 18px 92px;
        min-height: 95px;
        display: flex;
        width: 232px;
        gap: -2px;
        align-items: center;
        justify-content: center;
        overflow: visible;
        box-shadow:
            0 8px 20px rgba(0, 0, 0, 0.08),
            0 2px 6px rgba(0, 0, 0, 0.05);

    }

    .bottom-categories .bc-img-wrap {
      position: absolute;
    left: -16px;
    top: -49px;
    width: 82px;
    height: 126px;
    width: 122px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    }

    .bottom-categories .bc-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .18));
    }

    .Green_Decor_card {
        margin-top: 75px !important;
    }


    .bottom-categories .bc-content {
        text-align: left;
    }

    .bottom-categories .bc-name {
 margin: 1px 0 8px 8px;
    font-size: 14px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    }

    .bottom-categories .bc-btn {
        display: inline-block;
        background: #1b8f12;
        color: #fff;
        padding: 8px 16px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        line-height: 1;
    }

    .view-all-btn-4 {
        display: flex;
        justify-content: center;
        margin-top: 40px !important;
    }

    .view-all-btn-4 a {
        background-color: black;
        color: white;
        text-decoration: none;
        padding: 4px 20px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;

    }

    /* responsive */
    @media (max-width: 576px) {
        .bottom-categories .bc-card {
            padding-left: 88px;
            min-height: 92px;
        }

        .bottom-categories .bc-img-wrap {
            left: 14px;
            top: -26px;
            width: 76px;
            height: 102px;
        }

        .bottom-categories .bc-name {
            font-size: 15px;
        }
    }

/* ===============================================Best Seller End=========================================================== */





/* ===============================================Gardening Product start================================================== */

 .all-gardening {
        padding: 20px 0;
        background: #fff;
    }

    .all-gardening .sec-title {
        font-size: 34px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #111;
        margin: 0;
        padding-bottom: 45px;
        display: flex;
        justify-content: center;
        position: relative;
    }


    .all-gardening .sec-title::after {

        content: "";
        position: absolute;
        left: 50%;
        top: 47px;
        transform: translateX(-50%);
        width: 200px;
        height: 4px;
        background: #1b8f12;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    /* ===== Card (different UI) ===== */
    .garden-card {
        height: 100%;
        border-radius: 22px;
        overflow: hidden;
        background: #fff;
        border: 1px solid rgba(17, 24, 39, 0.10);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        transition: .25s ease;
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .garden-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .garden-img {
        position: relative;
        height: 215px;
        overflow: hidden;
    }

    .garden-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1.02);
        transition: transform .35s ease;
    }

    .garden-card:hover .garden-img img {
        transform: scale(1.10);
    }

    /* bottom info area */
    .garden-info {
        padding: 12px 13px 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .garden-name {
        font-size: 16px;
        font-weight: 800;
        margin: 0;
        color: #111;
    }

    .garden-chip {
        font-size: 12px;
        font-weight: 800;
        padding: 7px 10px;
        border-radius: 999px;
        background: #111;
        color: #fff;
        line-height: 1;
        white-space: nowrap;
    }

    /* subtle gradient corner */
    .garden-card::before {
        content: "";
        position: absolute;
        width: 140px;
        height: 140px;
        right: -70px;
        top: -70px;
        background: radial-gradient(circle, rgba(140, 188, 103, .35), rgba(255, 255, 255, 0) 65%);
        pointer-events: none;
    }

    /* responsive tweaks */
    @media (max-width: 992px) {
        .all-gardening .sec-title {
            font-size: 28px;
        }

        .garden-img {
            height: 165px;
        }
    }

    @media (max-width: 576px) {
        .garden-img {
            height: 180px;
        }

        .garden-name {
            font-size: 15px;
        }
    }

/* ===============================================Gardening Products End=================================================== */





/* =============================================== Popular Plants start=============================================== */

  /* ====== SECTION ====== */
    .room-section {
        padding: 30px 0;
        background: #fff;
    }

    .bottom-categories-title h2 {
        font-size: 34px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #111;
        margin: 0;
        padding-bottom: 45px;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .bottom-categories-title h2::after {
        content: "";
        position: absolute;
        left: 52%;
        top: 42px;
        transform: translateX(-50%);
        width: 150px;
        height: 4px;
        background: #1b8f12;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

.room-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 23%;   /* 4 card ke liye */
}

.room-card {
    width: 100%;
}

    .room-card .room-img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
    }

    .room-card .room-label {
        background: #fff;
        text-align: center;
        padding: 8px 10px;
        border-top: 1px solid #c7d2fe;
        font-size: 17px;
        font-weight: 700;
        color: #2f3a52;
        line-height: 1.1;
    }

    .view-all-btn {
        text-align: center;
    }

    .view-all-btn a {
        /* display: inline-block;
        background: #000; */
        color: #fff;
        text-decoration: none;
        padding: 10px 28px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
    }

    .view-all-btn a:hover {
        color: #fff;
    }

    /* Responsive */
    @media (max-width: 576px) {
        .room-card-link {
            max-width: 100%;
        }

        .room-card {
            max-width: 100%;
        }

        .room-card .room-img {
            height: 190px;
        }

        .room-card .room-label {
            font-size: 18px;
            padding: 12px 8px;
        }
    }
/* =============================================== Popular Plants End================================================= */





/* =============================================== All Plants start========================================================= */

   /* Section */
    .popular-cats {
        padding: 15px 0px 40px 0px;
    }


    .all_plants h2 {
        font-size: 34px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #111;
        margin: 0;
        padding-bottom: 45px;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .all_plants h2::after {

        content: "";
        position: absolute;
        left: 50%;
        top: 41px;
        transform: translateX(-50%);
        width: 131px;
        height: 4px;
        background: #1b8f12;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }


    /* Grid */
    .cat-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 18px;
    }

    /* Card */
    .cat-card {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 4px;
        /* image style like screenshot */
        background: #eee;
        aspect-ratio: 16/9;
        /* same size cards */
        text-decoration: none;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .cat-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1.01);
        transition: transform .35s ease;
    }

    /* Overlay */
    .cat-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 55%);
        opacity: 1;
    }

    .cat-name {
        position: absolute;
        left: 14px;
        bottom: 12px;
        z-index: 2;
        color: #fff;
        font-weight: 700;
        font-size: 18px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    }

    /* Hover */
    .cat-card:hover img {
        transform: scale(1.08);
    }

    /* Responsive */
    @media (max-width: 1199.98px) {
        .cat-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 767.98px) {
        .cat-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .cat-name {
            font-size: 16px;
        }
    }

/* =============================================== All Plants End=========================================================== */





/* ===============================================product-details page css start========================================= */


 /* Breadcrumb */
  .pd-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
  }

  .pd-breadcrumb a:hover {
    color: #3a7b1f;
  }

  .pd-wrap {
    background: linear-gradient(180deg, rgba(135, 206, 81, .10) 0%, rgba(135, 206, 81, 0) 55%);
    border-radius: 26px;
    padding: 18px;
  }

  .pd-gallery {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(2, 6, 23, .12);
    overflow: hidden;
  }

  .pd-main-img {
    position: relative;
    background: #fff;
    padding: 14px;
  }

 .pd-main-img img {
    width: 100%;
    height: 440px;
    object-fit: contain;
    border-radius: 14px;
  }

  .pd-badges {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .pd-pill {
    background: rgba(15, 23, 42, .78);
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
  }

  .pd-pill--green {
    background: rgba(135, 206, 81, .95);
    color: #0b2a12;
  }

  .pd-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 14px;
    border-top: 1px solid rgba(15, 23, 42, .10);
    background: #fff;
  }

  .pd-thumb {
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: .2s ease;
    height: 70px;
    background: #fff;
  }

  .pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pd-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(135, 206, 81, .7);
    box-shadow: 0 10px 20px rgba(2, 6, 23, .10);
  }

  /* Info card */
  .pd-info {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(2, 6, 23, .12);
    padding: 18px;
  }

  .pd-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .pd-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 14px;
  }

  .pd-stars i {
    color: #f4b400;
  }

  .pd-priceRow {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px;
    background: rgba(135, 206, 81, .10);
    border: 1px dashed rgba(135, 206, 81, .55);
    border-radius: 16px;
    margin: 12px 0 16px;
  }

  .pd-price {
    font-size: 25px;
    font-weight: 700;
  }

  .pd-mrp {
    color: #64748b;
    font-weight: 700;
  }

  .pd-mrp del {
    color: #ef4444;
    font-weight: 900;
  }

  .pd-off {
    background: rgba(135, 206, 81, .95);
    color: #0b2a12;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 13px;
  }

  /* Option chips */
  .pd-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }

  .pd-chip {
    border: 1px solid rgba(15, 23, 42, .10);
    background: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    font-size: 13px;
    color: #0f172a;
    transition: .2s;
    user-select: none;
  }

  .pd-chip.active,
  .pd-chip:hover {
    border-color: rgba(135, 206, 81, .85);
    background: rgba(135, 206, 81, .16);
  }

  /* Quantity + Buttons */
  .pd-actions {
    display: grid;
    grid-template-columns: 170px 1fr 52px;
    gap: 10px;
    margin-top: 16px;
  }

  .pd-qty {
    display: flex;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 14px;
    overflow: hidden;
    height: 48px;
    background: #fff;
  }

  .pd-qty button {
    width: 44px;
    border: 0;
    background: rgba(135, 206, 81, .18);
    font-weight: 950;
    color: #0b2a12;
  }

  .pd-qty input {
    width: 82px;
    border: 0;
    text-align: center;
    font-weight: 900;
    outline: none;
  }
    .btn-brand-2 {
    background: #87ce51;
    border: 0;
    color: #0b2a12;
    font-weight: 950;
         border-radius: 5px;
    height: 34px;
    font-size: 14px;
    box-shadow: 0 14px 34px rgba(2, 6, 23, .12);
  }
    .btn-brand-2:hover {
background-color:#77b746 ;
  }

  .btn-brand {
    background: #87ce51;
    border: 0;
    color: #0b2a12;
    font-weight: 950;
         border-radius: 13px;
    height: 48px;
    font-size: 14px;
    box-shadow: 0 14px 34px rgba(2, 6, 23, .12);
  }

  .btn-brand:hover {
    border: 1px solid black;
    filter: brightness(.97);
    transform: translateY(-1px);
  }

  .btn-like {
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 14px;
    height: 48px;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
    color: #0f172a;
  }

  .btn-like:hover {
    border-color: rgba(135, 206, 81, .8);
    background: rgba(135, 206, 81, .14);
  }

  /* Feature cards */
  .pd-featureGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
  }

  .pd-feature {
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 16px;
    padding: 12px;
    background: #fff;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .pd-feature i {
    color: #3a7b1f;
    font-size: 20px;
    margin-top: 2px;
  }

  .pd-feature b {
    display: block;
    font-weight: 950;
    margin-bottom: 2px;
  }

  .pd-feature span {
    color: #64748b;
    font-weight: 600;
    font-size: 13px;
  }

  /* Tabs area */
  .pd-tabs {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(2, 6, 23, .12);
    margin-top: 18px;
    overflow: hidden;
  }

  .nav-pills .nav-link {
    border-radius: 0;
    font-weight: 900;
    color: #0f172a;
    padding: 14px 16px;
  }

  .nav-pills .nav-link.active {
    background: rgba(135, 206, 81, .22);
    color: #0b2a12;
    border-bottom: 3px solid #87ce51;
  }

  .pd-tabBody {
    padding: 16px;
    color: #334155;
    font-weight: 600;
    line-height: 1.7;
  }

  /* Sticky buy card on desktop */
  @media (min-width: 992px) {
    .pd-sticky {
      position: sticky;
      top: 18px;
    }
  }

  /* Responsive */
  @media (max-width: 991px) {
    .pd-main-img img {
      height: 360px;
    }

    .pd-actions {
      grid-template-columns: 160px 1fr 52px;
    }

    .pd-featureGrid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 576px) {
    .pd-title {
      font-size: 22px;
    }

    .pd-actions {
      grid-template-columns: 1fr;
    }

    .btn-like {
      width: 100%;
    }

    .pd-thumbs {
      grid-template-columns: repeat(4, 1fr);
    }

    .pd-thumb {
      height: 64px;
    }
  }
/* ===============================================product-details page css  End========================================== */




/* =============================================== login modal css start========================================================= */


    .loginPopup__content {
      border-radius: 22px !important;
      overflow: hidden;
      border: 0;
      box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
      position: relative;
      height: 465px;
    }

    .loginPopup__close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 10;
      /* background: #fff; */
      border-radius: 999px;
      padding: 10px;
      opacity: 1;
    }

    .loginPopup__left {
      min-height: 560px;
      background: url("assets/images/login-popup-img.jpg") center/cover no-repeat;
      position: relative;
      background-size: cover;
    }

    .loginPopup__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(0, 120, 255, .65), rgba(0, 0, 0, .05));
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 38px;
    }

    .loginPopup__brand h2 {
      font-family: "cursive";
      color: #fff;
      font-weight: 800;
      font-size: 44px;
      margin: 0 0 6px;
    }

    .loginPopup__brand p {
      color: rgba(255, 255, 255, .92);
      max-width: 320px;
      margin: 0;
      font-weight: 500;
    }

    .loginPopup__right {
      background: #fff;
      min-height: 560px;
      position: relative;
    }

    .loginPopup__formWrap {
      padding: 52px 46px 28px;
    }

    .loginPopup__title {
      font-size: 54px;
      font-weight: 900;
      color: #87ce51;
      margin: 0;
      line-height: 1;
    }

    .loginPopup__sub {
      margin: 6px 0 24px;
      color: #666;
      font-weight: 600;
    }

    .loginPopup__label {
      font-size: 12px;
      font-weight: 800;
      color: #87ce51;
      margin-bottom: 6px;
      display: block;
    }

    .loginPopup__input {
      position: relative;
    }

    .loginPopup__input i {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: #87ce51;
      font-size: 16px;
    }

    .loginPopup__input .form-control {
      height: 48px;
      padding-left: 44px;
      border-radius: 10px;
      border: 1.5px solid #bbe899;
      box-shadow: none;
    }

    .loginPopup__input .form-control:focus {
      border-color: #87ce51;
      box-shadow: 0 0 0 .2rem rgba(10, 134, 214, .15);
    }

    .loginPopup__forgot {
      font-size: 12px;
      color: #888;
      text-decoration: none;
      font-weight: 700;
    }

    .loginPopup__forgot:hover {
      color: #548e28;
    }

    .loginPopup__btn {
      height: 46px;
      border-radius: 10px;
      background: #87ce51;
      color: #fff;
      font-weight: 900;
      letter-spacing: .6px;
      border: 1px solid #87ce51;
    }

    .loginPopup__btn:hover {
      background: #72c036;
      color: #fff;
    }

    .loginPopup__or {
      position: relative;
      text-align: center;
      margin: 16px 0 14px;
    }

    .loginPopup__or::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      height: 1px;
      background: rgba(0, 0, 0, .12);
    }

    .loginPopup__or span {
      position: relative;
      background: #fff;
      padding: 0 10px;
      font-weight: 800;
      color: #777;
      font-size: 12px;
    }

    .loginPopup__social {
      display: flex;
      justify-content: center;
      gap: 14px;
    }

    .loginPopup__socialBtn {
      width: 56px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, .12);
      background: #f5f7fb;
      display: grid;
      place-items: center;
      font-size: 18px;
    }

    .loginPopup__socialBtn:hover {
      background: #eef6ff;
      border-color: #518826;
    }

    .loginPopup__foot {
      text-align: center;
      font-size: 12px;
      color: #666;
      font-weight: 700;
    }

    .loginPopup__foot a {
      color: #87ce51;
      text-decoration: none;
      font-weight: 900;
    }

    .loginPopup__bottomArt {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 70px;
      background: linear-gradient(90deg, rgba(10, 134, 214, .18), rgba(10, 134, 214, .05));
    }

    .loginPopup__bottomArt span {
      position: absolute;
      right: 18px;
      bottom: 16px;
      width: 120px;
      height: 30px;
      border: 2px solid rgba(10, 134, 214, .35);
      border-radius: 8px;
    }

    /* responsive */
    @media(max-width: 991px) {
      .loginPopup__formWrap {
        padding: 34px 22px 22px;
      }

      .loginPopup__title {
        font-size: 42px;
      }

      .loginPopup__right {
        min-height: auto;
      }
    }

/* ===============================================login modal css End=========================================================== */





/* =============================================== Delevery modal css start========================================================= */

.pincodeThemeModal .modal-dialog {
  max-width: 500px;
}

.pincodeThemeModal .modal-content {
  border: none;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  position: relative;
}

.pincodeThemeModal__content {
  padding: 0;
}

.pincodeThemeModal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  opacity: 1;
  font-size: 12px;
  box-shadow: none;
}

.pincodeThemeModal__wrapper {
  padding: 38px 30px 26px;
  text-align: center;
  background: #fff;
}

.pincodeThemeModal__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f1fff1;
  border: 1px solid #d8f3d8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.pincodeThemeModal__icon i {
  font-size: 26px;
  color: #87ce51;
}

.pincodeThemeModal__title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.pincodeThemeModal__sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}

.pincodeThemeModal__field {
  margin-bottom: 16px;
}

.pincodeThemeModal__input {
  height: 52px;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #222;
  font-size: 15px;
  text-align: center;
  box-shadow: none !important;
}

.pincodeThemeModal__input:focus {
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.12) !important;
}

.pincodeThemeModal__input::placeholder {
  color: #999;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.pincodeThemeModal__btn {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  border: none;
  background: #87ce51;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  transition: 0.3s ease;
}

.pincodeThemeModal__btn:hover {
  background: #7ab949;
  color: #fff;
}

.pincodeThemeModal__help {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  gap: 10px;
  flex-wrap: wrap;
}

.pincodeThemeModal__help a {
  font-size: 13px;
  color: #5f5f5f;
  text-decoration: none;
}

.pincodeThemeModal__help a:hover {
  color: #7ab949;
}

@media (max-width: 576px) {
  .pincodeThemeModal .modal-dialog {
    max-width: 95%;
    margin: 1rem auto;
  }

  .pincodeThemeModal__wrapper {
    padding: 34px 20px 22px;
  }

  .pincodeThemeModal__title {
    font-size: 23px;
  }

  .pincodeThemeModal__sub {
    font-size: 14px;
  }

  .pincodeThemeModal__help {
    justify-content: center;
  }
}
/* =============================================== Delevery modal css End=============================== */


