﻿* {
    margin:0;
    padding:0;
    box-sizing: border-box !important;
}
html, body {
    overflow-x: hidden !important;
}

   /* TOP BAR */
        .top-bar {
            background: #395e01;
            color: #fff;
            font-size: 14px;
        }

        /* Main Wrapper */
.category-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}


/* Scrolling Track */
.category-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

/* Category Item */
.category-item {
    width: 110px;
    text-align: center;
    flex-shrink: 0;
}

/* Category Images */
.category-item .cat-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #c49dd3;
    padding: 3px;
}

/* Text */
.category-item p {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
}

/* Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 575px) {
    .category-item {
        width: 90px;
    }
    .category-item .cat-img {
        width: 75px;
        height: 75px;
    }
    .category-item p {
        font-size: 12px;
    }
}


.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-banner .banner-img {
    width: 100%;
    height:350px;         /* maintain original aspect ratio */
    display: block;
}


/* Responsive text */
@media (max-width: 991px) {
    .banner-text h2 { font-size: 2rem; }
    .banner-text h1 { font-size: 1.5rem; }
    .banner-text p { font-size: 1rem; }
}

@media (max-width: 575px) {
    .banner-text h2 { font-size: 1.5rem; }
    .banner-text h1 { font-size: 1.2rem; }
    .banner-text p { font-size: 0.9rem; }
}

.section-title {
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
    flex-direction: column;  /* stack elements vertically if multiple */
    margin: 50px 0;
    position: relative;
}

.section-title h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    text-transform: capitalize;
    color:#222222;
    margin-bottom: 0;
    position: relative;
    /* flex-wrap: nowrap;  <-- remove this */
}



/* MAIN WRAPPER */
.product-banner-bg {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* SLIDER */
.product-banner-slider {
    width: 100%;
}

/* SLIDES */
.product-banner-slider .swiper-slide {
    width: 100%;
    height: auto;
}

.product-banner-slider img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* NAVIGATION BUTTONS */
.product-banner-slider-btn {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    transform: translateY(-50%);
    z-index: 20;
}

.slider-btn-bg {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

.slider-btn-bg:hover {
    transform: scale(1.1);
}


/* ===========================
   TABLET RESPONSIVE 
=========================== */
@media (max-width: 992px) {
    .slider-btn-bg {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    .product-banner-slider-btn {
        padding: 0 15px;
    }
}


/* ===========================
   MOBILE RESPONSIVE 
=========================== */
@media (max-width: 767px) {

    .slider-btn-bg {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .product-banner-slider-btn {
        padding: 0 10px;
    }

    .product-banner-section {
        margin-bottom: 50px !important;
    }
}


/* ===========================
   EXTRA SMALL MOBILE (0–480px)
=========================== */
@media (max-width: 480px) {

    .slider-btn-bg {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .product-banner-slider-btn {
        padding: 0 6px;
    }
}
/*suggest*/
/* Suggested For You Section */
/* Suggested Section */
.suggest-section {
  padding: 40px 0;
}

.suggest-section .section-title3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Category Pills */
.suggest-section .nav-pills {
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.suggest-section .nav-pills .nav-link {
  background: #fafafa;
  border: 1px solid #ddd;
  color: #000;
  border-radius: 30px;
  padding: 6px 20px;
  font-weight: 500;
  transition: all .3s;
}

.suggest-section .nav-pills .nav-link:hover {
  border-color: #000;
}

.suggest-section .nav-pills .nav-link.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Product Card */
.product-card2 {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s;
}

.product-card2:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Product Image */
.product-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

/* Favorite + Add to Cart */
.view-and-favorite-area {
  position: absolute;
  top: 10px;
  right: 10px;
}

.view-and-favorite-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.view-and-favorite-area li {
  margin-bottom: 8px;
}

.view-and-favorite-area svg {
  fill: #555;
  transition: .3s;
}

.view-and-favorite-area svg:hover {
  fill: #000;
}

/* Cart Button */
.cart-btn {
  border: 1px solid #000 !important;
  border-radius: 6px !important;
  overflow: hidden;
}

.cart-btn a {
  display: block;
  padding: 6px 10px;
  color: #000;
  transition: .3s;
}

.cart-btn a:hover {
  background: #000;
  color: #fff !important;
}

/* Product Content */
.product-card-content {
  padding: 12px;
  text-align: center;
}

.product-card-content h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-card-content span {
  font-size: 16px;
  color: #000;
  font-weight: 700;
}

/* RESPONSIVE FIXES */
@media (max-width: 991px) {
  .product-card-img img {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .product-card-img img {
    height: 180px;
  }

  .cart-btn a {
    padding: 5px 7px;
    font-size: 13px;
  }
}
@media (max-width: 412px) {
  .product-card, .swiper-slide {
    width: 100% !important;      /* full width for each card */
    margin-bottom: 15px;          /* spacing between cards */
    display: block;               /* ensure vertical stacking */
  }

  .swiper-wrapper {
    flex-direction: column !important; /* stack slides vertically */
  }

  .product-card-img img {
    height: auto;      /* image adjusts automatically */
    max-width: 100%;
  }
}
/* -------------------------
   Banner Footer – Main Wrapper
------------------------- */
.banner-footer.style-2 {
    /*background: #fdfbf8;*/
    padding: 50px 0;
}

.banner-footer-wrapper {
    width: 100%;
}

.banner-footer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
}

.banner-footer-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.banner-footer-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.banner-footer-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

/* Divider line between items on desktop */
.divider {
    border-right: 1px solid #e5e5e5;
}

/* Remove last divider */
.row > div:last-child .divider {
    border-right: none !important;
}


/* -------------------------
   Responsive Design
------------------------- */

/* Tablets */
@media (max-width: 992px) {
    .banner-footer-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .banner-footer-icon img {
        width: 60px;
        height: 60px;
    }

    .divider {
        border-right: none; /* no vertical line in tablet */
        border-bottom: 1px solid #e5e5e5; /* horizontal line */
        padding-bottom: 20px;
    }
}

/* Mobiles */
@media (max-width: 576px) {
    .banner-footer.style-2 {
        padding: 35px 0;
    }

    .banner-footer-item {
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px 5px;
        gap: 10px;
    }

    .banner-footer-icon img {
        width: 50px;
        height: 50px;
    }

    .banner-footer-content h5 {
        font-size: 16px;
    }

    .banner-footer-content p {
        font-size: 13px;
    }

    .divider {
        border-bottom: 1px solid #e5e5e5;
        border-right: none !important;
        padding-bottom: 15px;
    }

    /* Remove divider for last item */
    .row > div:last-child .divider {
        border-bottom: none !important;
    }
}
.mySwiper {
    padding-bottom: 20px;
}

/* FIX SWIPER HEIGHT TAKING TOO MUCH SPACE */
.swiper-wrapper,
.swiper-slide,
.mySwiper {
    height: auto !important;
}

.product-card{
    border:1px solid #eee;
    border-radius:12px;
    padding:20px;
    background:#fff;
    position:relative;
    transition:0.3s;
}
.product-card2{
    border:1px solid #eee;
    border-radius:12px;
    padding:20px;
    background:#fff;
    position:relative;
    transition:0.3s;
}



.product-img{
    position:relative;
}

.product-img img{
    width:100%;
    height:180px;
    object-fit:contain;
}

/* Hover Icons */
.hover-icons{
    position:absolute;
    top:10px;
    right:10px;
    display:flex;
    flex-direction:column;
    gap:8px;
    opacity:0;
    transition:0.3s;
}
.hover-icons button{
    width:36px;
    height:36px;
    border-radius:50%;
    border:none;
    background:white;
    box-shadow:0 2px 8px rgba(0,0,0,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}
.product-card:hover .hover-icons{
    opacity:1;
}
#nextBtn, #prevBtn {
    position: relative;
    z-index: 50 !important;
    cursor: pointer !important;
}

/* Next/Prev Arrows */
.slider-btn{
    width:40px;
    height:40px;
    border:1px solid #ccc;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:20;
}
.card {
    background: white;
    border: 1px solid #ddd;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}
.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Arrows outside container */
.custom-arrow {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev.custom-arrow {
    left: -60px;
}

.carousel-control-next.custom-arrow {
    right: -60px;
}

/* Responsive arrow adjustments */
@media (max-width: 992px) {
    .carousel-control-prev.custom-arrow {
        left: -20px;
    }
    .carousel-control-next.custom-arrow {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .carousel-control-prev.custom-arrow,
    .carousel-control-next.custom-arrow {
        display: none;
    }
}
/* Headings */
.title-main {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}
.title-sub {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 500;
}

/* GRID MAIN */
.concern-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

/* ITEM */
.concern-item {
    text-align: center;
    padding: 25px 10px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

/* Round Image */
.concern-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #c48ad1;
    padding: 3px;
}

/* Text */
.concern-item p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* TABLET */
@media (max-width: 992px) {
    .concern-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .concern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .concern-item img {
        width: 90px;
        height: 90px;
    }

    .title-main {
        font-size: 28px;
    }
}
/* Suggested Section Styles */
.suggested-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Section Heading */
.suggested-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.suggested-section h2 span {
    font-weight: 400;
}

/* Category Buttons */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f7f7f7;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-btn:hover {
    background-color: #e0f0ff;
    border-color: #0073e6;
}

.category-btn.active {
    background-color: #0073e6;
    color: #fff;
    border-color: #0073e6;
}

/* Product Grid */
.product-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
}

.product-card {
    position: relative;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Product Image */
.product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

/* Hover Icons Overlay */
.product-card .hover-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .hover-icons {
    opacity: 1;
}

.hover-icons button {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 0.4rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hover-icons button:hover {
    background-color: #0073e6;
    color: #fff;
    border-color: #0073e6;
}

/* Product Details */
.product-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

/* Responsive Grid */
@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* =========================
   FOOTER BASE
========================= */
.footer-section {
  background: #004526;
  color:black;
  padding-top: 50px;      /* top gap */
  font-size: 14px;
}

.footer-section a {
  color: black;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER WIDGET
========================= */
.footer-widget {
  width: 100%;
}

.widget-title h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color:black;
}

.footer-widget p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* =========================
   FOOTER LIST
========================= */
.widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-list li {
  margin-bottom: 8px;
}

.widget-list li i {
  margin-right: 6px;
}

/* =========================
   SOCIAL ICONS
========================= */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ffffff;
  color: #004526 !important;
  transform: translateY(-3px);
}

/* =========================
   CONTACT SECTION FIX
========================= */
.footer-widget ul li p {
  margin: 0;
  line-height: 1.4;
}

/* =========================
   RESPONSIVE FIXES
========================= */

/* Tablet */
@media (max-width: 991px) {
  .footer-section {
    padding-top: 40px;
  }

  .footer-widget {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .footer-section {
    padding-top: 30px;
  }

  .widget-title h5 {
    font-size: 15px;
  }

  .footer-widget p,
  .widget-list li a {
    font-size: 13px;
  }

  .footer-social {
    justify-content: center;
  }
}
/* ===== COPYRIGHT BAR ===== */
.copyright-bar {
  width: 100%;
  background: #003d22; /* footer shade slightly darker */
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 12px 0;
}

.copyright-bar p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

.copyright-bar a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.copyright-bar a:hover {
  text-decoration: underline;
}

/* ===== DESKTOP ALIGNMENT ===== */
@media (min-width: 768px) {
  .copyright-bar p {
    text-align: center; /* চাইলে left করতে পারেন */
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .copyright-bar p {
    font-size: 13px;
    line-height: 1.6;
    padding: 0 10px;
  }
}
 /* Banner */
        .contact-banner {
            background: url("images/bpo.jpg") center/cover no-repeat;
            width:100%;
            height: 500px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-overlay {
            background: rgba(0,0,0,0.5);
            position: absolute;
            inset: 0;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }

        .banner-content h1 {
            font-weight: 700;
            font-size: 42px;
        }

        /* Contact cards */
        .contact-card {
            border: 1px solid #eee;
            border-radius: 15px;
            padding: 25px;
            background: #fff;
            transition: 0.3s;
        }

        .contact-card:hover {
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }

        .contact-icon {
            font-size: 35px;
            color: #D4AF37;
            margin-bottom: 10px;
        }

        /* Form styling */
        .contact-form input,
        .contact-form textarea {
            border-radius: 10px;
        }

        .btn-gold {
            background: #004526;
            border: none;
            font-weight: 600;
            color: #fff;
        }
.btn-gold:hover {
    background:white;
    border:1px solid #004526;
    color:#004526;
}
   * PRODUCT CARD */
./* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* default 3 columns */
    gap: 15px;
    padding: 15px;
   
}

/* PRODUCT CARD */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    transition: .3s;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card p {
    margin: 10px 0;
    font-weight: 600;
}

/* RESPONSIVE GRID */
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* tablets: 3 columns */
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* mobile: 2 columns */
    }

    .product-card img {
        height: 180px;
    }

    .product-card p {
        font-size: 14px;
    }
}    
/* ===== BANNER SLIDER ===== */
.banner-slider{
    position:relative;
    width:100%;
    height:550px;
    overflow:hidden;
    border-radius:12px;
}

.slides{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 0.6s ease-in-out;
}

.slides.active{
    opacity:1;
    z-index:1;
}

.slides img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Text overlay */
.banner-content{
    position:absolute;
    bottom:15%;
    left:8%;
    color:#fff;
    max-width:500px;
}

.banner-content h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:8px;
}

.banner-content p{
    font-size:18px;
}

/* Navigation buttons */
.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.5);
    color:#fff;
    border:none;
    padding:10px 14px;
    font-size:22px;
    cursor:pointer;
    border-radius:50%;
    z-index:2;
}

.nav-btn.prev{ left:15px; }
.nav-btn.next{ right:15px; }

/* ===== MOBILE ===== */
@media (max-width: 575px){
    .banner-slider{
        height:220px;
        border-radius:8px;
    }

    .banner-content{
        bottom:10%;
        left:6%;
    }

    .banner-content h2{
        font-size:20px;
    }

    .banner-content p{
        font-size:13px;
    }

    .nav-btn{
        padding:6px 10px;
        font-size:18px;
    }
}

/* ===== TABLET ===== */
@media (min-width:576px) and (max-width:991px){
    .banner-slider{
        height:320px;
    }

    .banner-content h2{
        font-size:28px;
    }
}

/* ===== GENERAL ===== */
.featured-section {
    padding: 60px 15px;
    background: #f8f9fa;
  
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title h3 {
    font-size: 2rem;
    font-weight: 700;
    
}
.view-all a {
    font-size: 0.9rem;
    color:black;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.view-all a svg {
    margin-left: 8px;
    fill: #ff6b6b;
    color:black;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex: 0 0 48%; /* Mobile - 2 per row */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ===== PRODUCT IMAGE ===== */
.product-card-img {
    position: relative;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    display: block;
    transition: opacity 0.4s ease;
}

.product-card-img.double-img img.img2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card-img.double-img:hover img.img2 {
    opacity: 1;
}

.product-card-img.double-img:hover img.img1 {
    opacity: 0;
}

/* Wishlist & cart icons */
.view-and-favorite-area {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .view-and-favorite-area {
    opacity: 1;
}

.view-and-favorite-area ul {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.view-and-favorite-area ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    color: black;
    font-size: 1rem;
    transition: background 0.3s;
}

.view-and-favorite-area ul li a:hover {
    background: black;
}

/* ===== PRODUCT CONTENT ===== */
.product-card-content {
    padding: 15px;
    text-align: center;
}

.product-card-content h6 {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.product-card-content h6 a {
    color: inherit;
    text-decoration: none;
}

.product-card-content h6 a:hover {
    color: #ff6b6b;
}

.product-card-content span {
    font-weight: 700;
    color: #ff6b6b;
}

/* ===== RESPONSIVE GRID ===== */
/* Tablet - 3 per row */
@media (min-width: 768px) {
    .product-card {
        flex: 0 0 31%;
    }
}

/* Desktop - 4 per row */
@media (min-width: 1200px) {
    .product-card {
        flex: 0 0 23%;
    }
}
/* ===== PRODUCT GRID ===== */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Mobile (<768px) - 2 per row */
.product-card {
    flex: 0 0 calc(50% - 10px); /* 2 per row with 20px gap */
}

/* Tablet (≥768px) - 3 per row */
@media (min-width: 768px) {
    .product-card {
        flex: 0 0 calc(33.333% - 13.33px); /* 3 per row */
    }
}

/* Desktop (≥1200px) - 4 per row */
@media (min-width: 1200px) {
    .product-card {
        flex: 0 0 calc(25% - 15px); /* 4 per row */
    }
}
.feature {
    display: flex;                  /* align children in a row */
    justify-content: space-between; /* push left & right */
    align-items: center;            /* vertical alignment */
    flex-wrap: wrap;                /* wrap on smaller screens */
    margin: 20px 0;                 /* optional spacing */
}

.feature h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature .view-all a {
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
}

/* Responsive: stack on mobile */
@media (max-width: 575px) {
    .feature {
        flex-direction: column;       /* stack vertically */
        align-items: flex-start;      /* align left */
    }

    .feature .view-all {
        margin-top: 10px;             /* spacing below heading */
    }
}

.nav-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px 14px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}

.nav-btn.prev { left: 15px; }
.nav-btn.next { right: 15px; }

.nav-btn:hover {
    background: rgba(0,0,0,0.8);
}

/*featured sec final*/
/* ===============================
   FEATURED SECTION
================================ */
.featured-section {
  padding: 50px 0;
  background: #fff;
}

/* Header row */
.featured-section .feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.featured-section .feature h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.featured-section .view-all a {
  font-size: 14px;
  text-decoration: none;
  color: #5a9c3b;
  font-weight: 500;
}

/* ===============================
   PRODUCT GRID
================================ */
.featured-section .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Product card */
.featured-section .product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-section .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image */
.featured-section .product-card-img {
  position: relative;
  overflow: hidden;
}

.featured-section .product-card-img img {
  width: 100%;
  display: block;
}

/* Hover image switch */
.featured-section .double-img .img2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-section .double-img:hover .img2 {
  opacity: 1;
}

/* Icons */
.featured-section .view-and-favorite-area {
  position: absolute;
  right: 10px;
  top: 10px;
}

.featured-section .view-and-favorite-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.featured-section .view-and-favorite-area li {
  margin-bottom: 8px;
}

.featured-section .view-and-favorite-area a {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Content */
.featured-section .product-card-content {
  padding: 12px;
  text-align: center;
}

.featured-section .product-card-content h6 {
  font-size: 15px;
  margin-bottom: 6px;
}

.featured-section .product-card-content a {
  text-decoration: none;
  color: #333;
}

.featured-section .product-card-content span {
  font-size: 14px;
  font-weight: 600;
  color: #5a9c3b;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
  .featured-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-section .feature h3 {
    font-size: 20px;
  }
}

/* ===============================
   MOBILE IMAGE FIX
================================ */
/*@media (max-width: 576px) {

  .featured-section .product-card-img {

    height: auto;
  }

  .featured-section .product-card-img img {
    width: 100%;
    max-height: 260px;          /* FIX */
    /*object-fit: contain;   /* IMPORTANT */
   /* max-height: 220px; */  /* control overflow *
  }

  /* Disable hover image swap on mobile 
  .featured-section .double-img .img2 {
    display: none;
  }

}*/

@media (max-width: 576px) {
  .featured-section .product-card-img {
    width: 100%;      /* full width on mobile */
    height:120px;    /* কম height দিবে */
    overflow: hidden; /* crop overflow */
  }

  .featured-section .product-card-img img {
    width: 100%;
    height: 100%;       /* container height fill করবে */
    object-fit: cover;  /* cover but crop হবে */
  }

  /* Optional: hide hover image on mobile */
  .featured-section .double-img .img2 {
    display: none;
  }
}

/*suggest final*/
/* Container and Grid */
.suggest-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.suggest-section .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* Product Card */
.suggest-section .product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  overflow: hidden;
  text-align: center;
  padding: 10px;
  transition: transform 0.3s ease;
}

.suggest-section .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}

/* Product Image */
.suggest-section .product-card img {
  width: 100%;
  height: 220px;       /* Fixed height for desktop */
  object-fit: cover;   /* Cover entire container with possible crop */
  border-radius: 10px;
  display: block;
  margin-bottom: 10px;
}

/* Product Text */
.suggest-section .product-card p {
  margin: 5px 0;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  color: #333;
}

/* Price style */
.suggest-section .product-card p:last-child {
  color: #4CAF50; /* green color */
  font-weight: 700;
  font-size: 1rem;
}

/* Responsive for tablets */
@media (max-width: 992px) {
  .suggest-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .suggest-section .product-card img {
    width: 100%;
    height: auto;          /* Maintain natural height */
    max-height: 180px;     /* Limit max height */
    object-fit: contain;   /* Show full image without cropping */
    background-color: #f9f9f9; /* Optional: fill space */
    border-radius: 10px;
  }
}


@media (max-width: 576px) {
  .suggest-section .product-card img {
    height: auto;          /* Remove fixed height */
    max-height: 180px;     /* Limit max height */
    width: 100%;           /* Full width */
    object-fit: contain;   /* Show whole image without cropping */
    background-color: #f9f9f9; /* Optional: fill background behind image */
    border-radius: 10px;
  }
}
/*top selling*/

/* Container */
.top-selling-swiper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Title + Navigation Buttons */
.top-selling-swiper .d-flex.justify-content-between {
  flex-wrap: wrap;
  gap: 10px;
}

.top-selling-swiper h3 {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
}

.top-selling-swiper .slider-btn {
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.top-selling-swiper .slider-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}

/* Product Card */
.top-selling-swiper .product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.top-selling-swiper .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}

/* Product Image */
.top-selling-swiper .product-card .product-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.top-selling-swiper .product-card .product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.top-selling-swiper .product-card .product-img:hover img {
  transform: scale(1.05);
}

/* Hover Icons */
.top-selling-swiper .hover-icons {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
}

.top-selling-swiper .product-card:hover .hover-icons {
  opacity: 1;
}

.top-selling-swiper .hover-icons button {
  background: #fff;
  border: none;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.15);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.top-selling-swiper .hover-icons button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}

/* Product Text */
.top-selling-swiper .product-card p {
  margin: 5px 0;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  color: #666;
}

.top-selling-swiper .product-card h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.top-selling-swiper .product-card strong {
  font-size: 1rem;
  font-weight: 700;
  color: #4CAF50;
}

/* Responsive - Tablets */
@media (max-width: 992px) {
  .top-selling-swiper .product-card .product-img img {
    height: 180px;
    object-fit: cover;
  }
}

/* Responsive - Mobile (≤576px) */
@media (max-width: 576px) {
  .top-selling-swiper .d-flex.justify-content-between {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-selling-swiper .swiper-slide {
    width: 80% !important; /* One card per view with small peek */
    flex-shrink: 0;
  }

  .top-selling-swiper .product-card .product-img img {
    height: 160px;
    object-fit: cover;
  }

  .top-selling-swiper .product-card p,
  .top-selling-swiper .product-card h6,
  .top-selling-swiper .product-card strong {
    font-size: 0.85rem;
  }

  .top-selling-swiper .slider-btn {
    width: 30px;
    height: 30px;
  }
}
.footer-section h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #f1c40f;
  text-decoration: none;
}

.footer-social i {
  font-size: 18px;
}
/*testimonial final*/
.testimonial-section {
      padding: 60px 0;
      background:#A9BA9D;
    }

    .testimonial-card {
      background: #f1f1f1;
      border-radius: 15px;
      padding: 30px 20px;
      text-align: center;
      transition: transform 0.3s;
      margin: 10px;
    }

    .testimonial-card:hover {
      transform: scale(1.03);
    }

    .testimonial-card h5 {
      margin-top: 15px;
      margin-bottom: 5px;
      font-weight: bold;
      color: #333;
    }

    .testimonial-card p {
      font-style: italic;
      color: #555;
      font-size: 1rem;
    }

    @media (max-width: 576px) {
      .testimonial-card {
        margin: 5px;
        padding: 20px 15px;
      }
      .testimonial-card p {
        font-size: 0.95rem;
      }
    }
    /*login*/
    .login-bg{
  position: relative;
  background: url('images/bg.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.login-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* light overlay */
  z-index: 1;
}

/* content above overlay */
.login-bg > *{
  position: relative;
  z-index: 2;
}


.login-card{
  width: 100%;
  max-width: 380px;
  padding: 35px 30px;
  border-radius: 20px;

  background: rgba(255, 215, 150, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.logo img{
  width: 70px;
}

.input-group-text,
.form-control{
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
}

.form-control::placeholder{
  color: #f1f1f1;
}

.form-control:focus{
  box-shadow: none;
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.login-btn{
  background: #fff;
  color: #b71c1c;
  border-radius: 50px;
  font-weight: 600;
}

.login-btn:hover{
  background: #f5f5f5;
}

a{
  text-decoration: none;
}
.login-logo{
  min-width: 200px;       
   
}

.card{
  border-radius: 15px;
  overflow: hidden;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.card img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

input.form-control{
  border-radius: 50px;
  padding: 12px 20px;
  border: 1px solid #ccc;
}

button.btn{
  border-radius: 50px;
 padding: 5px 5px;
  font-size: 16px;
  transition: 0.3s;
}
button.btn:hover{
  background: #a18f3c; /* darker gold on hover */
}
input::placeholder {
  color:black;      /* dark gray, clearly visible */
  opacity: 1;       /* ensure full opacity */
  font-weight: 500;
}
/*register*/
.register-card{
max-width:800px;
max-height:600px;
border-radius: 16px;
overflow: hidden;
}
.left-img{
background: url('https://images.pexels.com/photos/7504133/pexels-photo-7504133.jpeg') center/cover no-repeat;
min-height: 420px; 
}
.form-control{
border-radius: 10px;
padding: 5px;
}
.btn-register{
border-radius: 10px;
padding: 12px;
background:#023020;
color:white;
font-weight:500;
}
.btn-register:hover {
        color:#023020;
        background:white !important;
        border:1px solid #023020;
        font-weight:500;
    }
.form-control::placeholder{
  color:#999 !important;        /* placeholder visible */
}
/*search icon*/
.search-wrap{
  position: relative;
}

.search-box{
  position: absolute;
  top: 90%;        /* icon-এর ঠিক নিচে */
  right: 0;
  width: 280px;
  background: #fff;
  padding: 5px;
  border-radius: 12px;
  display: none;    /* hidden by default */
  z-index: 9999;
}

.search-box input{
  border-radius: 20px;
  padding-left: 12px;
}
input.form-control {
    padding: 5px 10px;
    border: 1px solid #ccc;
}

/* Mobile */
@media (max-width:768px){
  .search-box{
    width: 100%;
    left: 0;
    right: auto;
    top: 140%;
  }
}

.search-box.show{
  display: block;
}
