@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Urbanist", sans-serif;
    overflow-x: hidden;
}

/* header-css */
/* TOP BAR */
.top-bar {
    background: #6b1d14;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

/* NAVBAR */
.main-navbar {
    background: #f5f5f5;
    padding: 20px 0;
    position: relative;
}

/* CENTER LOGO */
.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* NAV LINKS */
.nav-link {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px !important;
    color: #000 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;

}

/* NAVBAR */
.main-navbar {
    background: #fff;
    padding: 38px 0;
    position: relative;
}

/* CENTER LOGO */
.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}



/* MEGA MENU */
.mega-menu {
    position: static !important;
}

.mega-dropdown {
    width: 100%;
    left: 0;
    right: 0;
    border: none;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.mega-dropdown img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.dropdown-item {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 6px;
}

.dropdown-item img {
    width: 100%;
    transition: transform 0.6s ease;
}

/* Dark overlay */
.dropdown-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
}

/* Hover Effect */
.dropdown-item:hover img {
    transform: scale(1.1);
}

.dropdown-item:hover::after {
    background: rgba(0,0,0,0.25);
}

.mega-dropdown h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.dropdown-item {
    padding: 6px 0;
}

.offcanvas .nav-link {
    padding: 10px 0;
}

.offcanvas .fw-bold {
    font-size: 14px;
}

.navbar-brand.logo-center img {
    height: 100px;
}

/* Hover for desktop */
@media (min-width: 992px) {
    .mega-menu:hover .dropdown-menu {
        display: block;
    }

    .navbar-toggler {
        display: none;
    }
}

/* Remove collapse in desktop */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

/* banner-css */
.banner-slider .slide {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-slider .overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.banner-slider h2 {
    font-size: 50px;
}

.banner-slider p {
    font-size: 20px;
    margin: 15px 0;
}

/* Slick Arrows */
.slick-prev,
.slick-next {
    z-index: 10;
}

.slick-prev:before,
.slick-next:before {
    font-size: 30px;
    color: #fff;
}

/* TEXT ANIMATION */
.animate-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* Active animation */
.slick-active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

/* Delays */
.delay-1 {
    transition-delay: 0.3s;
}

.delay-2 {
    transition-delay: 0.6s;
}

.banner-slider h6 {
    text-transform: uppercase;
}

.cmn-btn {
    padding: 14px 25px;
    background-color: #000;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.banner-slider p {
    margin-bottom: 40px;
}
.offcanvas-title img{
    width:100px;
}

/* Responsive */
@media (max-width:768px) {
    .banner-slider .slide {
        height: 60vh;
    }

    .banner-slider h1 {
        font-size: 28px;
    }

    .banner-slider p {
        font-size: 16px;
    }
}

/* our-picks-card */
.our-picks-card img {
    width: 100%;
    object-fit: cover;
    height: 600px;
}

.our-picks-card {
    position: relative;
}

.o-card-con {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.o-card-con h3 {
    font-size: 35px;
    color: #fff;
}

.o-card-con a {
    color: #fff;
    text-decoration: none;

}

.our-picks {
    padding: 100px 0;
}

.cmn-heading h2 {
    font-size: 45px;
    font-weight: 600;
    color: #000;
}

.cmn-heading p {
    color: #7e7e7e;
    font-size: 20px;
}

.cmn-heading {
    text-align: center;
    margin-bottom: 50px;
}

.our-picks-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    perspective: 1000px;
    /* enables 3D */
}

/* Image */
.our-picks-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Overlay */
.our-picks-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.4s ease;
}

/* Content */
.o-card-con {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    z-index: 2;
    color: #fff;
}

/* Hover Effects */
.our-picks-card:hover img {
    transform: scale(1.15) rotateX(4deg) rotateY(-4deg);
}

.our-picks-card:hover {
    transform: translateY(-8px);
}

.our-picks-card:hover::after {
    background: rgba(0, 0, 0, 0.45);
}

.o-card-con {
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 0);
    width: 100%;
    z-index: 2;
    color: #fff;
    transition: transform 0.5s ease;
}

/* Smooth move to center */
.our-picks-card:hover .o-card-con {
    transform: translate(-50%, -250px);
}

/* ------------------------------------- */
.kitchen-tabs .nav-link {
    font-size: 32px;
    font-weight: 600;
    color: #bfbfbf !important;
    border: none;
}
.product-info{
    margin-top: 30px;
}
.product-info p{
    margin-bottom: 10px;
}
.kitchen-tabs .nav-link.active {
    color: #000 !important;
    background: none;
    border: none;
}

.product-card {
    transition: all 0.4s ease;
}

.product-img {
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-img .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 14px;
}

.price del {
    color: #888;
    margin-right: 8px;
}

.rating {
    color: #3a5f46;
    font-size: 14px;
}

.rating span {
    color: #777;
    margin-left: 6px;
}

/* ----------------------------- */
/* ---------- TOP OFFER SECTION ---------- */

.offer-section{
    background:#6b1d14;
    padding:30px 0;
    color:#fff;
}

.offer-img img{
    width:100%;
}

.offer-content small{
    letter-spacing:2px;
    font-size:12px;
}

.offer-content h2{
    font-size:40px;
    font-weight:600;
    margin:15px 0;
}

.offer-content p{
    color:#ddd;
}

.countdown{
    font-size:32px;
    font-weight:600;
    margin:20px 0;
    color:#4caf50;
}

.offer-btn{
    background:#d9d9d9;
    border:none;
    padding:10px 25px;
    font-size:14px;
}

/* ---------- SECOND SECTION ---------- */

.design-section{
    background:#bdb7a5;
}

.design-left{
    background:#bdb7a5;
    padding:100px 34px;
    flex:1;
}

.design-left small{
    letter-spacing:2px;
    font-size:12px;
}

.design-left h2{
    font-size:36px;
    margin:20px 0;
}

.design-left p{
    color:#555;
}
.design-left p{
    margin-bottom: 40px;
}
.design-left .discover-now-btn{
    padding:10px 25px;
    border:none;
    background:#fff;
    text-decoration: none;
    color: #000;
    transition: 0.8s;
}
.design-left .discover-now-btn:hover{
    background-color: #000;
    color: #fff;
}
.design-right{
    position:relative;
    flex:1;
}

.design-right img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.design-right::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100px;
    height:100px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
    font-size:22px;
    cursor:pointer;
}
.play-btn i{
    font-size: 35px;
}

@media(max-width:992px){
    .design-section{
        flex-direction:column;
    }
    .design-left{
        padding:60px 30px;
    }
}

/* footer-css */
.main-footer{
    background:#f2f2f2;
    padding:70px 0 20px;
    position:relative;
}

.footer-logo img{
    max-width:220px;
}

.footer-text{
    margin:20px 0;
    color:#777;
    line-height:1.6;
}

/* Subscribe Box */
.subscribe-box{
    display:flex;
    background:#e8e8e8;
    border-radius:4px;
    overflow:hidden;
    max-width:400px;
}

.subscribe-box input{
    border:none;
    padding:15px;
    width:100%;
    background:transparent;
    outline:none;
}

.subscribe-box button{
    border:none;
    padding:0 20px;
    background:transparent;
    font-size:18px;
    cursor:pointer;
}

/* Links */
.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links ul li{
    margin-bottom:12px;
}

.footer-links ul li a{
    text-decoration:none;
    color:#777;
    transition:0.3s;
}

.footer-links ul li a:hover{
    color:#000;
}

/* Bottom */
.footer-bottom{
    border-top:1px solid #ccc;
    margin-top:40px;
    padding-top:15px;
    display:flex;
    justify-content:space-between;
    color:#777;
    font-size:14px;
}

/* Scroll Button */
#scrollTopBtn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    background: #5c1a14; /* your brand color */
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
}
/* loder-css */
#loading {
    position: fixed;
    inset: 0;
    background:#451813;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .loading--inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 110px;
    height: 30px;
    transform: translate(-50%, -50%);
  }
  .loading--inner:after {
    position: absolute;
    content: "";
    height: 1px;
    bottom: -2px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
  }
  .loading--inner .loading--box {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
  }
  .loading--inner .loading--box.dbl-width {
    width: 22px;
  }
  .loading--inner .loading--box.upper {
    height: 18px;
  }
  .loading--inner .loading--box.hang {
    height: 8px;
  }
  .loading--inner .loading--box.sink {
    height: 5px;
    width: 2px;
  }
  .loading--inner .loading--box.dbl-height {
    height: 30px;
  }
  .loading--inner .loading--box-animate {
    animation: loading--box-animation 3s infinite ease-in-out;
  }
  .loading--inner .loading--text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    position: absolute;
    line-height: 1.6em;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    animation: loading--text-animation 2s infinite;
  }
  
  @keyframes loading--text-animation {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes loading--box-animation {
    0% {
      opacity: 0;
      transform: translate(-20px, 0);
    }
    10% {
      opacity: 0;
      transform: translate(-20px, 0);
    }
    25% {
      opacity: 1;
      transform: translate(0, 0);
    }
    75% {
      opacity: 1;
      transform: translate(0, 0);
    }
    90% {
      opacity: 0;
      transform: translate(20px, 0);
    }
    100% {
      opacity: 0;
      transform: translate(20px, 0);
    }
  }

  /* about-us-page-css */
  /* Content above overlay */
.bg-overlay > * {
    position: relative;
    z-index: 2;
  }
  .about-us{
    padding: 80px 0;
  }
  .our-mission p {
    color: #555;
    font-size: 1.05rem;
  }
  
  .our-mission .card {
    border-radius: 16px;
  }
  .our-mission{
    padding: 30px 0 0px 0;
    margin: 0 0 80px 0;
  }
  .our-products-page{
    padding: 100px 0;
  }
  .contact-modern {
    background: #fafafa;
  }
  .contact-page{
    padding: 80px 0;
  }
  
  .contact-tag {
    letter-spacing: 2px;
    font-size: 12px;
    color: #777;
  }
  
  .contact-title {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
  }
  
  .contact-desc {
    color: #555;
    margin-bottom: 30px;
  }
  
  .contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
  }
  
  .contact-info i {
    font-size: 18px;
    margin-right: 12px;
    color: #000;
  }
  
  .contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }
  
  .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding: 12px 5px;
  }
  
  .form-control:focus {
    box-shadow: none;
    border-color: #000;
  }
  
  @media (max-width: 768px) {
    .contact-title {
      font-size: 32px;
    }
  }
  .contact-map {
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin: 0 auto 80px;
   padding-top: 80px;
  }
  
  .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  .testimonials-section {
      padding: 100px 20px;
      background: linear-gradient(135deg, #f8f9fb, #eef2f7);
      text-align: center;
  }
  
  .title {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 10px;
  }
  
  .subtitle {
      color: #777;
      margin-bottom: 60px;
  }
  
  .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
  }
  
  .testimonial-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      padding: 40px 30px;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.08);
      transition: 0.4s ease;
  }
  
  .testimonial-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  }
  
  .client-img img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 20px;
      border: 4px solid #ff6b35;
  }
  
  .stars {
      color: #ffb400;
      font-size: 18px;
      margin-bottom: 15px;
  }
  
  .review {
      font-size: 15px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 25px;
  }
  
  .testimonial-card h4 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
  }
  
  .testimonial-card span {
      font-size: 14px;
      color: #888;
  }
  .ml2 .letter {
    display: inline-block;
    line-height: 1em;
  }
  .banner-slider img{
    width: 100%;
    height: 750px;
    object-fit: cover;
  }
  .topbar{
    background: #461a16;
  }
  .our-pick h2{
    color: #000;
  }
  #product_tabs .card-product img{
    height: 250px !important;
    object-fit:cover;
  }
  .cmn-btn{
    background-color:#451814;
  }
  .banner-con{
    position: relative;
  }
  .hero-content{
    position: absolute;
      top: 50%;
      left: 30%;
      transform: translate(-50%, -50%);
  }
  .hero-content p{
    color: #fff !important;
  }
  
  .banner-con::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* overlay color */
  }
  /* Slick Dots Container */
  .banner-con .slick-dots {
    bottom: -40px;
  }
  
  .banner-con .slick-dots li {
    margin: 0 6px;
  }
  
  /* Default Dot */
   .slick-dots li button:before {
    font-size: 12px;
    color: #ccc;
    opacity: 1;
  }
  .banner-slider  .slick-dots{
        top: 84% !important;
  }
  .banner-slider a{
    background-color: #B2B0A0 !important;
    border: 1px solid #B2B0A0 !important;
  }
  .banner-slider a:hover{
    background-color: #000 !important;
    color: #fff !important;
  }
  .offer-btn{
    background-color:#B2B0A0 !important;
    border: 1px solid #B2B0A0 !important;
  }
  .offer-btn:hover{
    background-color:#000 !important;
    color: #fff;
  }
  /* Active Dot */
  .banner-con .slick-dots li.slick-active button:before {
    color: #e5cb6f;   /* gold color */
    font-size: 14px;
  }
  
  @media only screen and (max-width: 1400px) {
    .main-header ul li{
    margin-right: 22px !important;
  }
  }
  
  @media only screen and (max-width: 600px) {
    .header-logo img {
      width: 180px;
  }
  .left-banner{
    position: absolute;
    z-index: 9;
    background: #451814de;
  }
  .left-banner h2{
    font-size: 28px;
  }
  }

  /* inner-banner */
  .inner-banner{
    position: relative;
    height: 500px;
    background: url('images/banner-1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
}

/* ===============================
   INNER BANNER
================================= */

/* ===============================
   INNER BANNER
================================= */

.inner-banner{
    position: relative;
    height: 500px;
    background: url('images/banner-1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

/* Dark overlay */
.inner-banner::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

/* Banner content */
.banner-content{
    position:relative;
    z-index:2;
    color:#fff;
}

/* Small text */
.banner-content span{
    letter-spacing:4px;
    font-size:20px;
    display:block;
    margin-bottom:15px;
}

/* Main title */
.banner-content h1{
    font-size:64px;
    line-height:1.1;
}

/* ===============================
   ANIMATION
================================= */

/* Initial hidden state */
.banner-content span,
.banner-content h1{
    opacity:0;
    transform:translateY(60px);
    transition: all 1s ease;
}

/* Active state */
.banner-content.active span,
.banner-content.active h1{
    opacity:1;
    transform:translateY(0);
}

/* Delay only for heading */
.banner-content.active h1{
    transition-delay:0.4s;
}
.t-mail{
    margin-left: 15px;
}
.top-bar span{
    margin-right: 6px;
}
.top-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
}
.
.top-bar i{
    color: #fff;
}
.top-bar a{
    color: #fff;
    text-decoration: none;
}
.social-media i{
    margin: 0 10px;
}
/* ===============================
   RESPONSIVE
================================= */

@media(max-width:768px){
    .inner-banner{
        height:350px;
        padding-left:20px;
    }

    .banner-content h1{
        font-size:36px;
    }
}

/* our-products-css */
.our-products{
    padding: 60px 0 100px 0;
}
.our-products .col-md-3{
    margin-top: 40px;
}
/* ------------ */
/* ===== FILTER SIDEBAR ===== */
.filter-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.filter-box h5{
    font-weight:600;
    margin-bottom:20px;
}

.filter-box ul{
    list-style:none;
    padding:0;
}

.filter-box ul li{
    margin-bottom:12px;
}

.filter-box ul li a{
    text-decoration:none;
    color:#555;
    transition:0.3s;
    display:block;
    padding:8px 10px;
    border-radius:8px;
}

.filter-box ul li a:hover{
    background:#5c1a14;
    color:#fff;
}

/* ===== PRODUCT CARD ===== */
.product-card{
    background:#fff;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    margin-bottom:30px;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.product-img{
    position:relative;
    overflow:hidden;
}

.product-img img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.6s ease;
}

.product-card:hover img{
    transform:scale(1.1);
}

/* Overlay Button */
.product-overlay{
    position:absolute;
    bottom:-60px;
    left:0;
    width:100%;
    text-align:center;
    transition:0.4s;
}

.product-card:hover .product-overlay{
    bottom:20px;
}

.btn-view{
    background:#5c1a14;
    color:#fff;
    border:none;
    padding:10px 22px;
    font-size:14px;
}

/* Product Info */
.product-info{
    padding:20px;
    text-align:center;
}

.product-info h6{
    font-weight:600;
    margin-bottom:8px;
}

.price{
    color:#5c1a14;
    font-weight:600;
    font-size:16px;
}

/* ===== PAGINATION ===== */
.pagination .page-link{
    border:none;
    color:#5c1a14;
    font-weight:500;
}

.pagination .active .page-link{
    background:#5c1a14;
    color:#fff;
    border-radius:50%;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
    .filter-box{
        margin-bottom:30px;
    }
}

/* products-details-page */
.product-details{
    padding:80px 0;
}

.main-image img{
    width:100%;
    border-radius:15px;
}

.thumb-img{
    width:100%;
    height:90px;
    object-fit:cover;
    cursor:pointer;
    border-radius:8px;
    margin-bottom:10px;
    transition:0.3s;
}

.thumb-img:hover{
    opacity:0.7;
}

.product-title{
    font-size:32px;
    font-weight:600;
}

.price{
    font-size:24px;
    color:#5c1a14;
    font-weight:600;
}

.qty-box{
    width:100px;
}

.btn-cart{
    background:#5c1a14;
    color:#fff;
    padding:12px 25px;
    border:none;
    border-radius:30px;
}

.features li{
    margin-bottom:8px;
}

.related-product{
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    margin-bottom:20px;
}

.related-product img{
    width:100%;
    height:200px;
    object-fit:cover;
}



.slider-for img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:15px;
}

.slider-nav img{
    width:100%;
    height:100px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    opacity:0.6;
    transition:0.3s;
}

.slider-nav .slick-current img{
    opacity:1;
    border:2px solid #5c1a14;
}

.slick-slide{
    padding:5px;
}




.related-product{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    margin:10px;
    transition:0.3s;
}

.related-product img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.related-product:hover{
    transform:translateY(-5px);
}

.slick-slide{
    padding:10px;
}


/* gallery-css */
.gallery-section{
    background:#f8f9fa;
}

.gallery-item{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:15px;
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:transform 0.6s ease;
}

/* Overlay */
.gallery-item::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    opacity:0;
    transition:0.4s;
}

.gallery-title{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%) translateY(20px);
    color:#fff;
    font-size:18px;
    letter-spacing:1px;
    opacity:0;
    transition:0.4s;
    z-index:2;
}

/* Hover */
.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item:hover::after{
    opacity:1;
}

.gallery-item:hover .gallery-title{
    opacity:1;
    transform:translateX(-50%) translateY(0);
}

/* Background blur */
.modal {
    backdrop-filter: blur(8px);
}

.modal-backdrop.show {
    opacity: 0.9;
}

/* Remove default modal background */
.modal-content {
    background: transparent;
    border: none;
}

/* Modal body */
.modal-body {
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

/* Responsive iframe wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Close button styling */
.modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    opacity: 1;
    z-index: 10;
}

/* Smooth zoom animation */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
}
.book-now-btn{
    text-decoration: none;
}
.book-now-btn:hover{
    background-color: #000;
    cursor: pointer;
}
.related-product a{
    color: #000;
    text-decoration: none;
}
.tab-content a{
    color: #000;
    text-decoration: none;
}
.navbar-toggler{
    border: none;
}