/* ================= VARIABLES ================= */
/* :root {
  --color-default: #fff;
  --color-primary: #ff3f6c;
  --color-secondary: #fd2859;
  --bg-header-color: #fff;
  --color-footer:#d4c8c8;
  --color-section: #808080;
  --color-main-heading: #000000;
  --color-sub-heading: #282a2d;
  --color-text: #000000;
  --color-para: #282c3f;
  --color-dark: #282c3f;
  --color-light: #f5f5f6;
  --btn-primary:#fd2859;
  --btn-primary-hov: #fe547c;
  --prize-color: #cf214a;
  --color-stars: #ff8c00;
  --color-slider-deal:#f3eada;
  --bg-light-color: #e1f5fe;
} */
:root{
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --font-family: 'Poppins', sans-serif;
  --font-deal: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
body, h1, h2, h3, h4, h5, h6, p, a, ul, li {
  margin: 0;
  padding: 0;
  color: var(--color-text);
}
a { text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
body {
  margin-top: 90px;
}
.site-content .container {
  max-width: 1400px !important;
  margin: 0 auto;
}
/* ================= HEADER ================= */
.site-header {
  background: var(--bg-header-color);
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header-inner {
  display: flex;
  background: var(--bg-header-color);
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}
.header-inner .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 60px;
  width: 120px;
}
.header-inner .logo img {
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
}
/* NAVIGATION */
.main-nav{
  background: var(--bg-header-color);
}
.main-nav .nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-dark);
  padding: 10px 12px;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--color-primary);
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.4s ease;
}
.main-nav .nav-item:hover .nav-link,
.main-nav .nav-link.active {
  color: var(--color-primary);
}
.main-nav .nav-item:hover .nav-link::after,
.main-nav .nav-link.active::after {
  width: 100%;
}
/* ======Mega menu drop down ======*/
.mega-menu {
  position: absolute;
  left: 0;
  min-width: 800px;
  padding: 20px 10px;
  background: #fff;
  z-index: 1000;
  /* display: none; */

  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.nav-item.position-static {
  position: relative; /* keeps dropdown attached */
}
.mega-menu.d-block {
  display: flex !important;
}
.mega-menu > div {
  flex: 1 1 150px; /* flexible width for each category */
  min-width: 150px; /* ensures readable layout */
}
.mega-menu .category-title a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
/* Subcategory Hover Style */
.subcategory-link {
  color: var(--color-main-heading);
  text-decoration: none;
  transition: all 0.2s ease;
}
.subcategory-link:hover {
  color: var(--color-dark);
  transition: color 0.2s ease;
  font-weight: 600;
  padding-left: 3px;
}
.header-icons .nav-item .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  padding: 5px 8px;
}
.header-icons .nav-item .nav-link:hover {
  color: var(--color-primary);
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-primary);
  color: var(--color-default);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50%;
  padding: 2px 6px;
}
/* Ensure parent anchors dropdown */
.nav-item.position-relative {
  position: relative;
}

/* Profile Dropdown */
.user-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateX(30px);
  min-width: 280px;
  background: #fff;
  z-index: 1000;
  display: none;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}
.user-menu-dropdown.d-block {
  display: block !important;
}
.user-menu-dropdown h6 {
  border-bottom: 1px solid #eee;
  padding: 6px 10px;
  color: var(--color-dark);
}
.user-menu-dropdown .dropdown-link {
  display: block;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.user-menu-dropdown .dropdown-link:hover {
  background: #f8f8f8;
  color: var(--color-primary);
  font-weight: 600;
}
.user-guest-dropdown {
  text-align: center;
}
.btn-myntra-login {
  background: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}
.btn-myntra-login:hover {
  background: var(--color-secondary);
}
/* SEARCH BAR */
.search-bar {
  position: relative;
  max-width: 500px;
}
.search-bar input {
  width: 100%;
  height: 44px;
  padding: 8px 16px 8px 40px;
  border: 1px solid var(--color-light);
  font-size: 14px;
  background: white;
  transition: all 0.2s ease;
  border-radius: 3px;
}
.search-bar input:focus {
  background: white;
  border: 1px solid #c9c9c9;
  border-radius: 3px;
  outline: none;
}
.search-bar .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
}
/* === Search Dropdown === */
.main-search-list {
  position: absolute;
  left: 0;
  width: 90%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 1050;
  max-height: 350px;
  overflow-y: auto;
  padding: 5px 0;
  list-style: none;
  margin: 0;
  animation: fadeInDown 0.25s ease;
}
.search-list-main {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  transition: background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}
.main-search-list::-webkit-scrollbar {
  width: 6px;
}
.main-search-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.main-search-list li {
  display: block;
}
.main-search-list li a {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
}
.main-search-list li a:hover {
  background: var(--color-light);
}
.main-search-list li a .icon-s {
  color: #777;
  flex-shrink: 0;
}
.main-search-list li a .categories-text-search .cts {
  font-weight: 500;
}
.main-search-list li a .categories-label-search {
  font-size: 12px;
  color: #777;
}
.popular-label-search {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  color: #999;
}
.search-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #7e818c;
  letter-spacing: 0.3px;
}
.whatsapp-chat {
  position: fixed;
  right: 15px;
  bottom: 70px;
  transition: all .3s ease;
  font-size: 50px;
  color: #0dc143;
  width: 50px;
  z-index: 50;
  display: block;
}
.whatsapp-chat img {
  transition: all .3s ease;
}
.whatsapp-chat:hover img {
  transform: scale(1.09);
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 100;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
.spinner-icon {
  font-size: 16px;
  animation: spin 1s linear infinite;
  color: var(--color-primary);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.no_result_sect {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #7e818c;
  font-size: 14px;
  padding: 20px;
  line-height: 1.6;
}
.no_result_sect .font-weight-normal {
  font-weight: 500;
  color: #282c3f;
  margin-bottom: 6px;
}
.no_result_sect .font-weight-lighter {
  font-weight: 400;
  color: #7e818c;
  font-size: 13px;
}
/* 🧭 Maintain height consistency inside dropdown */
.min_height_full {
  min-height: 90px;
}
/* 📦 Consistent list section spacing */
.main-search-list li {
  list-style: none;
}
/* 🔥 Optional: Add smooth fade-in for list items */
.main-search-list li {
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === Animations === */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
/* USER ACTIONS */
.header-icons {
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.action-link {
  color: var(--color-dark);
  font-size: 13px;
  text-decoration: none;
  position: relative;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.action-link .label {
  font-size: 11px;
  margin-top: 2px;
}
.action-link:hover {
  color: var(--color-primary);
}
.count-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 50%;
}
/* === Mobile Header Responsive === */
@media (max-width: 768px) {
  body {
    margin-top: 130px;
  }
}
@media (max-width: 992px) {
  .site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }
  .header-inner {
    align-items: center;
  }
  /* Hide desktop nav by default */
  .main-nav {
    display: none;
    width: 100%;
  }
  .main-nav.show {
    display: block;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .main-nav ul.navbar-nav {
    flex-direction: column !important;
    text-align: left;
    padding: 0 20px;
  }
  .main-nav .nav-link {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  .main-nav .nav-link:last-child {
    border-bottom: none;
  }
  .navbar-toggler {
    z-index: 1000;
  }
  .search-bar {
    order: 3; /* ensures it goes below logo and other items */
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .search-bar form {
    width: 100%;
  }
  .header-icons {
    margin-left: auto;
  }
}
@media (max-width: 576px) {
  .header-inner .logo {
    width: 80px;
    max-height: 45px;
  }
  .header-inner .logo img {
    max-height: 45px;
  }
  .navbar-toggler {
    font-size: 20px;
  }
}
.btn-myntra-login {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #ff3f6c;
    background: #fff;
    border: 1px solid #ff3f6c;
    border-radius: 4px;
    padding: 6px 18px;
    transition: all 0.3s;
}
.btn-myntra-login:hover {
    background: #ff3f6c;
    color: #fff;
    text-decoration: none;
}
/* ================= PRODUCTS ================= */
/* Product Card */
.product-card {
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
.product-card .product-img {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}
.product-card .product-img img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-card .product-img .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 8px;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  z-index: 2;
}
.product-card .product-img .main-img {
  position: relative;
  z-index: 1;
}
.product-card .product-img:hover .hover-img {
  opacity: 1;
  visibility: visible;
}
.product-card .product-img:hover .main-img {
  opacity: 0;
}
.product-card .product-info{
  color: var(--color-main-heading);
}
.product-card .product-info h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0 5px;
}
.product-card .final-price {
  color: var(--prize-color);
  font-weight: 600;
  margin-right: 5px;
}
.product-card .original-price {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: line-through;
}
.product-card .btn-myntra {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 7px 15px;
  font-size: 13px;
  width: 100%;
  transition: background 0.3s ease;
}
.product-card .btn-myntra:hover {
  background: var(--color-secondary);
}
/* =================  OFFER ================= */
.offer-banner {
  background: var(--color-primary);
  color: #fff;
  padding: 50px 20px;
  border-radius: 8px;
}
.offer-banner h2 {
  margin-bottom: 15px;
}
.offer-banner .btn {
  background: #fff;
  color: var(--color-primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
}
.offer-banner .btn:hover {
  background: #eee;
}
/* ================= FOOTER ================= */
.site-footer {
  background: var(--color-footer);
  font-size: 14px;
  padding: 60px 0 40px;
}
.footer-logo img {
  display: inline-block;
  max-width: 160px;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-logo img:hover {
  transform: scale(1.05);
  opacity: 1;
}
.footer-title {
  margin-top: 10px;
  color: var(--color-main-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-description {
  line-height: 1.6;
  max-width: 300px;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-link {
  font-size: 1rem;
  color: var(--color-default);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--color-primary);
  font-weight: 600;
}
.social-links-cmn {
  flex-wrap: wrap;
  gap: 10px;
}
.social-links-cmn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: all 0.2s ease;
}
.social-links-cmn a.twitter { color: #1DA1F2; }
.social-links-cmn a.facebook { color: #1877F2; }
.social-links-cmn a.instagram { color: #E1306C; }
.social-links-cmn a.linkedin { color: #0077B5; }
.social-links-cmn a.youtube { color: #FF0000; }
.social-links-cmn a:hover {
  opacity: 0.85;
  transform: scale(1.05);
  background: var(--color-primary);
  color: #fff !important;
}
.brand-link {
  font-size: 0.95rem;
  color: var(--color-default);
  transition: color 0.3s;
}
.copyright,
.credits {
  font-size: 0.9rem;
  color: var(--color-main-heading);
}
.credits a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (max-width: 992px) {
  .site-footer {
    padding: 50px 0 30px;
  }
  .footer-links {
    margin-bottom: 20px;
  }
  .site-footer h6 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .site-footer .row {
    text-align: center;
  }
  .footer-links {
    padding-left: 0;
  }
  .footer-links li {
    margin-bottom: 6px;
  }
  .footer-logo img {
    max-width: 120px;
  }
  .social-links-cmn {
    justify-content: center;
    margin-top: 15px;
  }
  .site-footer h6 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .site-footer .col-12 {
    margin-bottom: 30px;
  }
  .brand-link {
    display: inline-block;
    margin: 4px 5px;
  }
}
@media (max-width: 576px) {
  .footer-logo img {
    max-width: 100px;
  }
  .social-links-cmn a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .copyright,
  .credits {
    flex-direction: column;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .credits a {
    display: inline-block;
    margin-top: 4px;
  }
  .footer-links li {
    font-size: 0.9rem;
  }
  .site-footer {
    text-align: center;
  }
  .footer-links,
  .social-links-cmn,
  .brand-link {
    justify-content: center;
  }
}
/* ======================
    About Page Styles
====================== */
#about-sec-one,
.about-sec-three {
    padding: 60px 0;
}
.about-sec-one .about-main-pic img,
.about-sec-three .about-sub-pic img {
  padding: 3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-sec-one .about-main-pic img:hover,
.about-sec-three .about-sub-pic img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.about-sec-one .text-center h3,
.about-sec-three h2 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--color-primary);
}
.about-sec-one .text-center p,
.about-sec-three p {
    font-size: 16px;
    color: var(--color-para);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}
.about-sec-three .row {
    margin-bottom: 40px;
    align-items: center;
}
.about-sec-three .col-lg-3,
.about-sec-three .col-lg-9 {
    margin-bottom: 20px;
}
.about-sec-three h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}
.about-sec-three p {
    font-size: 15px;
    color: var(--color-para);
    line-height: 1.6;
}
@media (max-width: 991px) {
    .about-sec-three .col-lg-3,
    .about-sec-three .col-lg-9 {
        text-align: center;
    }
    .about-sec-three .col-lg-3 .about-sub-pic img {
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .about-sec-one .about-main-pic img {
        width: 100%;
    }
    .about-sec-three h2 {
        font-size: 22px;
    }
    .about-sec-three p {
        font-size: 14px;
    }
}
/* ================= CART PAGE ================= */
.cart-page { padding: 40px 0; }
.cart-container {
  align-items: stretch;
}
.cart-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding: 15px 0;
}
.cart-item:last-child { border-bottom: none; }
.cart-item img {
  width: 100px;
  border-radius: 8px;
  margin-right: 20px;
}
.cart-item-info{
  color: var(--color-main-heading);
}
.cart-item-details { flex: 1; }
.cart-item-details h5 {
  color: var(--color-primary);
  margin-bottom: 5px;
}
.cart-item-details h6 {
  font-size: 1rem;
  margin-bottom: 5px;
}
.cart-item-details p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-item-actions input {
  width: 50px;
  text-align: center;
}
.order-summary {
  border-left: 1px solid #e1dfdf;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.btn-checkout {
  background: var(--btn-primary);
  color: #fff;
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  font-weight: 600;
}
.btn-checkout:hover {
  background: var(--btn-primary-hov);
  color: #fff;
}
.check-out-btn {
  background: var(--btn-primary);
  color: #fff;
}
.check-out-btn:hover {
  background: var(--btn-primary-hov);
  color: #fff;
}
.checkout-section {
  background-color: #fff;
}
.checkout-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  transition: 0.3s ease;
}
.payment-option .selected-option,
.address-card.selected-option {
  border-color: var(--color-primary) !important;
  background-color: #fff5f8;
}
.btn-primary-pink {
  background-color: var(--color-primary);
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary-pink:hover {
  background-color: var(--color-secondary);
  color: #fff;
}
.btn-outline-primary-pink {
  background-color: var(--btn-primary);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-outline-primary-pink:hover {
  background-color: var(--btn-primary-hov);
  color: #fff;
}
.address-card,
.address-selected {
  background: #fff;
  transition: border-color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  width: 100%;
  box-sizing: border-box;
}
.address-card:hover {
  border-color: var(--color-primary);
}
.badge {
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 6px;
}
.dropdown-menu {
  font-size: 0.9rem;
}
/* ================Categories============== */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: block;
  background-color: #fff;
  border: 2px outset  var(--color-primary);
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* Category Image */
.category-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-img  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
/* Section Title */
.section-title {
    font-weight: bold;
    color: var(--color-section);
}
@media (max-width: 1024px) {
  .category-card img {
    height: 180px;
  }
  .category-card h5 {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .category-card img {
    height: 160px;
  }
  .category-card h5 {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .category-card img {
    height: 140px;
  }
  .category-card h5 {
    font-size: 0.9rem;
  }
  .category-card {
    margin-bottom: 10px;
  }
}

/* ================featured product============== */
.featured-product-card {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  position: relative;
}
.featured-product-card:hover {
  transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.featured-product-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.featured-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.featured-product-card:hover .featured-product-img img {
  transform: scale(1.05);
}
.discount-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(255,63,108,0.3);
  z-index: 5;
  pointer-events: none;
}
.featured-product-info {
  margin-top: 3px;
  margin-bottom: 2px;
  text-align: center;
}
.featured-product-info h6 {
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--color-primary);
  height: calc(1.3em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.final-price{
  color: var(--prize-color);
}
.product-prices {
  margin-top: 4px;
}
.product-prices span {
  font-size: 0.9rem;
}
.product-card h5 {
  font-size: 1rem;
  font-weight: 700;
}
/* ===== BLOG PAGE ===== */
.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--color-dark);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--color-primary);
}
.filter_data {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.card.card-product {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: block;
  background-color: #fff;
  border: 2px outset  var(--color-primary);
}
.card.card-product:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-5px);
}

/* Blog Image */
.card-product .card-img-top {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-product img {
  width: 100%;
  height: 100;
  object-fit: contain;
  transition: transform 0.4s ease;
}
/* Blog Title */
.card-body {
  padding: 0.8rem 1rem 1.2rem;
}
.card-body h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.card-body h3 a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (max-width: 767px) {
  .filter_data {
    gap: 1rem;
  }
  .card-product img {
    height: 180px;
  }
}
.blog-container {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.blog-container::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--color-primary) 20%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}
.blog-container::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--color-secondary) 20%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.blog-meta {
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
}
.blog-meta span {
  margin: 0 10px;
  color: var(--color-para);
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}
.blog-meta i {
  margin-right: 6px;
  color: var(--color-primary);
}
.blog-content img {
  border-radius: 12px;
  display: block;
  max-width: 100%;
  margin: 2rem 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}
.blog-content img:hover {
  transform: scale(1.05) rotate(1deg);
}
.blog-content .text-center {
  display: flex;
  justify-content: center;
}
.blog-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text);
}
.blog-description p {
  margin-bottom: 1.5rem;
}
.blog-description h2,
.blog-description h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: var(--color-primary);
}
.blog-description a {
  color: var(--color-para);
  font-weight: 600;
  position: relative;
}
.blog-description a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(var(--color-primary));
  transition: width 0.3s;
}
.blog-description a:hover::after {
  width: 0;
}
.blog-description blockquote {
  border-left: 5px solid var(--color-primary);
  background: #fff8f2;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-dark);
  border-radius: 6px;
  position: relative;
}
.blog-description blockquote::before {
  content: "❝";
  font-size: 2rem;
  position: absolute;
  left: 10px;
  top: -10px;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .blog-title {
    font-size: 1.9rem;
  }
  .blog-description {
    font-size: 1rem;
  }
}
/* ================== CONTACT PAGE ================== */
.contact-section-one {
    padding: 60px 0;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}
.brudcrump {
    margin-bottom: 25px;
}
.brudcrump ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.brudcrump ul li,
.brudcrump ul li a {
    font-size: 16px;
    color: #362e2e;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.brudcrump ul li a:hover {
    color: var(--color-primary);
}
.brudcrump ul li i {
    margin: 0 8px;
    font-size: 13px;
    color: #999;
}
@media (max-width: 576px) {
    .brudcrump ul li,
    .brudcrump ul li a {
        max-width: 120px;
        font-size: 14px;
    }
}
.contact-area h4 {
    font-size: 35px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.contact-area p {
    font-size: 20px;
    color: var(  --color-para);
    margin-bottom: 20px;
}
.contact-form-area {
    padding: 25px;
    margin-bottom: 20px;
}
.contact-form-area .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}
.contact-form-area .form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: none;
}
.check-box-laifai label {
    font-size: 13px;
    color: var(--color-para);
}
.spotlight-btn {
    background: var(--btn-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
}
.spotlight-btn:hover {
    background: var(--btn-primary-hov);
}
iframe {
    border-radius: 10px;
    margin-top: 15px;
    border: none;
}
/* ================= Contact Details Area ================= */
.contact-details-area {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.contact-details-area:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.contact-details-area h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-main-heading);
    margin-bottom: 11px;
    border-left: 3px solid var(--color-secondary);
    padding-left: 8px;
}
.contact-details-area h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-main-heading);
    margin-top: 14px;
    margin-bottom: 6px;
}
.contact-details-area h6 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-main-heading);
    margin-top: 12px;
    margin-bottom: 8px;
}
.contact-details-area p {
    font-size: 16px;
    color: var(--color-para);
    margin-bottom: 9px;
    line-height: 1.5;
}
.contact-details-area a {
    color:  var(--color-para);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}
.contact-details-area a:hover {
    text-decoration: underline;
    color: var(--color-primary);
}
.contact-details-area .open-hours p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .contact-details-area {
        padding: 20px;
        margin-top: 20px;
    }
    .contact-details-area h4 {
        font-size: 16px;
    }
}
.pswd-inp {
  position: relative;
}
.pswd-inp input.form-control {
  padding-right: 40px;
}
.pswd-icon-inp {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;
  font-size: 1.1rem;
  z-index: 2;
}
.pswd-icon-inp:hover {
  color: var(--color-primary);
}
/* ================= Product Details ================= */
.product-details-info {
    font-family: var(--font-default);
}
.product-details-info .product-title {
    font-size: 30px;
    color: var(--color-main-heading);
    font-weight: 600;
    margin-bottom: 10px;
}
.product-details-info .short-desc {
    font-size: 20px;
    color: var(--color-sub-heading);
    margin-bottom: 15px;
}
.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}
.rating-section .stars i {
    color: var(--color-stars);
    font-size: 16px;
    margin-right: 2px;
}
.rating-section .review-count {
    color: #999;
}
.price-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.price-section .final-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--prize-color);
}
.price-section .original-price {
    font-size: 16px;
    color: #999;
}
.attribute-group h6 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}
.options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.options-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 4px;
    transition: 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: #333;
}
.options-list a.active-option {
    border-color: var(--color-primary);
    box-shadow: 0 0 5px rgba(255,63,108,0.4);
}
.option-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}
.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
}
.purchase-controls {
    gap: 15px;
}
.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}
.quantity-control button {
    background: var(--bg-light-color);
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}
.quantity-control button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.qty-display {
    width: 40px;
    text-align: center;
    font-weight: 500;
}
.buttons-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.buttons-group .btn {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}
.btn-primary {
  background-color: var(--btn-primary);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background-color: var(--btn-primary-hov);
}
.btn-secondary {
  background-color: #fff;
  color: #333;
  border: 1px solid #575757;
}
.btn-secondary:hover {
  background-color: #000;
  color: #fff;
}
.btn-disabled {
  background-color: var(--bg-light-color);
  color: #888;
  cursor: not-allowed;
  opacity: 0.7;
}
@media (max-width: 576px) {
  .product-details-info .product-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .product-details-info .short-desc {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .buttons-group {
    gap: 10px;
  }
  .buttons-group .btn {
    width: 100%;
    max-width: none;
    font-size: 15px;
    padding: 12px 20px;
  }
}
/* Meta Info */
.meta-info p {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}
.meta-info a {
    color: var(--color-primary);
    text-decoration: none;
}
.meta-info a:hover {
    text-decoration: underline;
}
/* RATING IN PRODUCT CARD */
.customer-review-section {
  border-top: 1px solid #eee;
  padding-top: 25px;
}
.customer-review-section .section-titlle {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-main-heading);
}
.review-summary {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.review-summary .stars {
  color: var(--color-stars);
  font-size: 14px;
}
.avg-rating {
  min-width: 120px;
  text-align: center;
}
.avg-rating h2 {
  font-size: 2.5rem;
  line-height: 1;
}
.rating-bars {
  flex: 1;
  min-width: 250px;
}
.rating-bar-item .progress {
  background-color: #eee;
  border-radius: 5px;
}
.rating-bar-item .progress-bar {
  border-radius: 5px;
  transition: width 0.4s ease;
}
.review-list {
  margin-top: 20px;
}
.review-item {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-section);
  font-size: 1rem;
}
.review-content h6 {
  font-size: 1rem;
  color: var(--color-main-heading);
}
.stars i {
  font-size: 1rem;
}

.review-media .media-thumb {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.review-media .media-image,
.review-media .media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  border-radius: 6px;
}
.review-media .media-video i {
  opacity: 0.9;
}
.pagination a {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: var(--color-section);
  text-decoration: none;
  transition: all 0.2s;
}
.pagination a.active {
  background: var(--color-primary);
  color: #fff;
}
.pagination a.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 768px) {
  .review-summary {
    flex-direction: column;
    align-items: flex-start;
  }
  .rating-bars {
    width: 100%;
    margin-top: 10px;
  }
}
#shop-details-sec-two .specifications-header {
  padding: 20px;
  text-align: center;
}
#shop-details-sec-two .specifications-header h3 {
  color: var(--color-primary);
  font-size: 25px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}
/* Tabs */
.custom-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}
.custom-tabs li {
  margin-right: 20px;
}
.custom-tabs .tab-link {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 0;
  cursor: pointer;
  position: relative;
  color: var(--color-section);
  transition: color 0.2s;
}
.custom-tabs .tab-link.active {
  color: var(--color-primary);
  font-weight: 600;
}
.custom-tabs .tab-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
}
.tab-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.envc-ck-editor {
  font-size: 14px;
  color: var(--color-text);
}
.envc-ck-editor p {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .custom-tabs {
    flex-wrap: wrap;
  }
  .custom-tabs li {
    margin-right: 10px;
  }
  .custom-tabs .tab-link {
    font-size: 13px;
    padding: 10px 0;
  }
}
/* ================= RELATED PRODUCTS ================= */
#related-products {
  background: #fff;
  padding: 40px 0;
}
.section-header-new {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.section-header-new h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: var(--color-primary);
  margin: 0;
}
.section-header-new .all-page-link {
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.section-header-new .all-page-link:hover {
  text-decoration: underline;
}
.related-product-card {
  border: 1px solid #eee;
  background: #fff;
  border-radius: 14px;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.related-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.related-product-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 1/1;
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
}
.related-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.related-product-card:hover .related-product-img img.main-img {
  transform: scale(1.07);
}
.related-product-img .hover-img {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.related-product-card:hover .hover-img {
  opacity: 1;
}
.related-product-card .p-3 {
  padding: 1rem 0.8rem !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.related-product-card h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-main-heading);
  line-height: 1.4;
  min-height: 38px;
}
.related-product-card h6 a {
  color: inherit;
  text-decoration: none;
}
.related-product-card h6 a:hover {
  color: var(--color-primary);
}
.stars {
  font-size: 13px;
  color: var(--color-stars);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.stars-review {
  color: var(--color-section);
  font-size: 12px;
}
.price-sec-product {
  margin-top: 3px;
  font-size: 15px;
  font-weight: 600;
  color: var(--prize-color);
}
.price-sec-product .text-decoration-line-through {
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text);
}
.related-product-card .btn {
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: var(--btn-primary);
  color: #fff;
}
.related-product-card .btn:hover {
  background: var(--btn-primary-hov);
}
@media (max-width: 991px) {
  .related-product-card h6 {
    font-size: 14px;
  }
  .related-product-card .btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}
@media (max-width: 575px) {
  .related-product-card {
    border-radius: 10px;
  }
  .related-product-card .p-3 {
    padding: 0.8rem !important;
  }
  .price-sec-product {
    font-size: 14px;
  }
  .stars-review {
    font-size: 11px;
  }
}
/* ================= SHARE POPUP ================= */
#share-popup .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  font-family: 'Poppins', sans-serif;
}
#share-popup .modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 20px;
}
#share-popup .modal-header .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #282c3f;
}
#share-popup .btn-close {
  font-size: 14px;
  color: #535766;
  opacity: 0.8;
}
#share-popup .modal-body {
  padding: 20px;
}
#share-popup .form-group input {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  color: #282c3f;
  width: 100%;
}
#share-popup .form-group input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 63, 108, 0.2);
}
#share-popup .form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #282c3f;
}
#share-popup .modal-footer {
  border-top: 1px solid #f0f0f0;
  padding: 15px 20px;
}
#share-popup .btn-secondary {
  background-color: #f5f5f6;
  color: #282c3f;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background 0.2s;
}
#share-popup .btn-secondary:hover {
  background-color: #e0e0e0;
}
#share-popup .btn-primary {
  background-color: var(--color-primary);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
}
#share-popup .btn-primary:hover {
  background-color: var(--color-secondary);
}
/* ===== DEALS SECTION STYLES ===== */
.home-showcaseSlider {
  width: 100%;
  /* height: 100%; */
  position: relative;
}
.swiper-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  /* height: 400px; */
  display: block;
  position: relative;
  border-radius: 12px;
}
.showcaseSlider-pagination {
  bottom: 10px !important;
}
/* Default bullets */
.home-showcaseSlider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6) !important;
  width: 10px !important;
  height: 10px !important;
  opacity: 0.8 !important;
  margin: 0 5px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}
/* Active bullet */
.home-showcaseSlider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff !important;
  opacity: 1 !important;
  width: 18px !important;
  border-radius: 10px !important;
}
.deal-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: block;
  background-color: var(--color-slider-deal);
}
.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.deal-image-full {
  display: block;
}
.deal-image-slider {
  height: 200px;
  display: block;
  border-radius: 8px;
}
.deal-title {
  font-family:var(--font-deal);
  font-size: 1rem;
}
.deal-desc {
  font-size: 1.5rem;
  font-family:var(--font-deal);
}
@media (max-width: 1024px) {
  .deal-image-slider {
    height: 180px;
  }
  .deal-title {
    font-size: 0.95rem;
  }
  .deal-desc {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .deal-image-slider {
    height: 150px;
  }
  .deal-title {
    font-size: 0.9rem;
  }
  .deal-desc {
    font-size: 1rem;
  }
  .deal-card {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .deal-image-slider {
    height: 130px;
  }
  .deal-title {
    font-size: 0.85rem;
  }
  .deal-desc {
    font-size: 0.9rem;
  }
}
.selector-radio {
  display:flex;
}
.selector-radio .selector-item{
  position:relative;
  display:flex;
}
.selector-radio .selector-item_radio{
  appearance:none;
  display:none;
}
.selector-radio .selector-item_label{
  position:relative;
  width:100%;
  text-align:center;
  border-radius:9999px;
  transition-duration:.5s;
  transition-property:transform, box-shadow;
  transform:none;
  box-shadow:0 0 4px rgba(0,0,0,.5),0 2px 4px rgba(0,0,0,.5);
  padding: 7px 15px;
  margin-right: 10px;
}
.selector-radio .selector-item_radio:checked + .selector-item_label{
  background-color:var(--color-primary);
  color:#fff;
  transform:translateY(-2px);
}