:root {
  --primary-blue: #160e82;
  --primary-dark: #2b1823;
  --primary-soft: #fff4f8;
  --primary-light: #ffe7f0;
  --primary-hover: #f30b6c;
  --border-color: rgba(243, 11, 108, 0.18);
  --text-dark: #2b1823;
  --text-muted: #7d6672;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: #fffafc;
}

/* Top Moving Offer Bar */
.top-offer-bar {
  background: linear-gradient(90deg, #f30b6c, #160e82, #f30b6c);
  color: #fff;
  height: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(243, 11, 108, 0.18);
}

.offer-marquee {
  width: 100%;
  overflow: hidden;
}

.offer-track {
  display: inline-flex;
  align-items: center;
  gap: 70px;
  animation: moveOfferText 22s linear infinite;
  will-change: transform;
}

.offer-track span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 32px;
  flex-shrink: 0;
  letter-spacing: 0.2px;
}

@keyframes moveOfferText {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.top-offer-bar:hover .offer-track {
  animation-play-state: paused;
}

/* Main Header */
.main-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(243, 11, 108, 0.06);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.logo img {
  width: 190px;
  height: auto;
  display: block;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
@media (max-width: 767px) {
  .mobile-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
}

    .mobile-header .mobile-search-btn {
        padding: 0;
        border: 0;
        background: transparent;
        color: inherit;
        font-size: 20px;
        cursor: pointer;
    }

    .mobile-header .mobile-search-box {
        display: none;
        padding: 10px 0 12px;
    }

    .mobile-header .mobile-search-box.active {
        display: block;
    }

    .mobile-header .mobile-search-box form {
        display: flex;
        align-items: center;
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 6px;
        overflow: hidden;
        background: #fff;
    }

    .mobile-header .mobile-search-box input {
        width: 100%;
        height: 42px;
        padding: 0 14px;
        border: 0;
        outline: none;
        font-size: 14px;
        background: transparent;
    }

    .mobile-header .mobile-search-box button {
        width: 46px;
        height: 42px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }
}
.desktop-nav > li > a {
  text-decoration: none;
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  padding: 30px 0;
  position: relative;
  transition: 0.3s ease;
}

.desktop-nav > li > a:hover {
  color: var(--primary-blue);
}

.desktop-nav > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f30b6c, #160e82);
  transition: 0.3s ease;
}

.desktop-nav > li:hover > a::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Search Box */
.search-box {
  width: 230px;
  height: 46px;
  border: 1px solid rgba(243, 11, 108, 0.22);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 10px;
  background: #fff7fa;
  transition: 0.3s ease;
}

.search-box:hover,
.search-box:focus-within {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(243, 11, 108, 0.12);
  background: #fff;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: var(--primary-dark);
  background: transparent;
      margin: -14px;
}

.search-box input::placeholder {
  color: #b58199;
}

.search-box i,
.header-icon {
  color: var(--primary-blue);
  font-size: 23px;
  text-decoration: none;
  line-height: 1;
  position: relative;
  transition: 0.3s ease;
}

.header-icon:hover {
  color: var(--primary-hover);
  transform: translateY(-2px);
}

/* New Badge */
.new-badge {
  position: absolute;
  top: -11px;
  right: -11px;
  background: linear-gradient(135deg, #f30b6c, #160e82);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(243, 11, 108, 0.28);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  left: 0;
  top: 112px;
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 32px 0 38px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 998;
  box-shadow: 0 14px 35px rgba(243, 11, 108, 0.08);
}

.nav-item-has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 130px);
  gap: 30px;
}

.category-card {
  text-align: center;
  cursor: pointer;
}

.category-img {
  width: 130px;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffe7f0;
  position: relative;
  box-shadow: 0 12px 28px rgba(243, 11, 108, 0.12);
  transition: 0.3s ease;
}

.category-card:hover .category-img {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(243, 11, 108, 0.18);
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Plus Icon */
.plus-icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(243, 11, 108, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.category-card h6 {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-dark);
  transition: 0.3s ease;
}

.category-card:hover h6 {
  color: var(--primary-blue);
}

/* Mega Right Links */
.mega-links {
  max-width: 330px;
  margin-left: auto;
}

.mega-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(243, 11, 108, 0.16);
  text-decoration: none;
  color: var(--primary-dark);
  transition: 0.3s ease;
}

.mega-link-item:hover {
  color: var(--primary-blue);
  transform: translateX(4px);
}

.mega-link-item h5 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 800;
}

.mega-link-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.mega-link-item i {
  font-size: 22px;
  color: var(--primary-blue);
}

/* Mobile Header */
.mobile-header {
  display: none;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 6px 18px rgba(243, 11, 108, 0.06);
}

.mobile-header-inner {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-btn {
  border: none;
  background: transparent;
  color: var(--primary-blue);
  font-size: 27px;
  padding: 0;
  line-height: 1;
}

.mobile-logo img {
    width: 100%;
    max-width: 120px;
}
.mobile-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-icons a {
  color: var(--primary-blue);
  font-size: 22px;
  text-decoration: none;
  line-height: 1;
  transition: 0.3s ease;
}

.mobile-icons a:hover {
  color: var(--primary-hover);
}

/* Offcanvas Mobile Menu */
.offcanvas {
  max-width: 92%;
  background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
}

.offcanvas-header {
  height: 58px;
  border-bottom: 1px solid var(--border-color);
  justify-content: center;
  position: relative;
  background: #fff;
}

.offcanvas-header .btn-close {
  position: absolute;
  left: 18px;
  top: 18px;
  box-shadow: none;
}

.offcanvas-logo img {
    width: 128px;
}

.offcanvas-cart {
  position: absolute;
  right: 18px;
  top: 17px;
  color: var(--primary-blue);
  font-size: 22px;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(243, 11, 108, 0.14);
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.mobile-menu-list li a:hover {
  color: var(--primary-blue);
  padding-left: 8px;
}

/* Mobile Login Button */
.mobile-login-btn {
  width: 260px;
  max-width: 100%;
  height: 44px;
  margin: 50px auto 0;
  background: linear-gradient(135deg, #f30b6c, #160e82);
  color: #fff;
  border: none;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(243, 11, 108, 0.24);
  transition: 0.3s ease;
}

.mobile-login-btn:hover {
  background: linear-gradient(135deg, #160e82, #f30b6c);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1199px) {
  .desktop-nav {
    gap: 22px;
  }

  .search-box {
    width: 210px;
  }

  .category-grid {
    grid-template-columns: repeat(4, 130px);
  }
}

@media (max-width: 991px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .main-header {
    top: 0;
  }
}

@media (max-width: 767px) {
  .top-offer-bar {
    height: 28px;
  }

  .offer-track {
    gap: 45px;
    animation-duration: 18s;
  }

  .offer-track span {
    font-size: 12px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .mobile-header-inner {
    height: 56px;
  }

  .mobile-logo img {
    width: 100%;
    max-width: 120px;
}

  .mobile-icons {
    gap: 13px;
  }

  .mobile-icons a {
    font-size: 21px;
  }

  .mobile-menu-btn {
    font-size: 26px;
  }
}

    /*-------------------------------banner css----------------------------------------*/

    /* Girls Collection Premium Hero Slider */
:root {
  --girl-primary: #f30b6c;
  --girl-dark: #2b1823;
  --girl-light: #fff4f8;
  --girl-soft: #ffe7f0;
  --girl-cream: #fffaf5;
  --girl-accent: #160e82;
  --girl-muted: #7d6672;
  --girl-border: rgba(243, 11, 108, 0.18);
}

/* Main Slider */
.fashion-hero-slider {
  width: 100%;
  overflow: hidden;
  background: var(--girl-light);
}

.hero-slide {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.min-vh-custom {
  min-height: 620px;
}

/* Background Decorative Shapes */
.hero-slide::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  right: -140px;
  top: -130px;
  background: rgba(243, 11, 108, 0.12);
}

.hero-slide::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  left: -95px;
  bottom: -95px;
  background: rgba(243, 11, 108, 0.18);
}

/* Slide Backgrounds */
.hero-slide-one {
  background: linear-gradient(
    120deg,
    #fff4f8 0%,
    #ffffff 45%,
    #ffe6ef 100%
  );
}

.hero-slide-two {
  background: linear-gradient(
    120deg,
    #fffaf5 0%,
    #ffffff 45%,
    #ffeaf2 100%
  );
}

.hero-slide-three {
  background: linear-gradient(
    120deg,
    #fff1f6 0%,
    #ffffff 48%,
    #f9e7ff 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: 40px 0;
  animation: textFadeUp 0.9s ease both;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f30b6c, #160e82);
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(243, 11, 108, 0.25);
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 900;
  color: var(--girl-dark);
  margin-bottom: 18px;
  letter-spacing: -1.8px;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--girl-muted);
  max-width: 500px;
  margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #f30b6c, #160e82);
  color: #fff;
  border: 2px solid transparent;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.3s ease;
  box-shadow: 0 14px 32px rgba(243, 11, 108, 0.25);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #160e82, #f30b6c);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(243, 11, 108, 0.32);
}

.hero-btn-outline {
  background: #fff;
  color: var(--girl-primary);
  border: 2px solid var(--girl-primary);
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.3s ease;
}

.hero-btn-outline:hover {
  background: var(--girl-primary);
  color: #fff;
  transform: translateY(-3px);
}

/* Image Area */
.hero-image-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: imageFadeZoom 1s ease both;
}

.hero-circle {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd7e7, #160e82);
  opacity: 0.95;
  box-shadow: 0 35px 90px rgba(243, 11, 108, 0.25);
}

.hero-main-img {
  position: relative;
  width: 360px;
  height: 470px;
  object-fit: cover;
  border-radius: 210px 210px 28px 28px;
  box-shadow: 0 30px 80px rgba(75, 30, 52, 0.22);
  border: 8px solid #fff;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--girl-border);
  border-radius: 18px;
  padding: 13px 18px;
  box-shadow: 0 18px 40px rgba(80, 36, 56, 0.13);
  animation: floatCard 3s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--girl-primary);
  line-height: 1.1;
}

.floating-card span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--girl-muted);
  margin-top: 4px;
}

.card-one {
  top: 80px;
  left: 35px;
}

.card-two {
  right: 30px;
  bottom: 90px;
  animation-delay: 0.5s;
}

/* Carousel Controls */
.hero-control {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.hero-control span {
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--girl-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(80, 36, 56, 0.15);
  transition: 0.3s ease;
}

.hero-control span:hover {
  background: var(--girl-primary);
  color: #fff;
}

.carousel-control-prev {
  left: 24px;
}

.carousel-control-next {
  right: 24px;
}

.hero-control i {
  font-size: 22px;
}

/* Indicators */
.hero-indicators {
  bottom: 24px;
  margin-bottom: 0;
}

.hero-indicators button {
  width: 26px;
  height: 5px;
  border-radius: 20px;
  background-color: var(--girl-primary);
  opacity: 0.25;
  border: none;
}

.hero-indicators .active {
  width: 42px;
  opacity: 1;
}

/* Animations */
@keyframes textFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageFadeZoom {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(25px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 50px;
  }

  .hero-main-img {
    width: 330px;
    height: 440px;
  }

  .hero-circle {
    width: 390px;
    height: 390px;
  }
}

@media (max-width: 991px) {
  .hero-slide,
  .min-vh-custom {
    min-height: auto;
  }

  .hero-slide {
    padding: 55px 0 80px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 20px 0 35px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrap {
    height: 450px;
  }

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

  .hero-main-img {
    width: 300px;
    height: 390px;
  }

  .hero-circle {
    width: 350px;
    height: 350px;
  }

  .card-one {
    left: 70px;
    top: 60px;
  }

  .card-two {
    right: 65px;
    bottom: 65px;
  }
}

@media (max-width: 767px) {
  .hero-slide {
    padding: 45px 0 75px;
  }

  .hero-content h1 {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-tag {
    font-size: 12px;
    padding: 8px 15px;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    padding: 12px 22px;
    font-size: 14px;
  }

  .hero-image-wrap {
    height: 380px;
  }

  .hero-main-img {
    width: 245px;
    height: 330px;
    border-width: 6px;
  }

  .hero-circle {
    width: 285px;
    height: 285px;
  }

  .floating-card {
    padding: 10px 13px;
  }

  .floating-card strong {
    font-size: 15px;
  }

  .floating-card span {
    font-size: 11px;
  }

  .card-one {
    left: 10px;
    top: 55px;
  }

  .card-two {
    right: 10px;
    bottom: 55px;
  }

  .hero-control {
    display: none;
  }

  .hero-indicators {
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 31px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    width: 100%;
    max-width: 240px;
  }

  .hero-image-wrap {
    height: 340px;
  }

  .hero-main-img {
    width: 220px;
    height: 300px;
  }

  .hero-circle {
    width: 255px;
    height: 255px;
  }
}
/*----------------------------------------------------------------------------------------*/
/* ================================
   Shop Benefits Section
================================ */

.shop-benefits-section {
  width: 100%;
  background: #fdeaf1;
  padding: 14px 0;
}

.shop-benefits-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 28px;
}

.shop-benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 45px;
}

.shop-benefit-icon {
  flex: 0 0 auto;
  color: #2f2b2b;
  font-size: 27px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-benefit-content {
  text-align: left;
}

.shop-benefit-content h4 {
  margin: 0;
  color: #1f1618;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}

.shop-benefit-content p {
  margin: 3px 0 0;
  color: #61575b;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1199px) {
  .shop-benefits-container {
    max-width: 100%;
    gap: 20px;
  }

  .shop-benefit-content h4 {
    font-size: 15px;
  }

  .shop-benefit-content p {
    font-size: 13px;
  }

  .shop-benefit-icon {
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  .shop-benefits-section {
    padding: 18px 0;
  }

  .shop-benefits-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }

  .shop-benefit-item {
    justify-content: flex-start;
    padding-left: 20px;
  }
}

@media (max-width: 575px) {
  .shop-benefits-section {
    padding: 18px 0;
  }

  .shop-benefits-container {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 18px;
  }

  .shop-benefit-item {
    justify-content: flex-start;
    padding-left: 0;
    gap: 13px;
  }

  .shop-benefit-icon {
    width: 34px;
    font-size: 25px;
  }

  .shop-benefit-content h4 {
    font-size: 15px;
  }

  .shop-benefit-content p {
    font-size: 13px;
  }
}


/* ================================
   Women Collection Product Section
   Complete CSS - No JS Required
================================ */

.women-product-section {
  width: 100%;
  padding: 85px 0;
  background: #ffffff;
  overflow: hidden;
}

/* Main Product Box */
.women-product-box {
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0 0 24px;
  min-height: 100%;
  box-shadow: 0 18px 45px rgba(43, 24, 35, 0.05);
  transition: 0.35s ease;
  opacity: 0;
  transform: translateY(35px);
  animation: womenBoxFadeUp 0.85s ease forwards;
}

/* Animation Delay */
.women-product-section .col-lg-4:nth-child(1) .women-product-box {
  animation-delay: 0.1s;
}

.women-product-section .col-lg-4:nth-child(2) .women-product-box {
  animation-delay: 0.25s;
}

.women-product-section .col-lg-4:nth-child(3) .women-product-box {
  animation-delay: 0.4s;
}

.women-product-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(243, 11, 108, 0.12);
  border-color: rgba(243, 11, 108, 0.18);
}

/* Box Animation */
@keyframes womenBoxFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Heading */
.section-head {
  padding: 24px 28px 14px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 16px;
}

.section-head h3 {
  position: relative;
  margin: 0;
  color: #2b1823;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.section-head h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 62px;
  height: 2px;
  background: linear-gradient(90deg, #f30b6c, #160e82);
}

/* Product List Item */
.product-list-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 28px;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Left Hover Line */
.product-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: linear-gradient(180deg, #f30b6c, #160e82);
  opacity: 0;
  transform: scaleY(0);
  transition: 0.35s ease;
}

.product-list-item:hover {
  background: #fff7fa;
}

.product-list-item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

/* Product Image */
.product-thumb {
  width: 96px;
  height: 120px;
  min-width: 96px;
  background: #f8f8f8;
  overflow: hidden;
  transition: 0.35s ease;
}

.product-list-item:hover .product-thumb {
  transform: scale(1.04);
  box-shadow: 0 16px 30px rgba(43, 24, 35, 0.12);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.product-list-item:hover .product-thumb img {
  transform: scale(1.08);
}

/* Product Info */
.product-info {
  min-width: 0;
}

.product-info h4 {
  margin: 0 0 7px;
  color: #111111;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 230px;
  transition: 0.3s ease;
}

.product-list-item:hover .product-info h4 {
  color: #f30b6c;
}

/* Rating */
.rating {
  color: #f5a300;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
}

/* Price */
.price {
  color: #111111;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.old-price {
  color: #b9b9b9;
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 700;
}

/* ================================
   Optional Smooth Scroll Animation
   Modern Browser Support
================================ */

@supports (animation-timeline: view()) {
  .women-product-box {
    animation: womenScrollFadeUp linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 30%;
  }

  .women-product-section .col-lg-4:nth-child(1) .women-product-box,
  .women-product-section .col-lg-4:nth-child(2) .women-product-box,
  .women-product-section .col-lg-4:nth-child(3) .women-product-box {
    animation-delay: 0s;
  }
}

@keyframes womenScrollFadeUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   Responsive CSS
================================ */

@media (max-width: 1199px) {
  .section-head {
    padding: 22px 22px 14px;
  }

  .product-list-item {
    padding: 15px 22px;
    gap: 18px;
  }

  .product-info h4 {
    max-width: 190px;
    font-size: 15px;
  }

  .product-thumb {
    width: 88px;
    height: 112px;
    min-width: 88px;
  }
}

@media (max-width: 991px) {
  .women-product-section {
    padding: 70px 0;
  }

  .women-product-box {
    max-width: 520px;
    margin: 0 auto;
  }

  .product-info h4 {
    max-width: 260px;
  }

  .women-product-section .col-lg-4:nth-child(1) .women-product-box {
    animation-delay: 0.1s;
  }

  .women-product-section .col-lg-4:nth-child(2) .women-product-box {
    animation-delay: 0.2s;
  }

  .women-product-section .col-lg-4:nth-child(3) .women-product-box {
    animation-delay: 0.3s;
  }
}

@media (max-width: 767px) {
  .women-product-section {
    padding: 55px 0;
  }

  .section-head {
    padding: 20px 20px 14px;
  }

  .section-head h3 {
    font-size: 19px;
    letter-spacing: 1px;
  }

  .product-list-item {
    padding: 14px 20px;
    gap: 16px;
  }

  .product-thumb {
    width: 82px;
    height: 105px;
    min-width: 82px;
  }

  .product-info h4 {
    font-size: 14px;
    max-width: 210px;
  }

  .rating {
    font-size: 13px;
  }

  .price {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .women-product-section {
    padding: 45px 0;
  }

  .women-product-box {
    border-radius: 0;
  }

  .section-head {
    padding: 18px 16px 12px;
  }

  .section-head h3 {
    font-size: 18px;
  }

  .product-list-item {
    padding: 14px 16px;
    gap: 14px;
  }

  .product-thumb {
    width: 76px;
    height: 98px;
    min-width: 76px;
  }

  .product-info h4 {
    max-width: 175px;
    font-size: 13.5px;
  }

  .rating {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .price {
    font-size: 14px;
  }

  .old-price {
    margin-right: 5px;
  }
}

@media (max-width: 360px) {
  .product-info h4 {
    max-width: 145px;
  }

  .product-thumb {
    width: 70px;
    height: 92px;
    min-width: 70px;
  }

  .product-list-item {
    gap: 12px;
  }
}
/*-------------------------------------------about section----------------------------------------*/
/* ================================
   About Us Section - Girls Collection
   Complete Premium Responsive CSS
================================ */

/* Main About Section */
.about-girls-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(243, 11, 108, 0.10) 0%, transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(22, 14, 130, 0.14) 0%, transparent 30%),
    linear-gradient(135deg, #fffaf3 0%, #ffffff 42%, #f7f1ff 100%);
  overflow: hidden;
}

/* Large Decorative Background Circle */
.about-girls-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: 90px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 232, 240, 0.85),
    rgba(244, 235, 255, 0.9)
  );
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}

.about-girls-section .container {
  position: relative;
  z-index: 2;
}

/* Decorative Floating Shapes */
.about-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.shape-one {
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(243, 11, 108, 0.12);
  border-radius: 42% 58% 70% 30% / 42% 42% 58% 58%;
  top: 70px;
  left: 55px;
  box-shadow: 0 25px 70px rgba(243, 11, 108, 0.08);
  animation: aboutBlobMove 6s ease-in-out infinite;
}

.shape-two {
  width: 170px;
  height: 170px;
  background: rgba(247, 241, 255, 0.9);
  border: 1px solid rgba(22, 14, 130, 0.16);
  border-radius: 60% 40% 35% 65% / 50% 55% 45% 50%;
  bottom: 70px;
  right: 90px;
  box-shadow: 0 25px 70px rgba(22, 14, 130, 0.10);
  animation: aboutBlobMove 7s ease-in-out infinite reverse;
}

/* Image Area */
.about-image-area {
  position: relative;
  min-height: 610px;
  max-width: 560px;
  margin: 0 auto;
}

.about-main-img {
  position: absolute;
  left: 0;
  top: 35px;
  width: 390px;
  height: 500px;
  border-radius: 210px 210px 28px 28px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(80, 36, 56, 0.18);
  border: 10px solid #ffffff;
  z-index: 2;
  transition: 0.45s ease;
}

.about-main-img:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 45px 95px rgba(80, 36, 56, 0.22);
}

.about-main-img img,
.about-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-small-img {
  position: absolute;
  right: 0;
  bottom: 25px;
  width: 260px;
  height: 330px;
  border-radius: 28px;
  overflow: hidden;
  border: 8px solid #ffffff;
  box-shadow: 0 30px 70px rgba(243, 11, 108, 0.18);
  z-index: 3;
  transition: 0.45s ease;
}

.about-small-img:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 40px 85px rgba(243, 11, 108, 0.22);
}

/* Floating Collection Badge */
.about-floating-badge {
  position: absolute;
  right: 45px;
  top: 55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f30b6c, #160e82);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(243, 11, 108, 0.32);
  z-index: 4;
  animation: aboutFloat 3s ease-in-out infinite;
}

.about-floating-badge span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.about-floating-badge strong {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

/* Customer Card */
.about-experience-card {
  position: absolute;
  left: 35px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(243, 11, 108, 0.16);
  border-radius: 18px;
  padding: 18px 26px;
  box-shadow: 0 22px 45px rgba(80, 36, 56, 0.12);
  z-index: 5;
  animation: aboutFloat 3.5s ease-in-out infinite;
}

.about-experience-card h3 {
  margin: 0;
  color: #f30b6c;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.about-experience-card p {
  margin: 6px 0 0;
  color: #7d6672;
  font-size: 13px;
  font-weight: 700;
}

/* Content Area */
.about-content {
  max-width: 620px;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #f30b6c;
  border: 1px solid rgba(243, 11, 108, 0.18);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(243, 11, 108, 0.08);
}

.about-content h2 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 900;
  color: #2b1823;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.about-content h2 span {
  color: #f30b6c;
  position: relative;
  z-index: 1;
}

.about-content h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 9px;
  background: rgba(243, 11, 108, 0.35);
  z-index: -1;
  border-radius: 20px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #7d6672;
  margin-bottom: 16px;
}

/* Features Grid */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 32px 0 34px;
}

.about-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(243, 11, 108, 0.14);
  border-radius: 18px;
  padding: 18px;
  transition: 0.35s ease;
}

.about-feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(243, 11, 108, 0.12);
  border-color: rgba(243, 11, 108, 0.28);
  background: #ffffff;
}

.feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f30b6c, #160e82);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 12px 25px rgba(243, 11, 108, 0.22);
}

.about-feature-box h5 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 850;
  color: #2b1823;
}

.about-feature-box p {
  margin: 0;
  font-size: 13px;
  color: #7d6672;
  line-height: 1.5;
}

/* Buttons */
.about-btn-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.about-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f30b6c, #160e82);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(243, 11, 108, 0.25);
    nsition: 0.3s ease;
    border-color: #f30b6c;
}

.about-primary-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  background: linear-gradient(135deg, #160e82, #f30b6c);
  box-shadow: 0 20px 42px rgba(243, 11, 108, 0.32);
}

.about-link-btn {
  color: #2b1823;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.about-link-btn:hover {
  color: #f30b6c;
  gap: 12px;
}

/* Floating Animations */
@keyframes aboutFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes aboutBlobMove {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

/* Scroll Reveal Animations */
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: 0.9s ease;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ================================
   Responsive CSS
================================ */

@media (max-width: 1199px) {
  .about-content h2 {
    font-size: 46px;
  }

  .about-main-img {
    width: 360px;
    height: 470px;
  }

  .about-small-img {
    width: 240px;
    height: 310px;
  }

  .about-image-area {
    max-width: 530px;
  }
}

@media (max-width: 991px) {
  .about-girls-section {
    padding: 85px 0;
  }

  .about-image-area {
    min-height: 560px;
    max-width: 520px;
  }

  .about-content {
    max-width: 100%;
    text-align: center;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .about-content h2 span::after {
    bottom: 3px;
  }

  .about-text {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-btn-wrap {
    justify-content: center;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(45px);
  }

  .reveal-left.active,
  .reveal-right.active {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .about-girls-section {
    padding: 70px 0;
    background:
      radial-gradient(circle at 10% 12%, rgba(243, 11, 108, 0.10) 0%, transparent 32%),
      radial-gradient(circle at 90% 82%, rgba(22, 14, 130, 0.12) 0%, transparent 34%),
      linear-gradient(135deg, #fffaf3 0%, #ffffff 48%, #f8f2ff 100%);
  }

  .about-girls-section::before {
    background-size: 34px 34px;
    opacity: 0.45;
  }

  .about-girls-section::after {
    width: 330px;
    height: 330px;
    right: -190px;
    top: 150px;
  }

  .shape-one {
    width: 120px;
    height: 120px;
    top: 35px;
    left: 10px;
  }

  .shape-two {
    width: 110px;
    height: 110px;
    bottom: 35px;
    right: 15px;
  }

  .about-image-area {
    min-height: 500px;
    max-width: 390px;
  }

  .about-main-img {
    width: 280px;
    height: 380px;
    border-width: 7px;
    left: 0;
    top: 30px;
  }

  .about-small-img {
    width: 190px;
    height: 245px;
    border-width: 6px;
    right: 0;
    bottom: 35px;
  }

  .about-floating-badge {
    width: 105px;
    height: 105px;
    right: 15px;
    top: 40px;
  }

  .about-floating-badge span {
    font-size: 12px;
  }

  .about-floating-badge strong {
    font-size: 15px;
  }

  .about-experience-card {
    left: 10px;
    bottom: 25px;
    padding: 15px 20px;
  }

  .about-experience-card h3 {
    font-size: 28px;
  }

  .about-content h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-feature-box {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .about-girls-section {
    padding: 60px 0;
  }

  .about-image-area {
    min-height: 440px;
    max-width: 320px;
  }

  .about-main-img {
    width: 230px;
    height: 325px;
  }

  .about-small-img {
    width: 155px;
    height: 210px;
    bottom: 45px;
  }

  .about-floating-badge {
    width: 92px;
    height: 92px;
    right: 5px;
  }

  .about-experience-card {
    padding: 12px 16px;
  }

  .about-experience-card h3 {
    font-size: 24px;
  }

  .about-experience-card p {
    font-size: 11px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 12px;
    padding: 8px 16px;
  }

  .about-primary-btn,
  .about-link-btn {
    width: 100%;
    justify-content: center;
  }

  .about-feature-box {
    padding: 16px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
  }
}

/*------------------------------------------------------------*/
/* ================================
   Girls Shop By Collection Section
   CSS Only Animation - Responsive
================================ */

.girls-collection-section {
  width: 100%;
  padding: 85px 0 90px;
  background: #ffffff;
  overflow: hidden;
}

.girls-section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 34px;
  opacity: 0;
  transform: translateY(25px);
  animation: girlsFadeUp 0.8s ease forwards;
}

.girls-section-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4f8;
  color: #f30b6c;
  border: 1px solid rgba(243, 11, 108, 0.16);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 13px;
}

.girls-section-heading h2 {
  margin: 0;
  color: #2b1823;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.girls-section-heading p {
  margin: 10px auto 0;
  color: #7d6672;
  font-size: 15px;
  line-height: 1.7;
}

/* Grid */
.girls-collection-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 18px;
}

/* Card */
.girls-collection-card {
  text-decoration: none;
  color: #2b1823;
  text-align: center;
  display: block;
  opacity: 0;
  transform: translateY(35px);
  animation: girlsFadeUp 0.85s ease forwards;
}

.girls-collection-card:nth-child(1) { animation-delay: 0.05s; }
.girls-collection-card:nth-child(2) { animation-delay: 0.10s; }
.girls-collection-card:nth-child(3) { animation-delay: 0.15s; }
.girls-collection-card:nth-child(4) { animation-delay: 0.20s; }
.girls-collection-card:nth-child(5) { animation-delay: 0.25s; }
.girls-collection-card:nth-child(6) { animation-delay: 0.30s; }
.girls-collection-card:nth-child(7) { animation-delay: 0.35s; }
.girls-collection-card:nth-child(8) { animation-delay: 0.40s; }
.girls-collection-card:nth-child(9) { animation-delay: 0.45s; }
.girls-collection-card:nth-child(10) { animation-delay: 0.50s; }
.girls-collection-card:nth-child(11) { animation-delay: 0.55s; }
.girls-collection-card:nth-child(12) { animation-delay: 0.60s; }

/* Image Box */
.collection-img-box {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f7;
  box-shadow: 0 14px 34px rgba(43, 24, 35, 0.06);
  transition: 0.45s ease;
}

.collection-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(43, 24, 35, 0.10) 100%
  );
  opacity: 0;
  transition: 0.35s ease;
  z-index: 3;
  pointer-events: none;
}

.collection-img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.55s ease, transform 0.65s ease;
}

/* Front / Back Image Smooth Hover */
.front-img {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.back-img {
  opacity: 0;
  transform: scale(1.06);
  z-index: 2;
}

/* Hover Effect */
.girls-collection-card:hover .collection-img-box {
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(243, 11, 108, 0.18);
}

.girls-collection-card:hover .collection-img-box::after {
  opacity: 1;
}

.girls-collection-card:hover .front-img {
  opacity: 0;
  transform: scale(1.04);
}

.girls-collection-card:hover .back-img {
  opacity: 1;
  transform: scale(1);
}

/* Plus Icon */
.plus-btn {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #f30b6c;
  border: 1px solid rgba(243, 11, 108, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  z-index: 4;
  transition: 0.35s ease;
}

.girls-collection-card:hover .plus-btn {
  background: #f30b6c;
  color: #ffffff;
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 10px 24px rgba(243, 11, 108, 0.28);
}

/* Badge */
.discount-badge {
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 4;
  background: linear-gradient(135deg, #f30b6c, #160e82);
  color: #ffffff;
  padding: 5px 11px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(243, 11, 108, 0.26);
}

/* Title */
.girls-collection-card h4 {
  margin: 12px 0 0;
  color: #2b1823;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  transition: 0.3s ease;
}

.girls-collection-card:hover h4 {
  color: #f30b6c;
  transform: translateY(-2px);
}

/* CSS Only Entry Animation */
@keyframes girlsFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern CSS Scroll Animation */
@supports (animation-timeline: view()) {
  .girls-section-heading,
  .girls-collection-card {
    animation: girlsScrollFade linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 28%;
  }

  .girls-collection-card:nth-child(n) {
    animation-delay: 0s;
  }
}

@keyframes girlsScrollFade {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   Responsive
================================ */

@media (max-width: 1199px) {
  .girls-collection-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 18px;
  }

  .collection-img-box {
    height: 225px;
  }
}

@media (max-width: 991px) {
  .girls-collection-section {
    padding: 70px 0;
  }

  .girls-collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .girls-section-heading h2 {
    font-size: 29px;
  }
}

@media (max-width: 767px) {
  .girls-collection-section {
    padding: 55px 0;
  }

  .girls-collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }

  .collection-img-box {
    height: 235px;
    border-radius: 12px;
  }

  .girls-section-heading {
    margin-bottom: 26px;
  }

  .girls-section-heading h2 {
    font-size: 25px;
  }

  .girls-section-heading p {
    font-size: 14px;
  }

  .girls-collection-card h4 {
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .girls-collection-grid {
    gap: 22px 12px;
  }

  .collection-img-box {
    height: 215px;
  }

  .plus-btn {
    width: 22px;
    height: 22px;
    font-size: 16px;
  }

  .discount-badge {
    font-size: 10px;
    padding: 4px 9px;
  }
}

@media (max-width: 380px) {
  .collection-img-box {
    height: 190px;
  }

  .girls-section-heading h2 {
    font-size: 23px;
  }
}

/*----------------------------------------------------------*/
/* ================================
   Barbie Tiny Girl Slider Section
   Complete Responsive CSS
================================ */

.barbie-collab-section {
  position: relative;
  width: 100%;
  min-height: 635px;
  padding: 55px 0 65px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(243, 11, 108, 0.10) 0%, transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(22, 14, 130, 0.14) 0%, transparent 30%),
    linear-gradient(135deg, #fffaf3 0%, #ffffff 42%, #f7f1ff 100%);
}

/* Background Moving Blobs */
.barbie-bg-animation {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.barbie-bg-animation::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(243, 11, 108, 0.12);
  border-radius: 42% 58% 70% 30% / 42% 42% 58% 58%;
  top: 70px;
  left: 55px;
  box-shadow: 0 25px 70px rgba(243, 11, 108, 0.08);
  animation: aboutBlobMove 6s ease-in-out infinite;
}

.barbie-bg-animation::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: rgba(247, 241, 255, 0.9);
  border: 1px solid rgba(22, 14, 130, 0.16);
  border-radius: 60% 40% 35% 65% / 50% 55% 45% 50%;
  bottom: 70px;
  right: 90px;
  box-shadow: 0 25px 70px rgba(22, 14, 130, 0.10);
  animation: aboutBlobMove 7s ease-in-out infinite reverse;
}

@keyframes aboutBlobMove {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(18px, -16px) scale(1.05) rotate(8deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

/* Container */
.barbie-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 46px;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  gap: 34px;
}

/* Left Content */
.barbie-content {
  color: #2b1823;
  max-width: 540px;
  animation: barbieFadeLeft 0.9s ease forwards;
}

.barbie-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f30b6c;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.barbie-content h2 {
  margin: 0;
  color: #2b1823;
  font-size: clamp(44px, 5.1vw, 74px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1px;
  font-family: Georgia, "Times New Roman", serif;
}

.barbie-content h2 span {
  display: inline-block;
  color: #f30b6c;
  font-size: 0.78em;
  transform: translateY(-3px);
}

.barbie-content p {
  max-width: 390px;
  margin: 22px 0 34px;
  color: #6f5d68;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.barbie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 48px;
  padding: 0 28px;
  border-radius: 50px;
  background: #f30b6c;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(243, 11, 108, 0.20);
  transition: 0.35s ease;
}

.barbie-btn:hover {
  color: #ffffff;
  background: #2b1823;
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(43, 24, 35, 0.20);
}

/* Slider Wrapper */
.barbie-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 30px;
}

.barbie-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 0 8px;
}

.barbie-slider::-webkit-scrollbar {
  display: none;
}

/* Product Card */
.barbie-product-card {
  flex: 0 0 calc(33.333% - 19px);
  min-width: 0;
  color: #2b1823;
  animation: barbieFadeUp 0.9s ease forwards;
}

.barbie-img-box {
  position: relative;
  width: 100%;
  height: 394px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8e6ef;
  box-shadow: 0 24px 60px rgba(243, 11, 108, 0.14);
  transition: 0.45s ease;
}

.barbie-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(43, 24, 35, 0.12) 100%
  );
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: 0.35s ease;
}

.barbie-img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.75s ease;
}

/* Smooth Image Change - No Flip */
.barbie-img-box .front-img {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.barbie-img-box .back-img {
  opacity: 0;
  transform: scale(1.08);
  z-index: 2;
}

.barbie-product-card:hover .barbie-img-box {
  transform: translateY(-8px);
  box-shadow: 0 34px 85px rgba(243, 11, 108, 0.22);
}

.barbie-product-card:hover .barbie-img-box::after {
  opacity: 1;
}

.barbie-product-card:hover .front-img {
  opacity: 0;
  transform: scale(1.04);
}

.barbie-product-card:hover .back-img {
  opacity: 1;
  transform: scale(1);
}

/* Tags */
.barbie-tag {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  background: linear-gradient(135deg, #ffffff 0%, #160e82 100%);
  color: #ffffff;
  padding: 8px 10px;
  min-width: 40px;
  min-height: 26px;
  border-radius: 0 0 12px 0;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(243, 11, 108, 0.24);
}

.sold-tag {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  background: #ff9d00;
  color: #f30b6c;
  padding: 9px 10px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

/* Cart Button */
.cart-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 6;
  width: 42px;
  height: 42px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #ffffff;
  color: #f30b6c;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 16px 36px rgba(43, 24, 35, 0.16);
}

.cart-btn:hover {
  background: #f30b6c;
  color: #ffffff;
  transform: translateY(-4px) scale(1.06);
}

/* Product Info */
.barbie-product-info {
  padding-top: 15px;
}

.barbie-product-info span {
  display: block;
  color: #f30b6c;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 5px;
}

.barbie-product-info h4 {
  margin: 0;
  color: #2b1823;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
}

.barbie-product-info p {
  margin: 7px 0 0;
  color: #f30b6c;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

/* Arrows */
.barbie-arrow {
  position: absolute;
  top: 43%;
  z-index: 9;
  width: 46px;
  height: 46px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #ffffff;
  color: #2b1823;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(43, 24, 35, 0.14);
  transition: 0.35s ease;
}

.barbie-arrow:hover {
  background: #f30b6c;
  color: #ffffff;
}

.barbie-prev {
  left: 0;
  transform: translateY(-50%);
}

.barbie-next {
  right: 0;
  transform: translateY(-50%);
}

/* Entry Animations */
@keyframes barbieFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes barbieFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   Responsive
================================ */

@media (max-width: 1299px) {
  .barbie-container {
    grid-template-columns: 36% 64%;
    padding: 0 34px;
  }

  .barbie-img-box {
    height: 360px;
  }

  .barbie-slider {
    gap: 24px;
  }
}

@media (max-width: 1199px) {
  .barbie-collab-section {
    min-height: auto;
    padding: 60px 0;
  }

  .barbie-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .barbie-content {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
  }

  .barbie-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .barbie-slider-wrap {
    padding: 0 42px;
  }

  .barbie-product-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 991px) {
  .barbie-product-card {
    flex: 0 0 calc(50% - 14px);
  }

  .barbie-img-box {
    height: 390px;
  }
}

@media (max-width: 767px) {
  .barbie-collab-section {
    padding: 50px 0;
  }

  .barbie-container {
    padding: 0 18px;
  }

  .barbie-content h2 {
    font-size: 44px;
  }

  .barbie-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  .barbie-slider-wrap {
    padding: 0 34px;
  }

  .barbie-product-card {
    flex: 0 0 100%;
  }

  .barbie-img-box {
    height: 430px;
  }

  .barbie-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .barbie-bg-animation::before {
    width: 150px;
    height: 150px;
    top: 35px;
    left: -35px;
  }

  .barbie-bg-animation::after {
    width: 130px;
    height: 130px;
    right: -30px;
    bottom: 45px;
  }
}

@media (max-width: 575px) {
  .barbie-content h2 {
    font-size: 38px;
  }

  .barbie-label {
    font-size: 10px;
  }

  .barbie-btn {
    min-width: 150px;
    height: 44px;
    font-size: 13px;
  }

  .barbie-slider-wrap {
    padding: 0 22px;
  }

  .barbie-img-box {
    height: 360px;
  }

  .barbie-product-info h4 {
    font-size: 16px;
  }

  .barbie-product-info p {
    font-size: 22px;
  }

  .cart-btn {
    width: 38px;
    height: 38px;
    font-size: 19px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 420px) {
  .barbie-img-box {
    height: 315px;
  }

  .barbie-content h2 {
    font-size: 34px;
  }

  .barbie-content p {
    font-size: 14px;
  }
}

/*-----------------------------------------*/
/* ================================
   Watch & Shop Video Slider
================================ */

.watch-shop-section {
  width: 100%;
  padding: 70px 0 80px;
  background: #ffffff;
  overflow: hidden;
}

.watch-shop-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
}

.watch-shop-heading {
  margin-bottom: 34px;
}

.watch-shop-heading span {
  display: inline-block;
  color: #f30b6c;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.watch-shop-heading h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1px;
  font-family: Georgia, "Times New Roman", serif;
}

.watch-shop-heading p {
  margin: 16px 0 0;
  color: #050505;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

/* Slider */
.watch-slider-wrap {
  position: relative;
  width: 100%;
}

.watch-video-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.watch-video-slider::-webkit-scrollbar {
  display: none;
}

/* Video Card */
.watch-video-card {
  position: relative;
  flex: 0 0 calc(20% - 10px);
  height: 500px;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f5;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.watch-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Soft overlay */
.watch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #f30b6c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  transform: scale(0.75);
  transition: 0.35s ease;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.watch-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.14);
}

.watch-video-card:hover .watch-overlay {
  opacity: 1;
}

.watch-video-card:hover .play-btn {
  transform: scale(1);
}

/* Slider Arrows */
.watch-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: 0.3s ease;
}

.watch-arrow:hover {
  background: #f30b6c;
  color: #ffffff;
}

.watch-prev {
  left: 12px;
}

.watch-next {
  right: 12px;
}

/* ================================
   Video Popup
================================ */

.video-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 35px 18px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.video-popup.active {
  opacity: 1;
  visibility: visible;
}

.video-popup-box {
  position: relative;
  width: min(430px, 100%);
  height: min(82vh, 720px);
  background: #000000;
  border-radius: 18px;
  overflow: hidden;
  transform: translateY(-25px) scale(0.96);
  transition: 0.35s ease;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.video-popup.active .video-popup-box {
  transform: translateY(0) scale(1);
}

.video-popup-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Close Button */
.video-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s ease;
}

.video-popup-close:hover {
  background: #f30b6c;
  color: #ffffff;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1199px) {
  .watch-video-card {
    flex: 0 0 calc(25% - 9px);
    height: 460px;
  }
}

@media (max-width: 991px) {
  .watch-shop-section {
    padding: 60px 0 70px;
  }

  .watch-video-card {
    flex: 0 0 calc(33.333% - 8px);
    height: 430px;
  }
}

@media (max-width: 767px) {
  .watch-shop-container {
    padding: 0 18px;
  }

  .watch-shop-heading {
    margin-bottom: 26px;
  }

  .watch-shop-heading h2 {
    font-size: 34px;
  }

  .watch-video-card {
    flex: 0 0 calc(50% - 7px);
    height: 390px;
    border-radius: 12px;
  }

  .watch-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .video-popup {
    padding-top: 24px;
  }

  .video-popup-box {
    height: 78vh;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .watch-shop-section {
    padding: 50px 0 60px;
  }

  .watch-video-card {
    flex: 0 0 78%;
    height: 430px;
  }

  .watch-video-slider {
    gap: 14px;
  }

  .watch-prev {
    left: 4px;
  }

  .watch-next {
    right: 4px;
  }

  .play-btn {
    width: 52px;
    height: 52px;
    font-size: 30px;
  }

  .video-popup-box {
    height: 76vh;
  }
}

@media (max-width: 380px) {
  .watch-video-card {
    flex: 0 0 84%;
    height: 395px;
  }

  .watch-shop-heading h2 {
    font-size: 30px;
  }
}
/*---------------------------------------------------------*/

/* ================================
   Premium Testimonial Slider
================================ */

.tg-testimonial-section {
  position: relative;
  width: 100%;
  padding: 85px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(243, 11, 108, 0.10) 0%, transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(22, 14, 130, 0.14) 0%, transparent 30%),
    linear-gradient(135deg, #fffaf3 0%, #ffffff 42%, #f7f1ff 100%);
}

/* Background Blobs */
.tg-testimonial-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.tg-testimonial-bg::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(243, 11, 108, 0.12);
  border-radius: 42% 58% 70% 30% / 42% 42% 58% 58%;
  top: 70px;
  left: 55px;
  box-shadow: 0 25px 70px rgba(243, 11, 108, 0.08);
  animation: tgBlobMove 6s ease-in-out infinite;
}

.tg-testimonial-bg::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: rgba(247, 241, 255, 0.9);
  border: 1px solid rgba(22, 14, 130, 0.16);
  border-radius: 60% 40% 35% 65% / 50% 55% 45% 50%;
  bottom: 70px;
  right: 90px;
  box-shadow: 0 25px 70px rgba(22, 14, 130, 0.10);
  animation: tgBlobMove 7s ease-in-out infinite reverse;
}

@keyframes tgBlobMove {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(18px, -16px) scale(1.05) rotate(8deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

/* Container */
.tg-testimonial-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Heading */
.tg-testimonial-heading {
  max-width: 650px;
  margin: 0 auto 45px;
  text-align: center;
}

.tg-testimonial-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4f8;
  color: #f30b6c;
  border: 1px solid rgba(243, 11, 108, 0.16);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.tg-testimonial-heading h2 {
  margin: 0;
  color: #2b1823;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.8px;
  font-family: Georgia, "Times New Roman", serif;
}

.tg-testimonial-heading p {
  margin: 13px auto 0;
  color: #7d6672;
  font-size: 15px;
  line-height: 1.7;
}

/* Slider Wrapper */
.tg-testimonial-wrapper {
  position: relative;
  width: 100%;
  padding: 0 52px;
}

/* Slider */
.tg-testimonial-slider {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* Card */
.tg-testimonial-card {
  position: relative;
  flex: 0 0 calc(33.333% - 16px);
  min-height: 285px;
  padding: 30px 28px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(243, 11, 108, 0.13);
  box-shadow: 0 22px 60px rgba(43, 24, 35, 0.07);
  overflow: hidden;
  transition: 0.4s ease;
}

.tg-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(243, 11, 108, 0.07),
    rgba(22, 14, 130, 0.08)
  );
  opacity: 0;
  transition: 0.4s ease;
  pointer-events: none;
}

.tg-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(243, 11, 108, 0.14);
  border-color: rgba(243, 11, 108, 0.24);
}

.tg-testimonial-card:hover::before {
  opacity: 1;
}

/* Card Top */
.tg-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 40px;
}

.tg-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #f30b6c, #160e82);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(243, 11, 108, 0.20);
}

.tg-user h4 {
  margin: 0;
  color: #2b1823;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.tg-user span {
  display: block;
  margin-top: 5px;
  color: #f30b6c;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.tg-quote {
  position: absolute;
  top: -24px;
  right: 0;
  color: rgba(243, 11, 108, 0.18);
  font-size: 82px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

/* Stars */
.tg-stars {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 4px;
  color: #f7a400;
  font-size: 15px;
  margin: 24px 0 16px;
}

/* Review */
.tg-testimonial-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #4d3944;
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 500;
}

/* Arrows */
.tg-testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 46px;
  height: 46px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #ffffff;
  color: #2b1823;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 18px 45px rgba(43, 24, 35, 0.14);
  transition: 0.3s ease;
}

.tg-testimonial-arrow:hover {
  background: #f30b6c;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(243, 11, 108, 0.28);
}

.tg-prev {
  left: 0;
}

.tg-next {
  right: 0;
}

/* Dots */
.tg-testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
}

.tg-dot {
  width: 9px;
  height: 9px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: rgba(243, 11, 108, 0.25);
  cursor: pointer;
  transition: 0.3s ease;
}

.tg-dot.active {
  width: 30px;
  border-radius: 50px;
  background: #f30b6c;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1199px) {
  .tg-testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .tg-testimonial-section {
    padding: 60px 0 65px;
  }

  .tg-testimonial-container {
    padding: 0 18px;
  }

  .tg-testimonial-heading {
    margin-bottom: 30px;
  }

  .tg-testimonial-heading h2 {
    font-size: 34px;
  }

  .tg-testimonial-heading p {
    font-size: 14px;
  }

  .tg-testimonial-wrapper {
    padding: 0 42px;
  }

  .tg-testimonial-slider {
    gap: 16px;
  }

  .tg-testimonial-card {
    flex: 0 0 100%;
    min-height: auto;
    padding: 28px 22px 25px;
    border-radius: 20px;
  }

  .tg-testimonial-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .tg-avatar {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .tg-user h4 {
    font-size: 16px;
  }

  .tg-testimonial-card p {
    font-size: 14.5px;
  }

  .tg-testimonial-bg::before {
    width: 150px;
    height: 150px;
    top: 35px;
    left: -45px;
  }

  .tg-testimonial-bg::after {
    width: 130px;
    height: 130px;
    right: -35px;
    bottom: 45px;
  }
}

@media (max-width: 420px) {
  .tg-testimonial-heading h2 {
    font-size: 30px;
  }

  .tg-testimonial-wrapper {
    padding: 0 34px;
  }

  .tg-card-top {
    gap: 12px;
  }

  .tg-stars {
    margin: 22px 0 14px;
  }
}
/*--------------------------------------------------------------*/
/* ================================
   Footer Top CTA Section
================================ */

.footer-cta-section {
  position: relative;
  width: 100%;
  padding: 85px 0;
  overflow: hidden;
  /* background:
    radial-gradient(circle at 8% 18%, rgba(243, 11, 108, 0.10) 0%, transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(22, 14, 130, 0.14) 0%, transparent 30%),
    linear-gradient(135deg, #fffaf3 0%, #ffffff 42%, #f7f1ff 100%); */
}
.tg-footer-brand img {
    width: 100%;
    max-width: 220px !important;
}
/* Animated Background Blobs */
/* .footer-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-cta-bg::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(243, 11, 108, 0.12);
  border-radius: 42% 58% 70% 30% / 42% 42% 58% 58%;
  top: 55px;
  left: 55px;
  box-shadow: 0 25px 70px rgba(243, 11, 108, 0.08);
  animation: footerCtaBlobMove 6s ease-in-out infinite;
} */
/* 
.footer-cta-bg::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(247, 241, 255, 0.9);
  border: 1px solid rgba(22, 14, 130, 0.16);
  border-radius: 60% 40% 35% 65% / 50% 55% 45% 50%;
  bottom: 45px;
  right: 80px;
  box-shadow: 0 25px 70px rgba(22, 14, 130, 0.10);
  animation: footerCtaBlobMove 7s ease-in-out infinite reverse;
} */

@keyframes footerCtaBlobMove {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(18px, -16px) scale(1.05) rotate(8deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

/* Container */
.footer-cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 34px;
  align-items: center;
}

/* Main Content Box */
.footer-cta-content {
  position: relative;
  padding: 48px 52px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(243, 11, 108, 0.13);
  box-shadow: 0 28px 80px rgba(43, 24, 35, 0.08);
  overflow: hidden;
}

.footer-cta-content::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: rgba(243, 11, 108, 0.10);
}

.footer-cta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4f8;
  color: #f30b6c;
  border: 1px solid rgba(243, 11, 108, 0.16);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.footer-cta-content h2 {
  position: relative;
  margin: 0;
  max-width: 650px;
  color: #2b1823;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1px;
  font-family: Georgia, "Times New Roman", serif;
}

.footer-cta-content p {
  position: relative;
  max-width: 560px;
  margin: 18px 0 0;
  color: #6f5d68;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

/* Buttons */
.footer-cta-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.footer-cta-btn {
  min-height: 48px;
  padding: 0 26px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: 0.35s ease;
}

.primary-btn {
  background: #f30b6c;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(243, 11, 108, 0.22);
}

.primary-btn:hover {
  background: #2b1823;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(43, 24, 35, 0.20);
}

.secondary-btn {
  background: #ffffff;
  color: #2b1823;
  border: 1px solid rgba(243, 11, 108, 0.18);
}

.secondary-btn:hover {
  background: #fff4f8;
  color: #f30b6c;
  transform: translateY(-4px);
}

/* Features */
.footer-cta-features {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.footer-cta-features div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4d3944;
  font-size: 13.5px;
  font-weight: 800;
}

.footer-cta-features i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff4f8;
  color: #f30b6c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Offer Card */
.footer-cta-card {
  position: relative;
  min-height: 315px;
  padding: 38px 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, #f30b6c 0%, #160e82 55%, #160e82 100%);
  box-shadow: 0 30px 85px rgba(243, 11, 108, 0.24);
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-cta-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.footer-cta-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  left: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.footer-cta-card span {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: fit-content;
  background: rgba(255, 255, 255, 0.20);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-cta-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  font-weight: 900;
  font-family: Georgia, "Times New Roman", serif;
}

.footer-cta-card p {
  position: relative;
  z-index: 2;
  margin: 14px 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.footer-cta-card a {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 50px;
  background: #ffffff;
  color: #f30b6c;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.footer-cta-card a:hover {
  background: #2b1823;
  color: #ffffff;
  transform: translateY(-4px);
}

/* ================================
   Responsive
================================ */

@media (max-width: 991px) {
  .footer-cta-section {
    padding: 70px 0;
  }

  .footer-cta-container {
    grid-template-columns: 1fr;
  }

  .footer-cta-content {
    text-align: center;
    padding: 42px 34px;
  }

  .footer-cta-content h2,
  .footer-cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-cta-actions,
  .footer-cta-features {
    justify-content: center;
  }

  .footer-cta-card {
    min-height: auto;
    text-align: center;
    align-items: center;
    padding: 42px 30px;
  }
}

@media (max-width: 575px) {
  .footer-cta-section {
    padding: 55px 0;
  }

  .footer-cta-container {
    padding: 0 18px;
    gap: 22px;
  }

  .footer-cta-content {
    padding: 34px 22px;
    border-radius: 26px;
  }

  .footer-cta-label {
    font-size: 10.5px;
    padding: 8px 14px;
  }

  .footer-cta-content h2 {
    font-size: 32px;
  }

  .footer-cta-content p {
    font-size: 14.5px;
  }

  .footer-cta-actions {
    gap: 11px;
  }

  .footer-cta-btn {
    width: 100%;
    min-height: 46px;
  }

  .footer-cta-features {
    align-items: flex-start;
    gap: 12px;
  }

  .footer-cta-features div {
    width: 100%;
    justify-content: center;
  }

  .footer-cta-card {
    border-radius: 26px;
    padding: 36px 22px;
  }

  .footer-cta-card h3 {
    font-size: 36px;
  }

  .footer-cta-bg::before {
    width: 150px;
    height: 150px;
    top: 30px;
    left: -45px;
  }

  .footer-cta-bg::after {
    width: 125px;
    height: 125px;
    right: -35px;
    bottom: 35px;
  }
}

/*----------------------------------------------------------------------------*/
/* ================================
   Premium Footer Design
================================ */

.tg-footer {
  position: relative;
  width: 100%;
  padding: 80px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(243, 11, 108, 0.10) 0%, transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(22, 14, 130, 0.14) 0%, transparent 30%),
    linear-gradient(135deg, #fffaf3 0%, #ffffff 42%, #f7f1ff 100%);
}

/* Animated Background */
.tg-footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.tg-footer-bg::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(243, 11, 108, 0.12);
  border-radius: 42% 58% 70% 30% / 42% 42% 58% 58%;
  top: 65px;
  left: 50px;
  box-shadow: 0 25px 70px rgba(243, 11, 108, 0.08);
  animation: tgFooterBlobMove 6s ease-in-out infinite;
}

.tg-footer-bg::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(247, 241, 255, 0.9);
  border: 1px solid rgba(22, 14, 130, 0.16);
  border-radius: 60% 40% 35% 65% / 50% 55% 45% 50%;
  bottom: 80px;
  right: 90px;
  box-shadow: 0 25px 70px rgba(22, 14, 130, 0.10);
  animation: tgFooterBlobMove 7s ease-in-out infinite reverse;
}

@keyframes tgFooterBlobMove {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(18px, -16px) scale(1.05) rotate(8deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

/* Container */
.tg-footer-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Footer Top */
.tg-footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 0.9fr 1.35fr;
  gap: 34px;
  padding-bottom: 52px;
}

/* Brand */
.tg-footer-brand {
  max-width: 360px;
}

.tg-footer-logo {
  display: inline-block;
  color: #2b1823;
  text-decoration: none;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.8px;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 18px;
}

.tg-footer-brand p,
.tg-footer-newsletter p {
  margin: 0;
  color: #6f5d68;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

/* Social Icons */
.tg-footer-social {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
}

.tg-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #f30b6c;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(243, 11, 108, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  text-decoration: none;
  transition: 0.35s ease;
  box-shadow: 0 12px 28px rgba(43, 24, 35, 0.05);
}

.tg-footer-social a:hover {
  background: #f30b6c;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(243, 11, 108, 0.25);
}

/* Footer Columns */
.tg-footer-col h4,
.tg-footer-newsletter h4 {
  margin: 0 0 20px;
  color: #2b1823;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.tg-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.tg-footer-col ul li:last-child {
  margin-bottom: 0;
}

.tg-footer-col ul li a {
  position: relative;
  color: #6f5d68;
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.3;
  font-weight: 600;
  transition: 0.3s ease;
}

.tg-footer-col ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f30b6c;
  border-radius: 20px;
  transition: 0.3s ease;
}

.tg-footer-col ul li a:hover {
  color: #f30b6c;
  padding-left: 6px;
}

.tg-footer-col ul li a:hover::before {
  width: 18px;
}

/* Newsletter Box */
.tg-footer-newsletter {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(243, 11, 108, 0.13);
  box-shadow: 0 22px 60px rgba(43, 24, 35, 0.06);
}

.tg-footer-form {
  position: relative;
  margin-top: 22px;
}

.tg-footer-form input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(243, 11, 108, 0.18);
  outline: none;
  border-radius: 50px;
  background: #ffffff;
  color: #2b1823;
  font-size: 14px;
  font-weight: 600;
  padding: 0 58px 0 18px;
  transition: 0.3s ease;
}

.tg-footer-form input::placeholder {
  color: #a18a96;
}

.tg-footer-form input:focus {
  border-color: #f30b6c;
  box-shadow: 0 0 0 4px rgba(243, 11, 108, 0.08);
}

.tg-footer-form button {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 38px;
  height: 38px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #f30b6c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.tg-footer-form button:hover {
  background: #2b1823;
  transform: rotate(-8deg) scale(1.05);
}

/* Contact */
.tg-footer-contact {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.tg-footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6f5d68;
  font-size: 14px;
  font-weight: 600;
}

.tg-footer-contact i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff4f8;
  color: #f30b6c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Footer Bottom */
.tg-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(243, 11, 108, 0.12);
}

.tg-footer-bottom p {
  margin: 0;
  color: #6f5d68;
  font-size: 14px;
  font-weight: 600;
}

.tg-footer-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6f5d68;
  font-size: 14px;
  font-weight: 700;
}

.tg-footer-payments i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ffffff;
  color: #f30b6c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  border: 1px solid rgba(243, 11, 108, 0.12);
}

/* ================================
   Responsive
================================ */

@media (max-width: 1199px) {
  .tg-footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .tg-footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .tg-footer {
    padding-top: 65px;
  }

  .tg-footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .tg-footer-brand {
    max-width: 100%;
  }

  .tg-footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .tg-footer {
    padding-top: 55px;
  }

  .tg-footer-container {
    padding: 0 18px;
  }

  .tg-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 35px;
  }

  .tg-footer-newsletter {
    grid-column: span 1;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .tg-footer-logo {
    font-size: 31px;
  }

  .tg-footer-brand p,
  .tg-footer-newsletter p {
    font-size: 14.5px;
  }

  .tg-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .tg-footer-payments {
    justify-content: center;
    flex-wrap: wrap;
  }

  .tg-footer-bg::before {
    width: 150px;
    height: 150px;
    top: 30px;
    left: -45px;
  }

  .tg-footer-bg::after {
    width: 130px;
    height: 130px;
    right: -35px;
    bottom: 80px;
  }
}

/*-------------------------------------shop----------------------------------------*/
 .shop-wrapper {
      display: flex;
      gap: 24px;
      padding: 24px;
      max-width: 1500px;
      margin: auto;
    }

    /* FILTER SIDEBAR */
    .filter-sidebar {
      width: 270px;
      min-width: 270px;
      background: #ffffff;
      border-radius: 14px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
      border: 1px solid #eceef3;
      height: fit-content;
      overflow: hidden;
      position: sticky;
      top: 20px;
    }

    .filter-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      border-bottom: 1px solid #eceef3;
    }

    .filter-header h3 {
      font-size: 16px;
      font-weight: 800;
      color: #101828;
      text-transform: uppercase;
    }

    .clear-btn {
      border: none;
      background: transparent;
      color: #ff9800;
      font-size: 13px;
      cursor: pointer;
      font-weight: 600;
    }

    .filter-section {
      border-bottom: 1px solid #eceef3;
      padding: 0 20px;
    }

    .filter-title {
      width: 100%;
      padding: 16px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 700;
      color: #111827;
    }

    /* SINGLE PLUS ICON FIX */
    .filter-title span {
      position: relative;
      width: 14px;
      height: 14px;
      display: inline-block;
      font-size: 0;
      line-height: 0;
    }

    .filter-title span::before,
    .filter-title span::after {
      content: "";
      position: absolute;
      background: #222;
      transition: 0.3s ease;
    }

    .filter-title span::before {
      width: 14px;
      height: 1.5px;
      top: 6px;
      left: 0;
    }

    .filter-title span::after {
      width: 1.5px;
      height: 14px;
      left: 6px;
      top: 0;
    }

    .filter-section.active .filter-title span::after {
      opacity: 0;
    }

    .filter-content {
      display: none;
      padding-bottom: 18px;
    }

    .filter-section.active .filter-content {
      display: block;
    }

    /* PRICE */
    .price-range {
      margin-top: 5px;
    }

    .range-track {
      position: relative;
      height: 4px;
      background: #ff9800;
      border-radius: 10px;
      margin: 12px 0 22px;
    }

    .range-dot {
      position: absolute;
      top: 50%;
      width: 20px;
      height: 20px;
      border: 1px solid #ff9800;
      background: #fff;
      border-radius: 50%;
      transform: translateY(-50%);
    }

    .range-dot.left {
      left: 0;
    }

    .range-dot.right {
      right: 0;
    }

    .price-inputs {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .input-group label {
      display: block;
      font-size: 12px;
      color: #111827;
      margin-bottom: 7px;
      font-weight: 600;
    }

    .input-group input {
      width: 78px;
      height: 35px;
      border: 1px solid #d4d7de;
      padding: 8px;
      font-size: 12px;
      outline: none;
      color: #555;
    }

    .go-btn {
      width: 34px;
      height: 35px;
      border: 1px solid #ffd89a;
      color: #ff9800;
      background: #fff;
      cursor: pointer;
      font-size: 20px;
    }

    /* COLOR FILTER */
    .color-search {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .color-search h4 {
      font-size: 13px;
      color: #111827;
      font-weight: 800;
      text-transform: uppercase;
    }

    .search-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f3f5fa;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5b6478;
      font-size: 16px;
    }

    .filter-option,
    .color-option {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 11px;
      cursor: pointer;
      font-size: 14px;
      color: #1d2433;
    }

    .filter-option input,
    .color-option input {
      appearance: none;
      width: 15px;
      height: 15px;
      border: 1px solid #c5c9d1;
      background: #fff;
      cursor: pointer;
      position: relative;
    }

    .filter-option input:checked,
    .color-option input:checked {
      background: #ff9800;
      border-color: #ff9800;
    }

    .filter-option input:checked::after,
    .color-option input:checked::after {
      content: "✓";
      position: absolute;
      color: #fff;
      font-size: 11px;
      left: 2px;
      top: -1px;
    }

    .color-dot {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      display: inline-block;
    }

    .blue { background: #1686df; }
    .peach { background: #f8dca6; }
    .black { background: #40505f; }
    .pink { background: #160e82; }
    .maroon { background: #f30b6c; }
    .green { background: #59aa59; }
    .lime { background: #5abd4d; }
    .white { background: #fff; border: 1px solid #ccc; }
    .purple { background: #160e82; }
    .orange { background: #ff9800; }

    .count {
      color: #8b93a3;
      font-size: 12px;
    }

    .more-color {
      color: #f30b6c;
      font-size: 14px;
      margin-top: 7px;
      cursor: pointer;
      padding-left: 28px;
    }

    .extra-colors {
      display: none;
    }

    .extra-colors.show {
      display: block;
    }

    /* PRODUCT AREA */
    .product-area {
      flex: 1;
    }

    .top-filter-bar {
      background: #fff;
      border: 1px solid #eceef3;
      border-radius: 14px;
      padding: 16px 20px;
      margin-bottom: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    }

    .category-tabs {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
      align-items: center;
    }

    .category-tabs span {
      cursor: pointer;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #160e82;
      font-size: 14px;
      font-weight: 500;
    }

    .category-tabs span::after {
      content: "";
      width: 6px;
      height: 6px;
      border-right: 1.5px solid #344054;
      border-bottom: 1.5px solid #344054;
      transform: rotate(45deg);
      margin-top: -4px;
      transition: 0.25s ease;
    }

    .category-tabs span:hover {
      color: #160e82;
    }

    .category-tabs span:hover::after {
      border-color: #160e82;
      transform: rotate(45deg) translateY(2px);
    }

    .category-tabs strong {
      color: #160e82;
      font-size: 14px;
    }

    .sort-box {
      border: 1px solid #d9dde7;
      padding: 11px 42px 11px 14px;
      min-width: 230px;
      border-radius: 4px;
      background: #fff;
      font-size: 14px;
      color: #333;
      position: relative;
    }

    .sort-box b {
      color: #160e82;
    }

    .sort-box::after {
      content: "";
      position: absolute;
      right: 16px;
      top: 45%;
      width: 8px;
      height: 8px;
      border-right: 1.7px solid #344054;
      border-bottom: 1.7px solid #344054;
      transform: translateY(-50%) rotate(45deg);
      transition: 0.25s ease;
    }

    .sort-box:hover::after {
      border-color: #160e82;
      transform: translateY(-35%) rotate(45deg);
    }

    /* PRODUCT GRID */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    /* PRODUCT CARD */
    .product-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #eceef3;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
      transition: all 0.35s ease;
      position: relative;
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.13);
      border-color: #dfe3eb;
    }

    .image-box {
      height: 285px;
      background: #f2f3f6;
      position: relative;
      overflow: hidden;
    }

    .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }

    .product-card:hover .image-box img {
      transform: scale(1.06);
    }

    .discount-badge {
      position: absolute;
      top: 12px;
      left: 12px;
         background: linear-gradient(135deg, #f30b6c, #160e82);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      padding: 6px 9px;
      border-radius: 20px;
      z-index: 3;
    }

    .wishlist {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: none;
      background: #fff;
      color: #1d2433;
      font-size: 21px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(-10px);
      transition: 0.3s;
      cursor: pointer;
      z-index: 5;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    }

    .product-card:hover .wishlist {
      opacity: 1;
      transform: translateY(0);
    }

    .wishlist.active,
    .wishlist:hover {
      color: #f30b6c;
    }

    .slide-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      color: #101828;
      font-size: 25px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.3s;
      cursor: pointer;
      z-index: 4;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    }

    .slide-btn.left {
      left: 12px;
    }

    .slide-btn.right {
      right: 12px;
    }

    .product-card:hover .slide-btn {
      opacity: 1;
    }

    .slide-btn:hover {
      background: #101828;
      color: #fff;
    }

    .rating {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: #fff;
      padding: 5px 8px;
      font-size: 12px;
      font-weight: 800;
      color: #111;
      border-radius: 4px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
      z-index: 3;
    }

    .rating span {
      color: #ffb400;
    }

    .quick-view {
      position: absolute;
      bottom: -50px;
      left: 12px;
      right: 12px;
      height: 42px;
      border: none;
      background: #101828;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.35s;
      z-index: 4;
    }

    .product-card:hover .quick-view {
      bottom: 14px;
    }

    .product-info {
      padding: 15px 16px 17px;
    }

    .brand {
      font-size: 15px;
      font-weight: 800;
      color: #160e82;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .product-name {
      color: #4a5368;
      font-size: 14px;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .price-row {
      display: flex;
      align-items: center;
      gap: 7px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .sale-price {
      font-weight: 800;
      color: #160e82;
      font-size: 15px;
    }

    .old-price {
      color: #939aaa;
      text-decoration: line-through;
      font-size: 13px;
    }

    .discount {
      color: #ff5a3c;
      font-size: 13px;
      font-weight: 600;
    }

    .color-swatches {
      display: flex;
      gap: 7px;
      margin-top: 5px;
    }

    .swatch {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      border: 1px solid #ddd;
    }

    /* RESPONSIVE */
    @media (max-width: 1200px) {
      .product-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 991px) {
      .shop-wrapper {
        flex-direction: column;
        padding: 15px;
      }

      .filter-sidebar {
        width: 100%;
        min-width: 100%;
        position: relative;
        top: 0;
      }

      .top-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }

      .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }
    }

    @media (max-width: 575px) {
      .product-grid {
        grid-template-columns: 1fr;
      }

      .image-box {
        height: 340px;
      }

      .sort-box {
        width: 100%;
      }
    }

    /*----------------------------------------add to cart----------------------------------*/
    .product-detail-wrapper {
  width: 100%;
  max-width: 1250px;
  margin: 40px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 30px;
  align-items: flex-start;
}
 
/* LEFT SIDE GALLERY */
.product-gallery {
  width: 100%;
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
 
.thumbnail-list {
  width: 88px;
  flex: 0 0 88px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 2px;
}
 
.thumbnail-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
 
.thumbnail-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
 
.thumbnail {
  width: 84px;
  height: 96px;
  flex: 0 0 auto;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
  transition: 0.25s ease;
}
 
.thumbnail.active,
.thumbnail:hover {
  border-color: #111;
}
 
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.main-image-box {
  position: relative;
  width: 100%;
  flex: 1;
  aspect-ratio: 4 / 5;
  min-height: 520px;
  max-height: 650px;
  border-radius: 16px;
  overflow: hidden;
  background: #f7f7f7;
}
 
.main-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #111;
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}
 
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 32px;
  line-height: 38px;
  cursor: pointer;
  z-index: 3;
  transition: 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
 
.gallery-arrow:hover {
  background: #111;
  color: #fff;
}
 
.gallery-arrow.left {
  left: 14px;
}
 
.gallery-arrow.right {
  right: 14px;
}
 
/* RIGHT SIDE PRODUCT INFO */
.product-info-panel {
  width: 100%;
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
 
.brand-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 8px;
  text-transform: uppercase;
}
 
.product-title {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}
 
.product-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}
 
.rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
 
.rating-badge {
  background: #168c3a;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}
 
.review-text {
  font-size: 14px;
  color: #666;
}
 
.price-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 6px;
}
 
.current-price {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  color: #111;
}
 
.old-price {
  font-size: 18px;
  color: #888;
  text-decoration: line-through;
}
 
.discount-text {
  font-size: 15px;
  font-weight: 800;
  color: #e53935;
}
 
.tax-text {
  font-size: 13px;
  color: #168c3a;
  margin-bottom: 24px;
}
 
.option-block {
  margin-bottom: 24px;
}
 
.option-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #222;
}
 
.color-options,
.size-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
 
.color-btn {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: 0.25s ease;
}
 
/* .color-btn.active {
  outline: 3px solid #111;
  outline-offset: 3px;
} */
 
.color-blue {
  background: #385f9f;
}
 
.color-black {
  background: #111;
}
 
.color-peach {
  background: #f3b48b;
}
 
.color-maroon {
  background: #7b1020;
}
 
.color-white {
  background: #fff;
}
 
.size-btn {
  min-width: 48px;
  height: 42px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 9px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s ease;
}
 
.size-btn.active,
.size-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}
 
/* QUANTITY */
.quantity-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}
 
.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: #f5f5f5;
  font-size: 24px;
  cursor: pointer;
  transition: 0.25s ease;
}
 
.qty-btn:hover {
  background: #111;
  color: #fff;
}
 
.qty-input {
  width: 58px;
  height: 44px;
  border: none;
  outline: none;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  background: #fff;
}
 
/* BUTTONS */
.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
 
.cart-btns,
.buy-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 11px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}
 
.cart-btns {
  background: #f30b6c;
  color: #fff;
}
 
.cart-btns:hover {
  background: #333;
}
 
.buy-btn {
  background: #ff9f00;
  color: #fff;
}
 
.buy-btn:hover {
  background: #e18d00;
}
 
.wishlist-big {
  width: 100%;
  min-height: 50px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: 24px;
  transition: 0.25s ease;
}
 
.wishlist-big.active,
.wishlist-big:hover {
  border-color: #f30b6c;
  color: #f30b6c;
  background: #fff5f9;
}
 
/* DELIVERY BOX */
.delivery-box {
  border-top: 1px solid #eee;
  padding-top: 20px;
}
 
.delivery-title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 12px;
}
 
.delivery-input {
  width: 100%;
  display: flex;
  margin-bottom: 14px;
}
 
.delivery-input input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 9px 0 0 9px;
  padding: 0 14px;
  outline: none;
  font-size: 14px;
}
 
.delivery-input button {
  width: 95px;
  height: 46px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 800;
  border-radius: 0 9px 9px 0;
  cursor: pointer;
}
 
.delivery-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.delivery-points span {
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}
 
/* LARGE TABLET */
@media (max-width: 1100px) {
  .product-detail-wrapper {
    max-width: 960px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
 
  .product-gallery {
    max-width: 760px;
    margin: 0 auto;
  }
 
  .product-info-panel {
    max-width: 760px;
    margin: 0 auto;
  }
 
  .main-image-box {
    min-height: 500px;
  }
}
 
/* TABLET */
@media (max-width: 768px) {
  .product-detail-wrapper {
    margin: 20px auto;
    padding: 14px;
  }
 
  .product-gallery {
    flex-direction: column-reverse;
    gap: 14px;
    padding: 14px;
  }
 
  .thumbnail-list {
    width: 100%;
    flex: none;
    max-height: none;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    padding-bottom: 4px;
  }
 
  .thumbnail {
    width: 78px;
    height: 88px;
  }
 
  .main-image-box {
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: auto;
    max-height: none;
  }
 
  .product-info-panel {
    padding: 22px;
  }
 
  .cart-actions {
    grid-template-columns: 1fr 1fr;
  }
}
 
/* MOBILE */
@media (max-width: 576px) {
  body {
    background: #fff;
  }
 
  .product-detail-wrapper {
    margin: 0 auto;
    padding: 0;
    display: block;
  }
 
  .product-gallery {
    border-radius: 0;
    box-shadow: none;
    padding: 10px;
    background: #fff;
  }
 
  .main-image-box {
    border-radius: 14px;
    aspect-ratio: 3 / 4;
  }
 
  .image-badge {
    top: 12px;
    left: 12px;
    font-size: 12px;
    padding: 7px 12px;
  }
 
  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 28px;
    line-height: 32px;
  }
 
  .gallery-arrow.left {
    left: 10px;
  }
 
  .gallery-arrow.right {
    right: 10px;
  }
 
  .thumbnail-list {
    gap: 9px;
  }
 
  .thumbnail {
    width: 66px;
    height: 74px;
    border-radius: 9px;
  }
 
  .product-info-panel {
    border-radius: 16px 16px 0 0;
    box-shadow: none;
    padding: 20px 16px 24px;
  }
 
  .brand-name {
    font-size: 12px;
  }
 
  .product-title {
    font-size: 23px;
  }
 
  .product-desc {
    font-size: 14px;
  }
 
  .rating-row {
    gap: 8px;
  }
 
  .review-text {
    font-size: 13px;
  }
 
  .current-price {
    font-size: 26px;
  }
 
  .old-price {
    font-size: 16px;
  }
 
  .discount-text {
    font-size: 14px;
  }
 
  .option-block {
    margin-bottom: 22px;
  }
 
  .color-btn {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
 
  .size-options {
    gap: 9px;
  }
 
  .size-btn {
    min-width: 45px;
    height: 40px;
    font-size: 14px;
  }
 
  .cart-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }
 
  .cart-btns,
  .buy-btn {
    height: 50px;
    font-size: 15px;
  }
 
  .wishlist-big {
    min-height: 48px;
  }
 
  .delivery-input {
    flex-direction: column;
    gap: 10px;
  }
 
  .delivery-input input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 9px;
  }
 
  .delivery-input button {
    width: 100%;
    border-radius: 9px;
  }
}
 
/* SMALL MOBILE */
@media (max-width: 380px) {
  .product-title {
    font-size: 21px;
  }
 
  .product-info-panel {
    padding: 18px 12px 22px;
  }
 
  .thumbnail {
    width: 58px;
    height: 66px;
  }
 
  .size-btn {
    min-width: 42px;
    height: 38px;
  }
 
  .price-box {
    gap: 8px;
  }
 
  .current-price {
    font-size: 24px;
  }
}
 
 

/*--------------------------------------------------filter----------------------------------*/
 body.filter-lock {
      overflow: hidden;
    }

    /* MOBILE FILTER BUTTON */
.mobile-filter-btn {
    display: none;
    margin: 12px 15px;
    height: 42px;
    padding: 0 23px;
    border: none;
    border-radius: 8px;
    background: #f30b6c;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

    /* OVERLAY */
    .filter-overlay {
      position: fixed;
      inset: 0;
      background: rgba(17, 24, 39, 0.55);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s ease;
    }

    .filter-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* MAIN WRAPPER */
    .shop-wrapper {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 270px minmax(0, 1fr);
      gap: 20px;
      padding: 20px;
    }

    /* FILTER SIDEBAR */
    .filter-sidebar {
      width: 270px;
      background: #fff;
      border-right: 1px solid #eceef3;
      height: fit-content;
      position: sticky;
      top: 15px;
      overflow: hidden;
    }

    .filter-mobile-head {
      display: none;
      align-items: center;
      justify-content: space-between;
      padding: 16px 18px;
      border-bottom: 1px solid #eceef3;
      background: #fff;
    }

    .filter-mobile-head h3 {
      font-size: 18px;
      font-weight: 800;
    }

    .filter-close-btn {
      width: 34px;
      height: 34px;
      border: none;
      border-radius: 50%;
      background: #f3f4f6;
      font-size: 24px;
      cursor: pointer;
      color: #111827;
      line-height: 1;
    }

    .filter-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid #eceef3;
    }

    .filter-header h3 {
      font-size: 18px;
      font-weight: 800;
    }

    .clear-btn {
      border: none;
      background: transparent;
      color: #f30b6c;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
    }

    .filter-section {
      border-bottom: 1px solid #eceef3;
    }

    .filter-title {
      width: 100%;
      padding: 17px 20px;
      border: none;
      background: #fff;
      color: #111827;
      font-size: 15px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }

    .filter-title span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      font-size: 22px;
      font-weight: 500;
      line-height: 1;
      color: #111827;
    }

    /* DOUBLE PLUS FIX */
    .filter-title::before,
    .filter-title::after,
    .filter-title span::before,
    .filter-title span::after {
      content: none !important;
      display: none !important;
    }

    .filter-content {
      display: none;
      padding: 0 20px 18px;
    }

    .filter-section.active .filter-content {
      display: block;
    }

    /* PRICE FILTER */
    .range-track {
      height: 4px;
      background: #ff9800;
      border-radius: 20px;
      position: relative;
      margin: 10px 12px 22px;
    }

    .range-dot {
      position: absolute;
      top: 50%;
      width: 20px;
      height: 20px;
      background: #fff;
      border: 1.5px solid #ff9800;
      border-radius: 50%;
      transform: translateY(-50%);
    }

    .range-dot.left {
      left: -8px;
    }

    .range-dot.right {
      right: -8px;
    }

    .price-inputs {
      display: grid;
      grid-template-columns: 1fr 1fr 34px;
      gap: 10px;
      align-items: end;
    }

    .input-group label {
      display: block;
      font-size: 12px;
      font-weight: 800;
      color: #374151;
      margin-bottom: 8px;
    }

    .input-group input {
      width: 100%;
      height: 35px;
      border: 1px solid #cfd6e4;
      border-radius: 6px;
      padding: 0 9px;
      color: #4b5563;
      font-size: 13px;
      outline: none;
    }

    .go-btn {
      height: 35px;
      border: none;
      border-radius: 8px;
      background: #fff7ed;
      color: #ff7a00;
      font-size: 26px;
      cursor: pointer;
      line-height: 1;
    }

    /* COLOR FILTER */
    .color-search {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .color-search h4 {
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      color: #111827;
    }

    .search-icon {
      width: 34px;
      height: 34px;
      border: none;
      background: #f4f5fb;
      color: #374151;
      border-radius: 50%;
      cursor: pointer;
    }

    .color-option {
      min-height: 32px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #1f2937;
      font-size: 14px;
      cursor: pointer;
      user-select: none;
    }

    .color-option input {
      display: none;
    }

    .custom-check {
      width: 30px;
      height: 15px;
      border: 1.5px solid #cbd5e1;
      border-radius: 30px;
      background: #fff;
      position: relative;
      flex: 0 0 auto;
      transition: 0.25s ease;
    }

    .custom-check::after {
      content: "";
      width: 9px;
      height: 9px;
      background: #cbd5e1;
      border-radius: 50%;
      position: absolute;
      top: 2px;
      left: 3px;
      transition: 0.25s ease;
    }

    .color-option input:checked + .custom-check {
      background: #f30b6c;
      border-color: #f30b6c;
    }

    .color-option input:checked + .custom-check::after {
      left: 16px;
      background: #fff;
    }

    .color-dot {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      flex: 0 0 auto;
    }

    .blue { background: #1686df; }
    .peach { background: #f8dca6; }
    .black { background: #4b5563; }
    .pink { background: #160e82; }
    .maroon { background: #f30b6c; }
    .green { background: #54ad54; }
    .lime { background: #59ba48; }
    .purple { background: #160e82; }
    .orange { background: #ff9800; }

    .white {
      background: #fff;
      border: 1px solid #cfd4dc;
    }

    .count {
      color: #8b93a3;
      font-size: 12px;
    }

    .extra-colors {
      display: none;
    }

    .extra-colors.show {
      display: block;
    }

    .more-color {
      margin-top: 8px;
      border: none;
      background: transparent;
      color: #f30b6c;
      font-size: 14px;
      cursor: pointer;
      padding: 5px 0;
    }

    /* PRODUCT AREA */
    .product-area {
      min-width: 0;
    }

    .top-filter-bar {
      background: #fff;
      padding: 14px 16px;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      border-radius: 8px;
      border: 1px solid #eceef3;
    }

    .category-tabs {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      font-size: 14px;
      color: #374151;
      white-space: nowrap;
    }

    .category-tabs strong {
      color: #f30b6c;
    }

    .sort-box {
      flex: 0 0 auto;
      font-size: 14px;
      color: #374151;
      white-space: nowrap;
    }

    /* PRODUCT GRID */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .product-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #eceef3;
      position: relative;
    }

    .image-box {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 4;
      background: #f3f4f6;
      overflow: hidden;
    }

    .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: 0.3s ease;
    }

    .product-card:hover .image-box img {
      transform: scale(1.04);
    }

    .discount-badge {
      position: absolute;
      top: 10px;
      left: 10px;
          background: linear-gradient(135deg, #f30b6c, #160e82);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      padding: 5px 8px;
      border-radius: 20px;
      z-index: 2;
    }

    .wishlist {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: none;
      background: #fff;
      color: #111827;
      font-size: 20px;
      cursor: pointer;
      z-index: 6;
    }

    .wishlist.active {
      color: #f30b6c;
    }

    /* IMAGE SLIDER BUTTONS */
    .slide-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 34px;
      height: 34px;
      border: none;
      border-radius: 50%;
      background: #fff;
      color: #111827;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s ease;
      box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
    }

    .slide-btn.left {
      left: 10px;
    }

    .slide-btn.right {
      right: 10px;
    }

    .image-box:hover .slide-btn {
      opacity: 1;
      visibility: visible;
    }

    .slide-btn:hover {
      background: #111827;
      color: #fff;
    }

    .rating {
      position: absolute;
      left: 10px;
      bottom: 10px;
      background: rgba(255, 255, 255, 0.95);
      padding: 5px 8px;
      border-radius: 5px;
      font-size: 12px;
      font-weight: 700;
      z-index: 2;
      transition: 0.3s ease;
    }

    .rating span {
      color: #16a34a;
    }

    .quick-view {
      position: absolute;
      left: 50%;
      bottom: 12px;
      transform: translateX(-50%);
      border: none;
      background: #111827;
      color: #fff;
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      opacity: 0;
      visibility: hidden;
      cursor: pointer;
      transition: 0.3s ease;
      z-index: 4;
    }

    .image-box:hover .rating {
      opacity: 0;
      visibility: hidden;
    }

    .image-box:hover .quick-view {
      opacity: 1;
      visibility: visible;
    }

    .product-info {
      padding: 12px;
    }

    .brand {
      font-size: 13px;
      font-weight: 800;
      color: #111827;
      margin-bottom: 5px;
    }

    .product-name {
      font-size: 13px;
      color: #6b7280;
      margin-bottom: 8px;
    }

    .price-row {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }

    .sale-price {
      font-size: 14px;
      font-weight: 800;
      color: #111827;
    }

    .old-price {
      font-size: 12px;
      color: #9ca3af;
      text-decoration: line-through;
    }

    .discount {
      font-size: 12px;
      color: #f30b6c;
      font-weight: 700;
    }

    .color-swatches {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .swatch {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      display: inline-block;
    }

    /* RESPONSIVE */
    @media (max-width: 1199px) {
      .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 991px) {
      .shop-wrapper {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 15px;
        padding: 15px;
      }

      .filter-sidebar {
        width: 240px;
      }

      .price-inputs {
        grid-template-columns: 1fr;
      }

      .go-btn {
        width: 100%;
      }

      .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .top-filter-bar {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 767px) {
      .mobile-filter-btn {
        display: inline-flex;
      }

      .shop-wrapper {
        display: block;
        padding: 10px;
      }

      .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 285px;
        max-width: 86%;
        height: 100vh;
        z-index: 999;
        transform: translateX(-105%);
        transition: 0.35s ease;
        overflow-y: auto;
        border-right: none;
        box-shadow: 8px 0 28px rgba(0, 0, 0, 0.18);
      }

      .filter-sidebar.active {
        transform: translateX(0);
      }

      .filter-mobile-head {
        display: flex;
        position: sticky;
        top: 0;
        z-index: 5;
      }

      .filter-header {
        display: none;
      }

      .filter-title {
        padding: 16px 18px;
      }

      .filter-content {
        padding: 0 18px 18px;
      }

      .price-inputs {
        grid-template-columns: 1fr 1fr 34px;
      }

      .top-filter-bar {
        padding: 12px;
        margin-bottom: 12px;
      }

      .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .product-info {
        padding: 9px;
      }

      .brand {
        font-size: 12px;
      }

      .product-name {
        font-size: 12px;
      }

      .sale-price {
        font-size: 13px;
      }

      .old-price,
      .discount {
        font-size: 11px;
      }

      .slide-btn {
        width: 30px;
        height: 30px;
        font-size: 20px;
        opacity: 1;
        visibility: visible;
      }

      .slide-btn.left {
        left: 7px;
      }

      .slide-btn.right {
        right: 7px;
      }

      .quick-view {
        display: none;
      }

      .image-box:hover .rating {
        opacity: 1;
        visibility: visible;
      }
    }

    @media (max-width: 380px) {
      .filter-sidebar {
        width: 270px;
        max-width: 90%;
      }

      .price-inputs {
        grid-template-columns: 1fr;
      }

      .go-btn {
        width: 100%;
      }

      .product-grid {
        grid-template-columns: 1fr;
      }
    }

    /*----------------------------------------sidebar----------------------------------------*/
    .sidebar_cart_open {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f6fa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #160e82;
  font-size: 22px;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.sidebar_cart_open:hover {
  background: #160e82;
  color: #fff;
}

.sidebar_cart_count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 19px;
  height: 19px;
  background: #160e82;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.sidebar_cart_overlay {
  position: fixed;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: 9998;
}

.sidebar_cart_overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar_cart {
  position: fixed;
  top: 0;
  right: -560px;
  width: 540px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  color: #160e82;
  font-family: Arial, sans-serif;
}

.sidebar_cart.active {
  right: 0;
}

.sidebar_cart_header {
  height: 52px;
  min-height: 52px;
  padding: 0 24px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.sidebar_cart_header h3 {
  font-size: 18px;
  font-weight: 800;
}

.sidebar_cart_close {
  width: 35px;
  height: 35px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 30px;
  color: #111827;
  transition: 0.25s ease;
}

.sidebar_cart_close:hover {
  color: #160e82;
  transform: rotate(90deg);
}

.sidebar_cart_body {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 18px;
}

.sidebar_cart_body::-webkit-scrollbar {
  width: 7px;
}

.sidebar_cart_body::-webkit-scrollbar-thumb {
  background: #8a8a8a;
  border-radius: 20px;
}

.sidebar_cart_timer {
    background: #160e82;
    text-align: center;
    padding: 9px 12px;
    font-size: 11px;
    color: #fff4f4;
}

.sidebar_cart_pin {
  margin: 14px 20px;
  border: 1px solid #e1e4ea;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  color: #333b4f;
  background: #fff;
}

.sidebar_cart_pin i {
  font-size: 20px;
  color: #4b5563;
}

.sidebar_cart_pin strong {
  color: #160e82;
  font-weight: 800;
}

.sidebar_cart_offer {
  margin: 0 20px 13px;
  border: 1px solid #e5e7eb;
  background: #fffdf8;
  padding: 13px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.sidebar_cart_offer h4 {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}

.sidebar_cart_offer h4 span {
  color: #008a3d;
}

.sidebar_cart_offer p {
  font-size: 12px;
  color: #000;
}

.sidebar_cart_offer button {
  border: 1px solid #d9dde7;
  background: #fff;
  color: #160e82;
  padding: 7px 9px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.sidebar_cart_product {
  margin: 0 20px 14px;
  border: 1px solid #eedbff;
  background: #fff;
}

.sidebar_cart_offer_title {
  background: #eee0ff;
  padding: 9px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #160e82;
  font-size: 13px;
}

.sidebar_cart_offer_title button {
  background: #160e82;
  color: #fff;
  border: none;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.sidebar_cart_item {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 14px;
  padding: 12px;
  position: relative;
}

.sidebar_cart_img {
  width: 105px;
  height: 160px;
  background: #f7f7f7;
  overflow: hidden;
}

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

.sidebar_cart_info h4 {
  font-size: 14px;
  color: #160e82;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  padding-right: 22px;
}

.sidebar_cart_price {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}

.sidebar_cart_price strong {
  font-size: 14px;
  color: #000;
}

.sidebar_cart_price del {
  color: #7b8191;
  font-size: 12px;
}

.sidebar_cart_price span {
  color: #009b3a;
  font-size: 12px;
  font-weight: 800;
}

.sidebar_cart_info p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.7;
}

.sidebar_cart_info p b {
  color: #160e82;
  font-weight: 500;
}

.sidebar_cart_lowest {
  color: #160e82;
  font-size: 13px;
  margin-top: 3px;
}

.sidebar_cart_qty {
  width: 100px;
  height: 34px;
  display: flex;
  border: 1px solid #d9dde7;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 32px;
}

.sidebar_cart_qty button {
  width: 33px;
  border: none;
  background: #fff;
  color: #9ca3af;
  font-size: 19px;
  cursor: pointer;
}

.sidebar_cart_qty input {
  width: 60px;
  border: none;
  outline: none;
  text-align: center;
  font-size: 14px;
  color: #160e82;
  padding-bottom: 14px;
}

.sidebar_cart_delete {
  position: absolute;
  right: 16px;
  bottom: 18px;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  font-size: 18px;
}

.sidebar_cart_delete:hover {
  color: #ef4444;
}

.sidebar_cart_return {
  margin: 0 20px 22px;
  border: 1px solid #ffc9ef;
  background: #fff0fb;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.sidebar_cart_secure {
  text-align: center;
  padding: 15px 20px 12px;
}

.sidebar_cart_secure h4 {
  color: #160e82;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}

.sidebar_cart_payments {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar_cart_payments span {
  min-width: 44px;
  height: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #fff;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #160e82;
}

.sidebar_cart_summary {
  margin: 18px 13px 10px;
  border: 1px solid #e5e7eb;
  padding: 18px;
  background: #fff;
}

.sidebar_cart_summary h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}

.summary_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
  color: #4d5875;
  font-size: 12px;
}

.summary_row .green {
  color: #008a3d;
  font-weight: 600;
}

.summary_row.total {
  padding-top: 14px;
  margin-top: 8px;
  border-top: 1px dashed #d7d7d7;
  color: #160e82;
  font-size: 14px;
  font-weight: 800;
}

.sidebar_cart_cashback {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  color: #008a3d;
  font-size: 12px;
}

.sidebar_cart_benefits {
  margin: 10px 13px 18px;
  background: #f4f6ff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 22px 12px;
  gap: 10px;
}

.sidebar_cart_benefits div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #160e82;
  font-weight: 800;
  font-size: 16px;
  border-right: 1px solid #dfe3f0;
}

.sidebar_cart_benefits div:last-child {
  border-right: none;
}

.sidebar_cart_benefits i {
  font-size: 28px;
}

.sidebar_cart_footer {
  padding: 14px 18px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sidebar_cart_footer div {
  font-size: 13px;
  color: #6b7280;
}

.sidebar_cart_footer strong {
  display: block;
  font-size: 19px;
  color: #160e82;
  margin-top: 3px;
}

.sidebar_cart_footer button {
  flex: 1;
  height: 48px;
  border: none;
  background: linear-gradient(135deg, #f30b6c, #160e82);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.sidebar_cart_footer button:hover {
  background: #160e82;
}

@media (max-width: 575px) {
  .sidebar_cart {
    width: 100%;
    right: -100%;
  }

  .sidebar_cart_item {
    grid-template-columns: 92px 1fr;
  }

  .sidebar_cart_img {
    width: 92px;
    height: 138px;
  }

  .sidebar_cart_benefits {
    grid-template-columns: 1fr;
  }

  .sidebar_cart_benefits div {
    border-right: none;
    border-bottom: 1px solid #dfe3f0;
    padding-bottom: 12px;
  }

  .sidebar_cart_benefits div:last-child {
    border-bottom: none;
  }
}
/*------------------------checout page ----------------------------------*/
 :root {
      --theme-color: #f30b6c;
      --theme-dark: #f30b6c;
      --theme-light: #fff2f8;
      --text-dark: #111827;
      --text-muted: #6b7280;
      --border-color: #d9dde7;
      --bg-light: #fbfbf4;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f7f7f7;
      color: var(--text-dark);
    }

    .checkout-wrapper {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      min-height: 100vh;
      background: #fff;
    }

    .checkout-left {
      background: var(--bg-light);
      padding: 28px 42px;
      border-right: 1px solid #e5e7eb;
    }

    .checkout-right {
      background: #fafafa;
      padding: 28px 42px;
    }

    .section-title {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 14px;
      color: #000;
    }

    .top-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .signin-link {
      font-size: 13px;
      color: var(--theme-color);
      text-decoration: underline;
    }

    .form-group {
      margin-bottom: 12px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }

    .form-row-three {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }

    input,
    select {
      width: 100%;
      height: 48px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      background: #fff;
      padding: 0 14px;
      outline: none;
      font-size: 14px;
      color: var(--text-dark);
      transition: 0.25s ease;
    }

    /* input:focus,
    select:focus {
      border-color: var(--theme-color);
      box-shadow: 0 0 0 2px rgba(243, 11, 108, 0.15);
    } */

    .email-input {
      border-color: var(--theme-color);
    }

    .checkbox-line,
    .radio-line {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #111827;
      margin-bottom: 10px;
      cursor: pointer;
    }

    .checkbox-line input,
    .radio-line input {
      width: 15px;
      height: 15px;
      accent-color: var(--theme-color);
      cursor: pointer;
    }

    .small-text {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: -6px;
      margin-bottom: 14px;
    }

    .shipping-method-box {
      height: 58px;
      background: #f1f2e9;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6b7280;
      font-size: 13px;
      margin-bottom: 26px;
    }

    .payment-card {
      border: 1px solid var(--border-color);
      background: #fff;
      border-radius: 9px;
      overflow: hidden;
      margin-bottom: 14px;
    }

    .payment-option {
      padding: 14px;
      border-bottom: 1px solid var(--border-color);
      cursor: pointer;
      transition: 0.25s ease;
    }

    .payment-option:last-child {
      border-bottom: none;
    }

    .payment-option.active {
      border: 2px solid var(--theme-color);
      background: var(--theme-light);
    }

    .payment-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .payment-left {
      display: flex;
      align-items: flex-start;
      gap: 9px;
    }

    .payment-left input {
      width: 15px;
      height: 15px;
      accent-color: var(--theme-color);
      margin-top: 2px;
    }

    .payment-title {
      font-size: 13px;
      font-weight: 800;
      line-height: 1.4;
    }

    .payment-icons {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .pay-chip {
      height: 22px;
      min-width: 34px;
      border: 1px solid #ddd;
      border-radius: 4px;
      background: #fff;
      font-size: 10px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 6px;
      color: #160e82;
    }

    .payment-desc {
      font-size: 12px;
      color: #374151;
      margin-top: 14px;
      line-height: 1.6;
      padding-left: 24px;
    }

    .billing-card {
      border: 1px solid var(--border-color);
      border-radius: 9px;
      overflow: hidden;
      background: #fff;
      margin-bottom: 24px;
    }

    .billing-option {
      padding: 14px;
      border-bottom: 1px solid var(--border-color);
      cursor: pointer;
      transition: 0.25s ease;
    }

    .billing-option:last-child {
      border-bottom: none;
    }

    .billing-option.active {
      border: 2px solid var(--theme-color);
      background: var(--theme-light);
    }

    .sms-consent {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      font-size: 12px;
      line-height: 1.5;
      color: #374151;
      margin-bottom: 16px;
    }

    .sms-consent input {
      width: 15px;
      height: 15px;
      accent-color: var(--theme-color);
      margin-top: 2px;
    }

    .sms-consent a {
      color: var(--theme-color);
      text-decoration: underline;
    }

    .pay-now-btn {
      width: 100%;
      height: 52px;
      border: none;
      background: var(--theme-color);
      color: #fff;
      font-size: 15px;
      font-weight: 800;
      border-radius: 9px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .pay-now-btn:hover {
      background: var(--theme-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(243, 11, 108, 0.25);
    }

    /* RIGHT ORDER SUMMARY */

    .order-product {
      display: grid;
      grid-template-columns: 68px 1fr auto;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 22px;
    }

    .product-img {
      width: 68px;
      height: 82px;
      background: #eee;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
    }

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

    .product-count {
      position: absolute;
      top: -6px;
      right: -6px;
      background: #111827;
      color: #fff;
      width: 18px;
      height: 18px;
      font-size: 11px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }

    .product-details h4 {
      font-size: 13px;
      line-height: 1.4;
      margin-bottom: 5px;
      color: #111827;
    }

    .product-details p {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .product-price {
      text-align: right;
      font-size: 13px;
      color: #111827;
    }

    .product-price del {
      color: #777;
      display: block;
      font-size: 11px;
      margin-bottom: 2px;
    }

    .discount-box {
      display: grid;
      grid-template-columns: 1fr 78px;
      gap: 10px;
      margin-bottom: 22px;
    }

    .discount-box input {
      height: 48px;
    }

    .apply-btn {
      border: none;
      border-radius: 8px;
      background: #e5e7eb;
      color: #555;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.25s ease;
    }

    .apply-btn:hover {
      background: var(--theme-color);
      color: #fff;
    }

    .summary-lines {
      border-bottom: 1px solid #e5e7eb;
      padding-bottom: 16px;
      margin-bottom: 16px;
    }

    .summary-line {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 13px;
      font-size: 13px;
      color: #374151;
    }

    .summary-line span:last-child {
      color: #111827;
      font-weight: 700;
    }

    .summary-line small {
      color: var(--text-muted);
      display: block;
      margin-top: 4px;
      font-size: 11px;
    }

    .total-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 8px;
    }

    .total-row h3 {
      font-size: 20px;
      color: #111827;
    }

    .total-row .currency {
      font-size: 11px;
      color: var(--text-muted);
      margin-right: 6px;
    }

    .total-row strong {
      font-size: 22px;
      color: #000;
    }

    .tax-text {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .saving-text {
      font-size: 13px;
      color: #111827;
      font-weight: 800;
    }

    .saving-text span {
      color: var(--theme-color);
    }

    @media (max-width: 900px) {
      .checkout-wrapper {
        grid-template-columns: 1fr;
      }

      .checkout-left,
      .checkout-right {
        padding: 22px 18px;
      }

      .checkout-right {
        order: -1;
        border-bottom: 1px solid #e5e7eb;
      }
    }

    @media (max-width: 575px) {
      .form-row,
      .form-row-three {
        grid-template-columns: 1fr;
      }

      .order-product {
        grid-template-columns: 58px 1fr;
      }

      .product-price {
        grid-column: 2;
        text-align: left;
      }
    }

    /*-------------------------------------------------*/
.login-box {
    width: 100%;
    max-width: 550px;
    background: #ffffff;
    padding: 36px 30px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(243, 11, 108, 0.18);
    margin: auto;
    margin-top: 70px;
}

.login-box h2 {
  text-align: center;
  color: #f30b6c;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.login-box p {
  text-align: center;
  color: #555;
  font-size: 14px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: 0.3s ease;
}

.form-group input::placeholder {
  color: #777;
}

.form-group input:focus {
  border-color: #f30b6c;
  box-shadow: 0 0 0 3px rgba(243, 11, 108, 0.12);
}

.options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 24px;
  gap: 15px;
}

.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 14px;
  cursor: pointer;
}

.remember input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #f30b6c;
  cursor: pointer;
}

.options a {
  color: #f30b6c;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.options a:hover {
  text-decoration: underline;
}

.login-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #f30b6c, #160e82);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.login-btn:hover {
  background: #f30b6c;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(243, 11, 108, 0.28);
}

.signup-text {
  text-align: center;
  margin-top: 24px;
  color: #555;
  font-size: 14px;
}

.signup-text a {
  color: #f30b6c;
  font-weight: 700;
  text-decoration: none;
}

.signup-text a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  body {
    padding: 15px;
  }

  .login-box {
    padding: 30px 22px;
    border-radius: 16px;
  }

  .login-box h2 {
    font-size: 24px;
  }

  .options {
    align-items: center;
  }

  .options a,
  .remember {
    font-size: 13px;
  }
}

/*------------------------------*/
.signin-wrapper {
    width: 100%;
    max-width: 550px;
    background: #ffffff;
    padding: 38px 32px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(243, 11, 108, 0.18);
    margin: auto;
    margin-top: 70px;
}

    .signin-header {
      text-align: center;
      margin-bottom: 32px;
    }

    .signin-header h2 {
      color: #f30b6c;
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .signin-header p {
      color: #666;
      font-size: 14px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      color: #222;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .form-group input {
      width: 100%;
      height: 50px;
      padding: 0 15px;
      border: 1px solid #dddddd;
      border-radius: 10px;
      font-size: 15px;
      color: #333333;
      outline: none;
      transition: 0.3s ease;
      background: #ffffff;
    }

    .form-group input::placeholder {
      color: #777777;
    }

    .form-group input:focus {
      border-color: #f30b6c;
      box-shadow: 0 0 0 3px rgba(243, 11, 108, 0.12);
    }

    .signin-options {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 5px 0 24px;
      gap: 12px;
    }

    .remember {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #444;
      font-size: 14px;
      cursor: pointer;
    }

    .remember input[type="checkbox"] {
      width: 14px;
      height: 14px;
      accent-color: #f30b6c;
      cursor: pointer;
    }

    .signin-options a {
      color: #f30b6c;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
    }

    .signin-options a:hover {
      text-decoration: underline;
    }

    .signin-btn {
      width: 100%;
      height: 52px;
      border: none;
      border-radius: 10px;
      background: #f30b6c;
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .signin-btn:hover {
      background: #f30b6c;
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(243, 11, 108, 0.28);
    }

    .divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 26px 0;
      color: #999;
      font-size: 13px;
    }

    .divider::before,
    .divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: #eeeeee;
    }

    .google-btn {
      width: 100%;
      height: 50px;
      border: 1px solid #dddddd;
      border-radius: 10px;
      background: #ffffff;
      color: #333333;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .google-btn:hover {
      border-color: #f30b6c;
      color: #f30b6c;
      box-shadow: 0 8px 18px rgba(243, 11, 108, 0.12);
    }

    .signup-text {
      text-align: center;
      margin-top: 24px;
      color: #555;
      font-size: 14px;
    }

    .signup-text a {
      color: #f30b6c;
      font-weight: 700;
      text-decoration: none;
    }

    .signup-text a:hover {
      text-decoration: underline;
    }

    @media (max-width: 480px) {
      .signin-wrapper {
        padding: 30px 22px;
        border-radius: 16px;
      }

      .signin-header h2 {
        font-size: 25px;
      }

      .signin-options a,
      .remember {
        font-size: 13px;
      }
    }

    /*-----------------------------------------------------*/
    section.privacy_policy {
    padding-top: 60px;
}
/* ========== BRANDS MEGA MENU ========== */
.mega-menu-brands {
    min-width: 600px;
    padding: 20px 0 !important;
}

/* Wrapper with scroll */
.brands-wrapper {
    position: relative;
    padding: 5px 0;
}

.brands-wrapper.has-scroll {
    max-height: 380px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

/* Custom Scrollbar */
.brands-wrapper.has-scroll::-webkit-scrollbar {
    width: 6px;
}

.brands-wrapper.has-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.brands-wrapper.has-scroll::-webkit-scrollbar-thumb {
    background: #f30b6c;
    border-radius: 10px;
}

.brands-wrapper.has-scroll::-webkit-scrollbar-thumb:hover {
    background: #f30b6c;
}

/* Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    padding: 5px 0;
}

/* Brand Item */
.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid transparent;
    min-height: 100px;
}

.brand-item:hover {
    background: #fff;
    border-color: #f30b6c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 11, 108, 0.15);
}

.brand-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.05);
}

.brand-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f30b6c, #f30b6c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.brand-name {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-name {
    color: #f30b6c;
}

/* View All Link */
.brands-view-all {
    text-align: center;
    padding-top: 12px;
    margin-top: 10px;
    border-top: 1px solid #e9ecef;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f30b6c;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(243, 11, 108, 0.08);
}

.view-all-link:hover {
    background: #f30b6c;
    color: #fff;
    transform: translateX(3px);
}

.view-all-link i {
    transition: all 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(5px);
}

/* ========== RESPONSIVE BRANDS GRID ========== */
@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .mega-menu-brands {
        min-width: auto;
        width: 100%;
    }
    .brands-wrapper.has-scroll {
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .brands-wrapper.has-scroll {
        max-height: 280px;
    }
}

@media (max-width: 576px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-item {
        min-height: 80px;
        padding: 10px 6px;
    }
    .brand-item img {
        width: 40px;
        height: 40px;
    }
    .brand-placeholder {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .brand-name {
        font-size: 11px;
    }
}

/* ========================================
   MORE CATEGORIES DROPDOWN
======================================== */
 
.nav-item-more:hover .mega-menu-more {
    transform: translateX(0) translateY(0);
}

.more-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.more-category-item {
    padding: 4px 0;
}

.more-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.more-category-link:hover {
    background: #f0f0f0;
    color: #f30b6c;
}

.more-category-link i {
    font-size: 12px;
    color: #999;
}

.more-subcategories {
    padding-left: 16px;
    margin: 4px 0 8px 0;
    border-left: 2px solid #f30b6c;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.more-sub-link {
    padding: 4px 10px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.more-sub-link:hover {
    background: #f8f0f5;
    color: #f30b6c;
    padding-left: 14px;
}

/* ========================================
   MOBILE HEADER
======================================== */
   

/* .mobile-menu-list > li > a[aria-expanded="true"] i {
    transform: rotate(180deg);
} */

.mobile-submenu {
    list-style: none;
    padding: 0 20px 10px 30px;
    margin: 0;
    background: #fafafa;
    display: none;
}

.mobile-submenu.open {
    display: block;
}
 

.mobile-login-btn {
    display: block;
    margin: 20px;
    padding: 12px;
    background: #f30b6c;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-login-btn:hover {
    background: #f30b6c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 11, 108, 0.3);
}



.empty-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #f30b6c;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.empty-btn:hover {
    background: #f30b6c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 11, 108, 0.3);
    color: #fff;
}

/* .search-wrapper {
    position: relative;
} */

.search-dropdown {
    display: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-top: 4px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 999;
    border: 1px solid #f0f0f0;
}

.search-dropdown .result-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.15s ease;
    text-decoration: none;
    color: #333;
}

.search-dropdown .result-item:hover {
    background: #f8f8f8;
}

.search-dropdown .result-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
}

.search-dropdown .result-item .info {
    flex: 1;
}

.search-dropdown .result-item .info .name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
}

.search-dropdown .result-item .info .price {
    font-size: 13px;
    color: #f30b6c;
    font-weight: 600;
}

.search-dropdown .result-item .info .desc {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-dropdown .no-results {
    padding: 16px 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.search-dropdown .loading-results {
    padding: 16px 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.search-dropdown::-webkit-scrollbar {
    width: 6px;
}
.search-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.search-dropdown::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}


.barbie-img-box .cart-btn:hover:not(:disabled):not(.sold-out) {
    background: #f30b6c;
    color: #fff;
}

/* Sold Out State - Disabled & Dull */
.barbie-img-box .cart-btn.sold-out,
.barbie-img-box .cart-btn:disabled {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
    transform: none;
}

.barbie-img-box .cart-btn.sold-out:hover,
.barbie-img-box .cart-btn:disabled:hover {
    background: #e9ecef;
    color: #adb5bd;
    transform: none;
    box-shadow: none;
}

/* Icon Circle Backgrounds */
.icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle.pink { background: #fce4ec; }
.icon-circle.green { background: #ecfdf5; }
.icon-circle.orange { background: #fef3c7; }

.icon-circle i {
    font-size: 18px;
}

.icon-circle.pink i { color: #f30b6c; }
.icon-circle.green i { color: #10b981; }
.icon-circle.orange i { color: #f59e0b; }

