:root{
    --primary-color: #92306d;
    --secondary-color: #700f4b;
    --tertiary-color: #DB4444;
    --quaternary-color: #00FF66;
    --text-color-light: #1F4B43;
    --text-color-dark: #000000;
    --text-color-white: #FFFFFF;
    --link-color: #0C33CF;
    --swiper-pagination-color: #F5F5F5;
    --text-color-primary: #06283D;
    --text-color-secondary: #5B5B5B;
    --checkout-summary:#062F51;
}
body{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    margin: 0;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
}
/* Top Header Styles Start*/
.top-header {
    font-family: 'Poppins', sans-serif;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(45deg, #fff 30%, #CFF4FF 100%) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo Styles */
.top-header .site-logo {
    width: 180px;
    flex-shrink: 0;
}

.top-header .logo-img {
    width: 60%;
    height: auto;
    /* display: block; */
}

/* Social Icons Styles */
.top-header .social-icons-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 0 0 30px;
    position: relative;
}

.top-header .social-icons-center::before,
.top-header .social-icons-center::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 1px;
    height: 30px;
    transform: translateY(-50%);
}

.top-header .social-icons-center::before {
    left: 0;
}

.top-header .social-icons-center::after {
    right: 0;
}

.top-header .social-icon {
    display: inline-flex;
    width: 35px;
    height: 35px;
    border-radius:50%;
    color: var(--text-color-dark);
    background-color: #fff;
    justify-content: center;
    align-items: center;
    transition:all 0.3s ease;
  text-decoration:none;
}

.top-header .social-icon:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Info Styles */
.top-header .contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: flex-end;
}

.top-header .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.top-header .contact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    height: 30px;
    width: 1px;
    background: rgba(0,0,0,0.1);
    transform: translateY(-50%);
}

.top-header .contact-icon {
    width: 21px;
    height: 21px;
    object-fit: contain;
}

.top-header .contact-text {
    display: flex;
    flex-direction: column;
}

.top-header .contact-text small {
    color: #666;
    font-size: 12px;
    line-height: 1.2;
}

.top-header .contact-text strong {
    color: #333;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}
.mobile-top-header{
    display: none;
}
@media (max-width: 1400px) {
    /* top header section responsive */
    .top-header .contact-info {
        gap: 20px;
    }
    .top-header .contact-item:not(:last-child)::after {
        right: -10px;
    }
}
@media (max-width: 1200px) {
    .top-header .header-content {
        gap: 15px;
    }
    .top-header .social-icons-center {
        padding: 0 20px;
    }
    .top-header .contact-info {
        gap: 15px;
    }
    .top-header .contact-text strong {
        font-size: 13px;
    }
}
@media (max-width: 992px) {
    .top-header{
        display: none;
    }
    .mobile-top-header{
        display: block;
    }
    /* mobile top header  */
    .mobile-top-header{
        display: block;
        padding: 2px 0 2px 0;
        background: linear-gradient(45deg, #fff 30%, #CFF4FF 100%) !important;
    }
    .mobile-top-header .col-lg-12{
        display: flex;
        justify-content: space-between;
    }
    .mobile-top-header img{
        width: 100px;
    }
    .mobile-top-header .social-icons-center{
        margin: 15px 5px;
    }
    .mobile-top-header .social-icons-center a{
        padding:3px 7px 5px 8px;
        border-radius:50px;
        color: var(--text-color-dark);
        background-color: #fff;
        margin:0 4px;
        height: 31px;
        width: 31px;
        display: inline-block;
        text-align: center;
    }
    .mobile-top-header .social-icons-center a:hover{
        background-color: var(--secondary-color);
        color: #fff;
    }
}
@media (max-width: 767px) {
    /* top header responsive */
    .top-header {
        position: relative;
    }
    .top-header .contact-info {
        gap: 15px;
    }
    .top-header .contact-info > div {
        padding: 0;
        margin-bottom: 0;
        display: none !important;
    }
    .top-header .contact-info {
        display: none !important;
    }
}
@media (max-width: 576px) {
    .top-header {
        padding: 15px 0;
        display: none;
    }
    .top-header .header-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .top-header .site-logo {
        width: 160px;
        margin: 0 auto;
    }
    .top-header .logo-img{
        margin-left: 33px;
    }
    .top-header .social-icons-center {
        width: 100%;
        padding: 15px 0 !important;
        margin: 10px 0;
        border-top: 1px solid rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .top-header .contact-info {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
        margin: 0;
    }
    .top-header .contact-item {
        width: auto;
        justify-content: center;
        text-align: center;
        padding: 0;
        margin: 0;
    }
    .top-header .contact-item:not(:last-child)::after {
        display: none;
    }
    .top-header .contact-text {
        align-items: center;
        text-align: center;
    }
    .top-header .contact-text small,
    .top-header .contact-text strong {
        text-align: center;
    }
    
}
/* Top Header Styles End */

/*
------------------------------------
	Navbar CSS Start
-------------------------------------
*/
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: var(--text-color-white);
  }
  
  .navbar .navbar-brand img {
    height: 40px !important;
    transition: all 0.3s ease;
  }
  
  .navbar .navbar-toggler {
    border: none;
    padding: 0;
  }
  
  .navbar .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar .navbar-nav {
    gap: 40px;
  }
  
  .navbar .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
  }
  
  .navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .navbar .nav-link:hover {
    color: var(--secondary-color);
  }
  
  .navbar .nav-link:hover::after {
    width: 80%;
  }
  
  .navbar .auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--primary-color);
    color: var(--text-color-white) !important;
    border-radius: 5px !important;
  }
  
  .navbar .btn-outline-dark {
    border: 1.5px solid var(--text-color);
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 14px;
    background-color: var(--primary-color);
    color: var(--text-color-white) !important;
    border-radius: 5px !important;
  }
  
  .navbar .btn-outline-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
    background-color: var(--secondary-color);
    border-radius: 5px !important;
  }
  
  .navbar .btn-outline-dark:hover::before {
    left: 0;
  }
  
  .navbar .btn-outline-dark:hover {
    color: white;
    border-color: var(--primary-color);
  }
  
  /* Offcanvas Menu Styles */
  .offcanvas {
    background-color: #fff;
    width: 300px;
  }
  
  .offcanvas-header {
    border-bottom: 1px solid #eee;
  }
  
  .offcanvas-body {
    padding: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: var(--link-color);
    text-shadow: 2px 5px 5px rgba(0, 0, 0, 0.27);
    font-weight: 600 !important;
  }
  
  .navbar-nav .nav-link:hover , .navbar-nav .nav-link.active{
    color: var(--secondary-color);
  }
  .navbar-nav .nav-link.active{
    border-bottom: 3px solid var(--secondary-color);
  }
  
  /* Tablet devices */
  @media (max-width: 991px) {
    .navbar {
      padding: 10px 0;
    }
  
    .navbar .navbar-brand img {
      height: 50px !important;
    }
  
    .navbar .navbar-collapse {
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-top: 15px;
    }
  
    .navbar .navbar-nav {
      gap: 5px;
      padding: 10px 0;
    }
  
    .navbar .nav-link {
      padding: 12px 20px;
      border-radius: 5px;
      margin: 2px 0;
    }
  
    .navbar .nav-link::after {
      display: none;
    }
  
    .navbar .nav-link:hover {
      background: rgba(2, 155, 197, 0.1);
      color: var(--primary-color);
      transform: translateX(5px);
    }
  
    .navbar .auth-buttons {
      flex-direction: column;
      width: 100%;
      gap: 10px;
      padding-top: 5px;
      border-top: 1px solid #eee;
      margin-top: 10px;
    }
  
    .navbar .btn-outline-dark {
      width: 100%;
      text-align: center;
      padding: 8px;
    }
    .navbar-nav .nav-link.active{
        border-bottom:none !important;
    }
  }
  
  /* Mobile devices */
  @media (max-width: 767px) {
    .navbar .navbar-brand img {
      height: 50px;
    }
  
    .navbar .nav-link {
      font-size: 15px;
    }
  
    .navbar .navbar-collapse {
      padding: 15px;
    }
  
    .navbar .nav-link:hover {
      transform: translateX(3px);
    }
  }
  /* Dropdown Menu Styles */
.navbar .dropdown-menu {
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
}

.navbar .dropdown-item {
    color: #333;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    
}

/* --- Navbar Dropdown Indicator --- */

/* Hide ALL default/previous indicators */
.navbar .nav-link.dropdown-toggle::after,
.navbar .nav-item.dropdown > .nav-link::after,
.navbar .nav-link.dropdown-toggle::before {
    display: none !important; 
}

/* Style the new icon span for Desktop */
@media (min-width: 992px) {
    .navbar .nav-link.dropdown-toggle {
        display: inline-flex; /* Align text and icon span */
        align-items: center;
    }
    
    .dropdown-icon-right {
        display: inline-block;
        margin-left: 0.5em; /* Space between text and icon */
    }

    .dropdown-icon-right i {
        font-size: 0.8em; /* Adjust icon size */
        vertical-align: middle; /* Adjust vertical alignment if needed */
        color: inherit; /* Inherit color from link */
        transition: transform 0.2s ease-in-out;
    }

    /* Rotate icon span when dropdown is shown */
    .navbar .nav-link.dropdown-toggle[aria-expanded="true"] .dropdown-icon-right i {
       transform: rotate(180deg);
    }
}

/* --- Styles for Mobile Offcanvas Dropdown --- */

@media (max-width: 991.98px) {
    /* Hide the default Bootstrap arrow in offcanvas */
    .offcanvas .nav-link.dropdown-toggle::after { 
        display: none !important; 
    }

    /* Ensure the custom icon span IS visible in offcanvas */
    .offcanvas .dropdown-icon-right {
        display: inline-block; /* Make it visible */
        margin-left: 0.5em; /* Space between text and icon */
    }

    /* Style the icon within the span in offcanvas */
    .offcanvas .dropdown-icon-right i {
        font-size: 0.9em; /* Adjust size if needed */
        vertical-align: middle;
        color: inherit;
        transition: transform 0.2s ease-in-out;
    }
    
    /* Align the nav link content (text + icon) */
    .offcanvas .nav-link.dropdown-toggle {
        display: inline-flex; /* Use flex to align text and icon */
        align-items: center;
        justify-content: flex-start; /* Push icon to the far right */
        width: 100%; /* Ensure it takes full width for justify-content */
    }

    /* Rotate icon span when dropdown is shown in offcanvas */
    .offcanvas .nav-link.dropdown-toggle[aria-expanded="true"] .dropdown-icon-right i {
       transform: rotate(180deg);
    }
    
    /* Keep offcanvas dropdown background */
    .offcanvas .dropdown-menu { 
        background: #f8f9fa; 
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        margin-top: 5px;
        border-radius: 5px;
    }

    .offcanvas .dropdown-item {
        padding: 0.6rem 1rem;
        color: #495057;
    }
}
  
  /*
  ------------------------------------
      Navbar CSS End
  -------------------------------------
  */

 /*
------------------------------------
Logo and Description CSS Start
-------------------------------------
*/
.logo-description {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 3rem 0;
  }
  
  .logo-description .footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .logo-description .footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
  }
  
  .logo-description .follow-title {
    color: #2A4A45;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }
  
  .logo-description .social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
  }
  
  .logo-description .social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #f0f2f5;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #2A4A45;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .logo-description .social-link:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
  }
  
  /* Tablet devices */
  @media (max-width: 991px) {
    .logo-description {
      padding: 2.5rem 0;
    }
  
    .logo-description .footer-logo {
      justify-content: center;
      margin-bottom: 1.5rem;
    }
  
    .logo-description .footer-logo img {
      height: 70px;
    }
  
    .logo-description .follow-title {
      margin-bottom: 1rem;
    }
  
    .logo-description .social-links {
      justify-content: center;
      margin-top: 1rem;
    }
  }
  
  /* Mobile devices */
  @media (max-width: 767px) {
    .logo-description {
      padding: 2rem 0;
    }
  
    .logo-description .footer-logo {
      margin-bottom: 1.25rem;
    }
  
    .logo-description .footer-logo img {
      height: 60px;
    }
  
    .logo-description .follow-title {
      text-align: center;
      margin-bottom: 0.75rem;
    }
  
    .logo-description .social-links {
      gap: 12px;
    }
  
    .logo-description .social-link {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 575px) {
    .logo-description {
      padding: 1.5rem 0;
    }
  
    .logo-description .footer-logo img {
      height: 50px;
    }
  
    .logo-description .follow-title {
      font-size: 1rem;
    }
  
    .logo-description .social-links {
      gap: 10px;
    }
  
    .logo-description .social-link {
      width: 32px;
      height: 32px;
      font-size: 0.85rem;
    }
  }
  
  /*
  ------------------------------------
  Logo and Description CSS End
  -------------------------------------
  */
/*
------------------------------------
          Footer CSS Start
-------------------------------------
*/
.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2A4A45;
    font-family: 'Roboto', sans-serif;
  }
  
  .footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
  }
  
  .footer-section .social-links a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background-color: #f0f2f5;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #2A4A45;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-section .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
  }
  
  .footer-section ul li a {
    color: #6c757d;
    transition: all 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
  }
  
  .footer-section .app-buttons {
    max-width: 256px;
  }
  
  .footer-section .app-buttons .store-link {
    display: block;
    transition: all 0.3s ease;
  }
  
  .footer-section .app-buttons .store-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
  }
  
  .footer-section .app-buttons .store-link img {
    border-radius: 10px;
    width: 100%;
    height: auto;
  }
  
  /* Remove old button styles */
  .footer-section .app-buttons .btn,
  .footer-section .app-buttons .btn-content,
  .footer-section .app-buttons .img-wrapper {
    display: none;
  }
  
  .bottom-footer p {
    color: #6c757d;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-section {
      text-align: center;
    }
    
    .footer-section .social-links {
      justify-content: center;
      display: flex;
      gap: 10px;
    }
    
    .footer-section .app-buttons {
      margin: 0 auto;
    }
    .bottom-footer{
      text-align: center;
    }
  }
  @media (max-width: 320px) {
    .footer-section ul li a{
      font-size: 13px;
    }
    .footer-section h4{
      font-size: 16px;
    }
  }
  /*
  ------------------------------------
            Footer CSS End
  -------------------------------------
  */
/* Hero Slider Section Styles */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: visible;
  z-index: 1;
  isolation: isolate;
}
.hero-slider .swiper-wrapper {
  position: relative !important; 
}
.hero-slider .swiper-wrapper::after{
  content: '';
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(57, 170, 255, 0.12) 50%, transparent 50%) !important;
  /* background: linear-gradient(90deg, rgba(57, 170, 255, 0.12) -43.62%, rgba(57, 170, 255, 0.12) -17.23%, rgba(251, 252, 252, 0.15) 83.36%); */
}
.slide-bg {
  z-index: 0;
}
.hero-content,
.hero-slider .hero-content {
  position: relative;
  z-index: 1000;
  color: #06283D !important;
  opacity: 1 !important;
  max-width: 600px;
  padding: 120px 0;
}
.hero-slider .hero-swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
  position: relative;
}

.hero-slider .swiper-slide {
  position: relative;
  overflow: visible;
  z-index: 0;
}

.hero-slider .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider .slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .welcome-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-slider .hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color-primary);
  margin-bottom: 30px;
  text-align: justify;
}

.hero-slider .hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  text-align: justify;
}

.hero-slider .discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 60px;
  background: var(--primary-color);
  color: var(--text-color-white);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-slider .discover-btn:hover {
  background: var(--text-color-primary);
  color: var(--text-color-white);
  transform: translateY(-2px);
}

.hero-slider .discover-btn img {
  width: 20px;
  height: auto;
}

/* Slider Navigation */
.hero-slider .slider-nav {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.hero-slider .nav-button {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.hero-slider .nav-circle {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}

.hero-slider .nav-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--text-color-white);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.hero-slider .nav-button:hover .nav-circle {
  border-color: var(--text-color-white);
}

.hero-slider .nav-button.active .nav-circle {
  border-color: var(--text-color-white);
}

.hero-slider .nav-button.active .nav-circle::after {
  opacity: 1;
}

@media (max-width: 991px) {
  .hero-slider .slider-nav {
      right: 20px;
  }
  .hero-slider {
    height: auto;
    min-height: 360px;
    overflow: hidden;
    }

    .hero-slider .hero-swiper {
        overflow: hidden;
    }

    .hero-slider .hero-content {
        padding: 60px 15px;
        max-width: 100%;
    }

    .hero-slider .hero-content h1 {
        font-size: 38px;
    }
    .hero-slider .hero-content p{
      font-size: 14px;
    }

}

@media (max-width: 576px) {
  .hero-slider .slider-nav {
      right: 15px;
  }
  
  .hero-slider .nav-button {
      width: 35px;
      height: 35px;
  }
  .hero-slider {
    margin-bottom: 0;
  }

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

  .hero-slider .hero-content {
      padding: 40px 15px;
  }
  .hero-slider .swiper-wrapper::after{
    display: none;
  }
  
}
@media (max-width: 1920px) {
  .hero-content,
  .hero-slider .hero-content{
    padding: 270px 0;
}
}
@media (max-width: 1600px) {
  .hero-content,
  .hero-slider .hero-content{
    padding: 170px 0;
}
}
@media (max-width: 1400px) {
  .hero-content,
  .hero-slider .hero-content{
    padding: 120px 0;
}
}
/* Hero slider section styles end */

/* Features Section */
.features-section {
  background-color: #f8f9fa;
  padding-top: 4rem !important;
}

.feature-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon img {
  max-width: 50px;
  height: auto;
}
.feature-icon i{
  font-size:30px;
  color:var(--tertiary-color);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color-dark);
}

.feature-text {
  font-size: 0.9rem;
  color: #6c757d;
}

@media (max-width: 767px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
}
@media (max-width: 1400px) {
  .feature-title{
    font-size:15px;
  }
  .feature-text{
    font-size:12px;
  }
} 

/* Existing CSS */
.category-slider-section {
  position: relative;
  background-color: var(--text-color-white);
}
/* Features section End */

/* Category Slider Section Styles */
.category-slider-section {
  background: var(--text-color-white);
}
.category-slider-section .d-flex {
  position: relative;
}
.category-slider-section .category-label,
.best-selling-products .category-label {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  border-left: 15px solid var(--secondary-color);
  padding-left: 10px;
}
.category-slider-section .category-title,
.best-selling-products .category-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-color-dark);
  margin-bottom: 0;
}
.category-slider-section .category-slider-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 2;
}
.category-slider-section .category-swiper-prev,
.category-slider-section .category-swiper-next{
  background: var(--swiper-pagination-color) !important;
  border: 1px solid var(--swiper-pagination-color) !important;
  border-radius: 50px !important;
  padding: 7px 12px !important;
} 
.category-slider-section .swiper-button-prev,
.category-slider-section .swiper-button-next {
  background: var(--swiper-pagination-color) !important;
  border: 1px solid var(--swiper-pagination-color) !important;
  border-radius: 50px !important;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-color-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
  outline: none;
  margin-left: 0;
}
.category-slider-section .swiper-button-prev:hover,
.category-slider-section .swiper-button-next:hover {
  background: var(--secondary-color);
  color: var(--text-color-white);
}
.category-slider-section .category-swiper {
  width: 100%;
  padding-bottom: 10px;
}
.category-slider-section .category-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: var(--text-color-white);
  padding: 32px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 160px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.01);
  transition: box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}
.category-slider-section .category-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 4px 18px rgba(14,187,235,0.08);
}
.category-slider-section .category-icon {
  font-size: 2.5rem;
  color: var(--text-color-dark);
  margin-bottom: 18px;
}
.category-slider-section .category-name {
  font-size: 1.1rem;
  color: var(--text-color-dark);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 991.98px) {
  .category-slider-section .category-title { font-size: 1.5rem; }
  .category-slider-section .category-card { min-width: 120px; min-height: 120px; padding: 20px 8px 14px 8px; }
  .category-slider-section .category-icon { font-size: 2rem; }
  .category-slider-section .category-slider-nav {
    position: static;
    margin-top: 12px;
    justify-content: flex-end;
  }
}
@media (max-width: 767.98px) {
  .category-slider-section { padding: 2rem 0; }
  .category-slider-section .category-title, .best-selling-products .category-title { font-size: 1.1rem; }
  .category-slider-section .category-card { min-width: 90px; min-height: 90px; padding: 12px 4px 8px 4px; }
  .category-slider-section .category-icon { font-size: 1.3rem; }
  .best-selling-products .view-all-btn{
    font-size: 12px;
  }
}
/* Category Slider Section Styles End */

/* Best Selling Products Section Styles Start*/
.best-selling-products .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.best-selling-products .view-all-btn {
  display: flex;
  justify-content: center;
  width: 25%;
  margin: 0 auto !important;
  padding: 14px 48px;
  background: var(--tertiary-color);
  color: #fff;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(219, 68, 68, 0.08);
  text-decoration: none;
}
.best-selling-products .view-all-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px) scale(1.04);
}

/* Grid */
.best-selling-products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

/* Card */
.best-selling-products .product-card {
  background: var(--text-color-white);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
}
.best-selling-products .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Image & Hover */
.best-selling-products .product-img {
  position: relative;
  overflow: hidden;
  background: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px; /* Adjust height as needed */
  padding: 20px;
}
.best-selling-products .product-img img {
  max-width: 500px; /* Smaller width */
  height: auto;
  transition: transform 0.4s ease;
}
.best-selling-products .product-card:hover .product-img img {
  transform: scale(1.08);
}

/* Icons */
.best-selling-products .card-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.best-selling-products .product-card:hover .card-icons {
  opacity: 1;
}
.best-selling-products .card-icons a {
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  padding: 6px 9px;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-color-dark);
}

/* Info */
.best-selling-products .product-info {
  padding: 16px;
}
.best-selling-products .product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
  min-height: 48px;         
  max-height: 48px;         
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;   
  -webkit-box-orient: vertical;
  white-space: normal;
}
.best-selling-products .price {
  font-size: 14px;
  margin-bottom: 10px;
}
.best-selling-products .new-price {
  color: var(--tertiary-color);
  font-weight: 600;
  margin-right: 8px;
}
.best-selling-products .old-price {
  color: #aaa;
  text-decoration: line-through;
}
.best-selling-products .rating {
  font-size: 14px;
  color: #ff9900;
}
.best-selling-products .rating span {
  color: #555;
}
/* Best Selling Products Section Styles End*/

/* Best Selling Products Section Styles Start */
.best-selling-products .d-flex{
  position: relative;
}
.best-selling-products .swiper {
  width: 100%;
  padding-bottom: 30px;
}
.best-selling-products .swiper-slide {
  height: auto;
  /* display: flex; */
  align-items: stretch;
}
.best-selling-products .product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 410px;
  height: 100%;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
  padding: 0;
}
.best-selling-products .product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
  border-radius: 14px 14px 0 0;
  position: relative;
  overflow: hidden;
}
.best-selling-products .product-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px 20px 16px;
  position: relative;
}
.best-selling-products .add-to-cart-btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(0, 0, 0, 1);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: none;
  z-index: 3;
  text-decoration: none;
  text-align: center;
}
.best-selling-products .product-card:hover .add-to-cart-btn {
  display: block;
}
.best-selling-products .buy-now-btn {
  width: 100%;
  background: linear-gradient(90deg, var(--primary-color) 60%, var(--secondary-color) 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 10px 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  display: block;
  text-decoration: none;
  text-align: center;
}
.best-selling-products .buy-now-btn:hover {
  background: linear-gradient(90deg, #0EBBEB 60%, #1363DF 100%);
  transform: translateY(-2px) scale(1.04);
}
.best-selling-products .product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(90deg, var(--primary-color) 60%, var(--secondary-color) 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 12px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(14, 187, 235, 0.12);
  z-index: 3;
}

/* Best Selling Products Slider Nav Style (like Category Slider) */
.best-selling-products .best-selling-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 2;
}
.best-selling-products .best-selling-prev.swiper-button-disabled,
.best-selling-products .best-selling-next.swiper-button-disabled {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  background: #e9ecef !important;
  color: #000 !important;
  border-color: #e9ecef !important;
  box-shadow: none !important;
  transition: background 0.2s, color 0.2s;
}
.best-selling-products .best-selling-prev,
.best-selling-products .best-selling-next {
  background: var(--swiper-pagination-color) !important;
  border: 1px solid var(--swiper-pagination-color) !important;
  border-radius: 50px !important;
  width: 38px;
  height: 38px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-color-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
  outline: none;
  margin-left: 0;
  position: static;
  opacity: 1 !important;
}
@media all and (max-width: 1200px) {
  .best-selling-products .view-all-btn {
    width: 100%;
  }
}

/* Featured Section Styles Start */
.featured-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.featured-section .section-header {
  margin-bottom: 32px;
}
.featured-section .featured-label {
  color: var(--tertiary-color);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  border-left: 15px solid var(--tertiary-color);
  padding-left: 10px;
}
.featured-section .featured-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-color-primary);
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.featured-section .featured-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.featured-section .featured-item {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.featured-section .featured-large {
  grid-row: 1 / span 2;
  grid-column: 1 / 2;
  min-height: 600px;
}
.featured-section .featured-medium {
  grid-row: 1 / 2;
  grid-column: 2 / 4;
  min-height: 200px;
}
.featured-section .featured-small {
  min-height: 180px;
}
.featured-section .featured-small:nth-child(3) {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
.featured-section .featured-small:nth-child(4) {
  grid-row: 2 / 3;
  grid-column: 3 / 4;
}
.featured-section .featured-content {
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.1) 100%);
  color: #fff;
  padding: 28px 24px 20px 24px;
  width: 100%;
  border-radius: 0 0 12px 12px;
  position: relative;
  z-index: 2;
}
.featured-section .featured-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 10px 0 0 0;
  color: #fff;
}
.featured-section .featured-desc {
  font-size: 1rem;
  margin: 8px 0 0 0;
  color: #f3f3f3;
}
.featured-section .featured-btn {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 8px;
  color: #fff;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.2s;
  padding: 0;
}
.featured-section .featured-btn:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .featured-section .featured-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .featured-section .featured-large {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    min-height: 260px;
  }
  .featured-section .featured-medium {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
    min-height: 180px;
  }
  .featured-section .featured-small:nth-child(3) {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
  .featured-section .featured-small:nth-child(4) {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
  }
}
@media (max-width: 600px) {
  .featured-section .featured-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 16px;
  }
  .featured-section .featured-large,
  .featured-section .featured-medium,
  .featured-section .featured-small {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
    min-height: 330px;
  }
  .featured-section .featured-content {
    padding: 18px 10px 12px 10px;
  }
  .featured-title {
    font-size: 1.3rem;
  }
  .featured-section .featured-label{
    font-size: 1rem;
  }
  .featured-section .featured-title{
    font-size: 1.1rem;
  }
}
/* Featured Section Styles End */

/* Service Features Section Styles Start */
.service-features-section {
  background: #fff;
  padding: 40px 0 30px 0;
}
.service-features-section .service-features-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}
.service-features-section .service-feature {
  text-align: center;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
}
.service-features-section .service-feature-icon {
  width: 64px;
  height: 64px;
  background: #bdbdbd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  position: relative;
}
.service-features-section .service-feature-icon i {
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-features-section .service-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 0;
  letter-spacing: 0.5px;
}
.service-features-section .service-feature-desc {
  color: #222;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 0;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 991px) {
  .service-features-section .service-features-row {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .service-features-section .service-features-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .service-features-section .service-feature {
    max-width: 100%;
  }
}
/* Service Features Section Styles End */

/* Testimonials Section Styles Start */
/* Testimonials Section Start */
.testimonials-section {
  padding: 40px 0 0px 0;
  background-color: rgba(245, 245, 249, 1);
  position: relative;
  overflow: hidden;
  background: url('../images/contact/contact-bg.jpg') center center/cover no-repeat;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 30, 0.65); /* dark overlay */
  z-index: 1;
}
.testimonials-section > * {
  position: relative;
  z-index: 2;
}

.testimonials-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  /* margin-bottom: 2rem; */
}

.testimonials-section .trustpilot-info {
  display: flex;
      align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonials-section .trustpilot-logo {
  height: 30px;
  object-fit: contain;
}

.testimonials-section .rating {
  color: #00B67A;
  font-size: 1.2rem;
}
.testimonials-section .rating i{
  background:#008349;
  padding:5px;
  color: white;
  font-size: 12px;
}

.testimonials-section .review-count {
  font-size: 1rem;
  color: #2D3436;
      margin: 0;
  }

.testimonials-section .review-count span {
  font-weight: 600;
}

/* Testimonial Cards */
.testimonials-section .testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonials-section .testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonials-section .testimonial-card .rating {
  margin-bottom: 1.5rem;
}

.testimonials-section .testimonial-card .testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2D3436;
  margin-bottom: 2rem;
  min-height: 80px;
}

.testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonials-section .testimonial-card .author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-section .testimonial-card .author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2D3436;
  margin: 0;
}

.testimonials-section .testimonial-card .author-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Slider Navigation */
.testimonials-section .testimonial-swiper {
  margin-bottom: 30px;
}

.testimonials-section .testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 2rem; */
}

.testimonials-section .control-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonials-section .testimonial-prev,
.testimonials-section .testimonial-next {
  position: static !important;
  width: 40px !important;
  height: 40px !important;
  margin: 0 !important;
  background: #f5f5f5 !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonials-section .testimonial-prev:after,
.testimonials-section .testimonial-next:after {
  display: none;
}

.testimonials-section .testimonial-prev i,
.testimonials-section .testimonial-next i {
  font-size: 14px;
  color: #666;
}

.testimonials-section .testimonial-prev:hover,
.testimonials-section .testimonial-next:hover {
  background: var(--primary-color) !important;
}

.testimonials-section .testimonial-prev:hover i,
.testimonials-section .testimonial-next:hover i {
  color: white;
}

.testimonials-section .testimonial-pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 1rem !important;
}

.testimonials-section .testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #e0e0e0;
  opacity: 1;
  margin: 0 2px !important;
  transition: all 0.3s ease;
}

.testimonials-section .testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  transform: scale(1);
}
@media all and (max-width: 576px) {
  .testimonials-section .testimonial-controls {
      margin-top: 1rem;
  }

  .testimonials-section .control-wrapper {
      gap: 0.3rem;
      padding: 0.3rem;
  }

  .testimonials-section .testimonial-prev,
  .testimonials-section .testimonial-next {
      width: 30px !important;
      height: 30px !important;
  }

  .testimonials-section .testimonial-prev i,
  .testimonials-section .testimonial-next i {
      font-size: 12px;
  }
}
@media all and (max-width: 767px) {
  .testimonials-section .testimonial-controls {
      margin-top: 1.5rem;
  }

  .testimonials-section .control-wrapper {
      gap: 0.5rem;
      padding: 0.4rem;
  }

  .testimonials-section .testimonial-prev,
  .testimonials-section .testimonial-next {
      width: 35px !important;
      height: 35px !important;
  }

  .testimonials-section .testimonial-pagination {
      margin: 0 0.5rem !important;
  }
}
@media all and (max-width: 991px) {
  .testimonials-section .section-title{
    font-size: 2rem !important;
  }
}
/* Testimonials Section Styles End */

/*
------------------------------------
Sister Concern CSS Start
-------------------------------------
*/
.sister-concern {
  padding: 40px 0;
  background-color: #fff;
  overflow: hidden;
}

.sister-concern h3 {
  font-size: 28px;
  color: rgb(201, 155, 32);
  font-weight: 700;
  margin-bottom: 40px;
  font-family: 'Roboto', sans-serif;
}

.sister-concern .logos-wrapper {
  width: 100%;
  position: relative;
}

.sister-concern .logos-slider {
  padding: 10px 0;
  display: flex;
  width: max-content;
  animation: slide 30s linear infinite;
}

.sister-concern .logos-slider:hover {
  animation-play-state: paused;
}

.sister-concern .d-flex {
  gap: 30px;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.sister-concern .logo-item {
  flex: 0 0 auto;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
  width: 200px;
}

.sister-concern .sister-logo {
  height: 60px;
      width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.sister-concern .logo-item:hover {
  /* transform: scale(1.1); */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@keyframes slide {
  0% {
      transform: translateX(-50%);
  }
  100% {
      transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .sister-concern .sister-logo {
      height: 40px;
  }
  .sister-concern .d-flex {
      gap: 25px;
  }
  .sister-concern h3 {
      font-size: 24px;
      margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .sister-concern .sister-logo {
      height: 45px;
  }
  .sister-concern .d-flex {
      gap: 30px;
  }
}
/*
------------------------------------
Sister Concern CSS End
-------------------------------------
*/

/*
-----------------------------------------------------------------------------
                          Checkout Page CSS Start
-----------------------------------------------------------------------------
*/
.checkout-summary{
  background: var(--checkout-summary);
}
.checkout-summary .delete-product-btn{
  font-size: 1.7rem;
}
.checkout-summary .product-image{
  width: 80px; height: 80px; background: var(--swiper-pagination-color); object-fit: cover;
}
.checkout-summary .summary-logo{
  width: 60px; margin-bottom: 30px;
}
.checkout-section-title{
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 22px;
}
.checkout-form-wrap .form-label{
  color: var(--checkout-summary);
  font-size: 14px;
  font-weight: 700;
}
.checkout-form-wrap .form-control{
  border-radius: 6px;
  box-shadow: none;
  transition: border 0.2s;
  font-size: 13px;
}
.checkout-payment-method label.form-check-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color-dark);
  margin-right: 32px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
}
.checkout-payment-method .form-check-input[type="radio"] {
  accent-color: var(--tertiary-color);
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 2px solid var(--tertiary-color);
  box-shadow: none;
  outline: none;
  transition: border 0.2s;
}
.complete-purchase-btn{
  background: var(--secondary-color);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border:1px solid var(--secondary-color);
}
.complete-purchase-btn:hover{
  background: var(--checkout-summary);
}
.checkout-payment-method .form-check-input[type="radio"]:checked {
  border: 6px solid var(--tertiary-color);
  background: #fff;
}
.checkout-payment-method .bkash-logo {
  height: 70px;
  margin-left: 6px;
  vertical-align: middle;
}
#bkash-transaction {
  margin-top: 18px;
  animation: fadeIn 0.3s;
}
#bkash-transaction .form-label {
  font-weight: 500;
  color: var(--tertiary-color);
}
#bkash-transaction .form-control {
  border: 1.5px solid var(--tertiary-color);
  border-radius: 6px;
  box-shadow: none;
  transition: border 0.2s;
}
#bkash-transaction .form-control:focus {
  border-color: var(--tertiary-color);
  box-shadow: 0 0 0 2px rgba(219,68,68,0.08);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media all and (max-width: 484px) {
  .complete-purchase-btn{
    width: 100% !important;
  }
}
/*
-----------------------------------------------------------------------------
                          Checkout Page CSS End
-----------------------------------------------------------------------------
*/

/*
-----------------------------------------------------------------------------
                          Category Page CSS Start
-----------------------------------------------------------------------------
*/
/* Category & Product Section - Redesign for Sidebar Category */
.category-product-section .category-tabs {
  background: #fff;
  border: 1px solid var(--swiper-pagination-color);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 28px 24px 24px 24px;
  min-width: 220px;
}
.category-product-section .category-tabs .category-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-color-dark);
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}
.category-product-section .category-tabs .category-title-underline {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  margin-bottom: 18px;
}
.category-product-section .category-tabs .nav-link {
  color: var(--text-color-dark);
  background: none;
  border: none;
  border-radius: 0;
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0 8px 0;
  margin-bottom: 2px;
  transition: color 0.2s, background 0.2s, font-weight 0.2s;
  box-shadow: none;
  outline: none;
  position: relative;
  display: block;
}
.category-product-section .category-tabs .nav-link.active,
.category-product-section .category-tabs .nav-link:focus,
.category-product-section .category-tabs .nav-link:hover {
  color: var(--secondary-color);
  background: none;
}
.category-product-section .category-tabs .nav-link:last-child {
  margin-bottom: 0;
}
/* Card */
.category-product-section .product-card {
  background: var(--text-color-white);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 410px;
  height: 100%;
  padding: 0;
}
.category-product-section .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Image & Hover */
.category-product-section .product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
  border-radius: 14px 14px 0 0;
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.category-product-section .product-img img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.category-product-section .product-card:hover .product-img img {
  transform: scale(1.08);
}
.category-product-section .product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(90deg, #0EBBEB 60%, #1363DF 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 12px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(14, 187, 235, 0.12);
  z-index: 3;
}
.category-product-section .product-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px 20px 16px;
  position: relative;
}
.category-product-section .product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
  min-height: 48px;
  max-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.category-product-section .price {
  font-size: 14px;
  margin-bottom: 10px;
}
.category-product-section .new-price {
  color: var(--tertiary-color);
  font-weight: 600;
  margin-right: 8px;
}
.category-product-section .old-price {
  color: #aaa;
  text-decoration: line-through;
}
.category-product-section .add-to-cart-btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(0, 0, 0, 1);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: none;
  z-index: 3;
  text-decoration: none;
  text-align: center;
}
.category-product-section .product-card:hover .add-to-cart-btn {
  display: block;
}
.category-product-section .buy-now-btn {
  width: 100%;
  background: linear-gradient(90deg, #1363DF 60%, #0EBBEB 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 10px 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  display: block;
  text-decoration: none;
  text-align: center;
}
.category-product-section .buy-now-btn:hover {
  background: linear-gradient(90deg, #0EBBEB 60%, #1363DF 100%);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 991.98px) {
  .category-product-section .product-card {
    min-height: 340px;
  }
  .category-product-section .product-img {
    height: 140px;
    padding: 10px;
  }
  .category-product-section .product-title {
    font-size: 14px;
    min-height: 36px;
    max-height: 36px;
  }
}
@media (max-width: 767.98px) {
  .category-product-section .product-card {
    min-height: 260px;
  }
  .category-product-section .product-img {
    padding: 6px;
    height: 250px;
  }
  .category-product-section .product-title {
    font-size: 13px;
  }
}
/*
-----------------------------------------------------------------------------
                          Category Page CSS End
-----------------------------------------------------------------------------
*/

