* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: #f4f7ff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* =========================================
         HEADER
      ========================================= */

.hdr991v {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 99999;
}

/* =========================================
         TOP NAVBAR
      ========================================= */

.top991v {
  width: 100%;
  background: white;
  position: relative;
  z-index: 999;
}

.cnt991v {
  width: 100%;
  max-width: 1450px;
  margin: auto;

  padding: 4px 35px;

  height: 74px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
}

/* =========================================
         LEFT SIDE
      ========================================= */

.leftZone991 {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* =========================================
         FLOATING LOGO
      ========================================= */

.logo551v {
  position: relative;
  z-index: 9999;
  margin-top: 60px;
}

.logo551v img {
  width: 140px;
  height: 140px;

  border-radius: 50%;

  object-fit: cover;

  background: white;

  padding: 8px;

  border: 6px solid white;

  position: relative;
  top: 18px;

  transition: 0.4s;
}

.logo551v img:hover {
  transform: scale(1.04) rotate(-4deg);
}

/* =========================================
NAVBAR LEFT SECTION
========================================= */

.leftZone991 {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

/* =========================================
PREMIUM BRAND LOGO
========================================= */

.brand991x {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  line-height: 1;
  margin-top: 1rem;
}

/* MAIN TITLE */

.brand991x h1 {
  margin: 0;

  font-size: 30px;

  font-weight: 900;

  letter-spacing: 5px;

  line-height: 1;

  text-transform: uppercase;

  background: linear-gradient(135deg, #f7d58a, #b88a44, #fff2c4, #b88a44);

  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: brandGlow991 6s linear infinite;

  font-family: "Poppins", sans-serif;
}

/* GOLD LINE */

.brand991x h1::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -6px;

  width: 70%;

  height: 2px;

  border-radius: 50px;

  background: linear-gradient(90deg, #b88a44, transparent);
}

/* SUBTITLE */

.brand991x span {
  margin-top: 12px;

  font-size: 10px;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: #d4af72;

  font-weight: 600;

  white-space: nowrap;

  font-family: "Poppins", sans-serif;
}

/* ANIMATION */

@keyframes brandGlow991 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* =========================================
TABLET
========================================= */

@media (max-width: 992px) {
  .brand991x h1 {
    font-size: 25px;

    letter-spacing: 4px;
  }

  .brand991x span {
    font-size: 9px;

    letter-spacing: 2px;
  }
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 768px) {
  .cnt991v {
    justify-content: space-between;
    gap: 15px;
  }

  .leftZone991 {
    gap: 10px;
    flex: 1;
    overflow: hidden;
  }

  .brand991x {
    max-width: 170px;
  }

  .brand991x h1 {
    font-size: 15px;

    letter-spacing: 2px;
  }

  .brand991x h1::after {
    bottom: -5px;

    width: 60%;
  }

  .brand991x span {
    font-size: 7px;

    letter-spacing: 1.5px;

    margin-top: 8px;
  }

  /* HAMBURGER SPACE */

  .mbWrap991v {
    margin-left: auto;
    padding-left: 12px;
    flex-shrink: 0;
  }
}

/* =========================================
SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .brand991x {
    max-width: 140px;
    margin-top: 1rem;
  }

  .brand991x h1 {
    font-size: 13px !important;

    letter-spacing: 1.5px;
  }

  .brand991x span {
    font-size: 6px;

    letter-spacing: 1px;
  }

  .logo551v img {
    width: 110px !important;
    height: 110px !important;
    object-fit: contain;
  }
  .logo551v {
    margin-top: -0.5rem;
    margin-left: -0.5rem;
    border-radius: 100%;
  }
}
/* =========================================
         DESKTOP MENU
      ========================================= */

.deskMenu991v {
  display: flex;
  align-items: center;
  gap: 14px;
}

.deskMenu991v li a {
  position: relative;

  padding: 12px 24px;

  color: #111827;
  font-size: 14px;
  font-weight: 700;

  border-radius: 50px;

  overflow: hidden;

  transition: 0.4s;

  display: flex;
  align-items: center;
  justify-content: center;
}

.deskMenu991v li a::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(135deg, #7b61ff, #00c2ff);

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.4s;

  border-radius: 50px;

  z-index: -1;
}

.deskMenu991v li a:hover::before {
  transform: scaleX(1);
}

.deskMenu991v li a:hover {
  color: white;

  transform: translateY(-3px);
}

/* =========================================
         SUB NAVBAR
      ========================================= */

.sub991v {
  width: 100%;
  background: white;

  margin-top: 18px;

  border-top: 1px solid #f1f1f1;
}

.subMenu991v {
  width: 100%;
  max-width: 1450px;

  margin: auto;
  padding: 0 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;
  flex-wrap: wrap;
}

.subMenu991v > li {
  position: relative;
  padding: 14px 0;
}

.subMenu991v > li > a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 13px 24px;

  border-radius: 15px;

  background: #f8fafc;

  color: #111827;
  font-size: 14px;
  font-weight: 700;

  transition: 0.4s;
}

.subMenu991v > li > a:hover {
  background: linear-gradient(135deg, #7b61ff, #00c2ff);

  color: white;

  transform: translateY(-3px);
}

/* =========================================
         DROPDOWN
      ========================================= */

.drop991v {
  position: absolute;

  top: 110%;
  left: 0;

  width: 310px;

  background: white;

  border-radius: 24px;

  padding: 18px;

  opacity: 0;
  visibility: hidden;

  transform: translateY(25px) scale(0.95);

  transition: 0.45s;

  border: 1px solid #f1f1f1;
}

.drop991v.activeDrop991 {
  opacity: 1;
  visibility: visible;

  transform: translateY(0) scale(1);
}

.drop991v li {
  position: relative;
}

.drop991v li a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 15px;

  margin-bottom: 10px;

  border-radius: 14px;

  background: #f8fafc;

  color: #111827;
  font-size: 14px;
  font-weight: 600;

  transition: 0.35s;
}

.drop991v li a:hover {
  background: linear-gradient(135deg, #7b61ff, #00c2ff);

  color: white;

  transform: translateX(5px);
}

/* =========================================
         SAME PLACE DROPDOWN
      ========================================= */

.deep991v {
  width: 100%;

  margin-top: 10px;

  display: none;

  animation: fadeDown991 0.4s ease;
}

.deep991v.activeDeep991 {
  display: block;
}

@keyframes fadeDown991 {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.deep991v li a {
  display: block;

  padding: 12px 14px;

  margin-bottom: 8px;

  border-radius: 12px;

  background: #fff1f2;

  color: #111827;
  font-size: 13px;
  font-weight: 600;

  transition: 0.35s;
}

.deep991v li a:hover {
  background: linear-gradient(135deg, #7b61ff, #00c2ff);

  color: white;

  transform: translateX(5px);
}

/* =========================================
         MOBILE BUTTON
      ========================================= */

.mbWrap991v {
  display: none;
}

.mb991v {
  width: 55px;
  height: 55px;

  border: none;
  border-radius: 18px;

  background: linear-gradient(135deg, #7b61ff, #00c2ff);

  color: white;
  font-size: 22px;

  cursor: pointer;

  transition: 0.4s;
}

.mb991v:hover {
  transform: scale(1.06) rotate(4deg);
}

.catTxt991 {
  font-size: 14px;
  font-weight: 700;

  color: #111827;
}

/* =========================================
         MOBILE MENU
      ========================================= */

.mobile991v {
  position: fixed;

  top: 0;
  right: -100%;

  width: 340px;
  max-width: 100%;

  height: 100vh;

  background: white;

  z-index: 999999;

  overflow-y: auto;

  transition: 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile991v.active991 {
  right: 0;
}

.mobileTop991 {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 22px;

  border-bottom: 1px solid #f1f1f1;
}

.mobileTop991 h2 {
  font-size: 24px;
  font-weight: 800;

  background: linear-gradient(135deg, #7b61ff, #00c2ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.close991 {
  width: 45px;
  height: 45px;

  border: none;

  border-radius: 14px;

  background: #f4f4f4;

  font-size: 18px;

  cursor: pointer;
}

.mobileList991 {
  padding: 20px;
}

.mobileList991 li {
  margin-bottom: 14px;
}

.mobileList991 li a {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 16px 18px;

  border-radius: 18px;

  background: #f8fafc;

  color: #111827;

  font-weight: 700;

  transition: 0.35s;
}

.mobileList991 li a:hover {
  background: linear-gradient(135deg, #7b61ff, #00c2ff);

  color: white;

  transform: translateX(4px);
}

/* =========================================
   MOBILE CATEGORY ACTIVE TEXT BLACK
========================================= */

.mobileSubDrop991 a {
  color: #111827 !important;
}

.mobileSubDrop991 a:hover {
  color: #111827 !important;
}

.mobileSubDrop991 a i {
  color: #111827 !important;
}

.mobileSubDrop991 {
  display: none;
  padding-top: 10px;
}

.mobileSubDrop991.activeMobDrop991 {
  display: block;
}

.mobileSubDrop991 a {
  margin-bottom: 10px;

  background: #fff1f2 !important;
}

.mobileOverlay991 {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.35);

  opacity: 0;
  visibility: hidden;

  transition: 0.4s;

  z-index: 999998;

  backdrop-filter: blur(4px);
}

.mobileOverlay991.activeOverlay991 {
  opacity: 1;
  visibility: visible;
}

/* =========================================
         RESPONSIVE
      ========================================= */

@media (max-width: 991px) {
  .deskMenu991v {
    display: none;
  }

  .sub991v {
    display: none;
  }

  .mbWrap991v {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cnt991v {
    padding: 4px 16px;
    height: 65px;
  }

  .logo551v img {
    width: 105px;
    height: 105px;
    top: 10px;
  }

  .brand991x h1 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-top: -20px;
    margin-right: 5px;
  }
}

/* =========================================
   HERO SECTION
========================================= */

.rxv921-hero-wrap {
  position: relative;

  width: 100%;

  min-height: 100vh;

  padding: 220px 7% 120px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 80px;

  overflow: hidden;

  background: linear-gradient(135deg, #fff, #fff6fb, #f7f4ff);
}

/* =========================================
   LEFT CONTENT
========================================= */

.rxv921-left {
  flex: 1;

  position: relative;

  z-index: 5;
}

/* BADGE */

.rxv921-badge {
  display: inline-flex;
  align-items: center;

  padding: 12px 24px;

  border-radius: 60px;

  background: rgba(255, 64, 129, 0.08);

  border: 1px solid rgba(255, 64, 129, 0.15);

  color: #c2185b;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 28px;

  backdrop-filter: blur(12px);
}

/* TITLE */

.rxv921-left h1 {
  font-size: 78px;

  line-height: 1.08;

  font-weight: 900;

  color: #111;

  margin-bottom: 18px;
}

/* GRADIENT */

.rxv921-left h1 span {
  background: linear-gradient(135deg, #ff4f93, #7b61ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */

.rxv921-left h2 {
  font-size: 34px;

  color: #444;

  margin-bottom: 24px;
}

/* TEXT */

.rxv921-left p {
  max-width: 650px;

  font-size: 19px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 40px;
}

/* =========================================
   FEATURES
========================================= */

.rxv921-features {
  display: flex;
  flex-wrap: wrap;

  gap: 18px;

  margin-bottom: 40px;
}

/* FEATURE BOX */

.rxv921-feature-box {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 22px;

  border-radius: 18px;

  background: #fff;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

  font-weight: 700;

  color: #222;

  transition: 0.4s ease;
}

.rxv921-feature-box:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 40px rgba(194, 24, 91, 0.12);
}

.rxv921-feature-box i {
  color: #c2185b;

  font-size: 20px;
}

/* =========================================
   BUTTONS
========================================= */

.rxv921-buttons {
  display: flex;
  align-items: center;

  gap: 18px;

  flex-wrap: wrap;
}

/* MAIN BUTTON */

.rxv921-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 34px;

  border-radius: 60px;

  background: linear-gradient(135deg, #ff4f93, #c2185b);

  color: #fff;

  font-size: 16px;
  font-weight: 700;

  text-decoration: none;

  box-shadow: 0 18px 35px rgba(194, 24, 91, 0.3);

  transition: 0.4s ease;
}

.rxv921-btn-main:hover {
  transform: translateY(-5px) scale(1.03);
}

/* OUTLINE */

.rxv921-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 34px;

  border-radius: 60px;

  border: 2px solid #e9d8ff;

  background: #fff;

  text-decoration: none;

  font-size: 16px;
  font-weight: 700;

  color: #333;

  transition: 0.4s ease;
}

.rxv921-btn-outline:hover {
  background: #111;

  color: #fff;
}

/* =========================================
   RIGHT IMAGE AREA
========================================= */

.rxv921-right {
  flex: 1;

  position: relative;

  height: 700px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* SLIDES */

.rxv921-slide {
  position: absolute;

  width: 100%;
  max-width: 520px;

  height: 650px;

  border-radius: 42px;

  overflow: hidden;

  opacity: 0;

  transform: scale(0.88) translateY(50px);

  transition: all 1.2s ease;
}

/* ACTIVE */

.rxv921-active {
  opacity: 1;

  transform: scale(1) translateY(0);

  z-index: 3;
}

/* IMAGE */

.rxv921-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================================
   FLOATING CARDS
========================================= */

.rxv921-floating {
  position: absolute;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 18px 22px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(18px);

  border-radius: 24px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);

  z-index: 10;

  animation: rxv921float 4s ease-in-out infinite;
}

.rxv921-floating i {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #ff4f93, #7b61ff);

  color: #fff;

  font-size: 20px;
}

.rxv921-floating h4 {
  font-size: 18px;

  margin-bottom: 4px;

  color: #111;
}

.rxv921-floating p {
  font-size: 14px;

  color: #666;
}

/* POSITIONS */

.rxv921-float-one {
  top: 80px;
  left: -40px;
}

.rxv921-float-two {
  bottom: 80px;
  right: -20px;
}

/* FLOAT */

@keyframes rxv921float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================================
   GLOW EFFECT
========================================= */

.rxv921-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(110px);

  z-index: 0;
}

.rxv921-glow1 {
  top: 120px;
  right: 150px;

  width: 280px;
  height: 280px;

  background: rgba(255, 64, 129, 0.18);
}

.rxv921-glow2 {
  bottom: 100px;
  left: 45%;

  width: 220px;
  height: 220px;

  background: rgba(123, 97, 255, 0.18);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .rxv921-hero-wrap {
    flex-direction: column;

    text-align: center;

    padding-top: 180px;
  }

  .rxv921-features {
    justify-content: center;
  }

  .rxv921-buttons {
    justify-content: center;
  }

  .rxv921-left h1 {
    font-size: 58px;
  }

  .rxv921-right {
    height: 560px;

    width: 100%;
  }

  .rxv921-slide {
    height: 540px;

    max-width: 420px;
  }

  .rxv921-float-one {
    left: 0;
  }

  .rxv921-float-two {
    right: 0;
  }
}

@media (max-width: 600px) {
  .rxv921-hero-wrap {
    padding: 170px 5% 80px;
  }

  .rxv921-left h1 {
    font-size: 40px;
  }

  .rxv921-left h2 {
    font-size: 24px;
  }

  .rxv921-left p {
    font-size: 16px;
  }

  .rxv921-right {
    height: 400px;
  }

  .rxv921-slide {
    height: 390px;

    max-width: 100%;

    border-radius: 28px;
  }

  .rxv921-floating {
    padding: 12px 15px;

    transform: scale(0.82);
  }

  .rxv921-feature-box {
    width: 100%;

    justify-content: center;
  }

  .rxv921-btn-main,
  .rxv921-btn-outline {
    width: 100%;

    justify-content: center;
  }
}

/* =========================================
   FEATURES
========================================= */

.hero-features {
  display: flex;
  flex-wrap: wrap;

  gap: 18px;

  margin-bottom: 45px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(0, 0, 0, 0.05);

  font-size: 15px;
  font-weight: 600;

  color: #333;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);

  transition: 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box i {
  color: #7b61ff;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 20px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 36px;

  border-radius: 60px;

  text-decoration: none;

  background: linear-gradient(135deg, #7b61ff, #00c2ff);

  color: white;

  font-size: 16px;
  font-weight: 600;

  box-shadow: 0 15px 35px rgba(91, 140, 255, 0.3);

  transition: 0.4s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-6px) scale(1.03);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;

  padding: 18px 34px;

  border-radius: 60px;

  text-decoration: none;

  background: white;

  color: #111;

  font-size: 16px;
  font-weight: 600;

  border: 1px solid rgba(0, 0, 0, 0.08);

  transition: 0.4s ease;
}

.hero-btn-secondary:hover {
  transform: translateY(-6px);

  background: #f4f7ff;
}

/* =========================================
   RIGHT IMAGES
========================================= */

.saree-hero-images {
  flex: 1;

  position: relative;

  min-height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.image-card {
  position: absolute;

  width: 420px;
  height: 560px;

  border-radius: 40px;

  overflow: hidden;

  opacity: 0;

  transform: scale(0.9) rotate(-4deg);

  transition: 1s ease;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-card.active {
  opacity: 1;

  transform: scale(1) rotate(0deg);
}

.image-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================================
   FLOATING CARDS
========================================= */

.floating-card {
  position: absolute;

  display: flex;
  align-items: center;
  gap: 15px;

  padding: 18px 22px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(16px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  animation: floatCard 4s ease-in-out infinite;

  z-index: 5;
}

.floating-card i {
  width: 50px;
  height: 50px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #7b61ff, #00c2ff);

  color: white;

  font-size: 18px;
}

.floating-card h4 {
  font-size: 16px;

  color: #111;

  margin-bottom: 4px;
}

.floating-card p {
  font-size: 13px;

  color: #666;
}

.card-one {
  top: 40px;
  left: 0;
}

.card-two {
  bottom: 60px;
  right: 0;
}

/* =========================================
   GLOW EFFECTS
========================================= */

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  z-index: 0;
}

.glow-one {
  width: 320px;
  height: 320px;

  background: rgba(123, 97, 255, 0.25);

  top: -80px;
  left: -80px;
}

.glow-two {
  width: 280px;
  height: 280px;

  background: rgba(0, 194, 255, 0.25);

  bottom: -80px;
  right: -80px;
}

/* =========================================
   ANIMATION
========================================= */

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {
  .saree-hero-section {
    flex-direction: column;

    text-align: center;

    padding-top: 220px;
  }

  .saree-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features,
  .hero-buttons {
    justify-content: center;
  }

  .saree-hero-images {
    width: 100%;

    min-height: 600px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .saree-hero-section {
    padding: 190px 20px 80px;

    gap: 40px;
  }

  .saree-hero-content h1 {
    font-size: 48px;
  }

  .saree-hero-content h2 {
    font-size: 24px;
  }

  .saree-hero-content p {
    font-size: 16px;

    line-height: 1.8;
  }

  .image-card {
    width: 280px;
    height: 380px;

    border-radius: 28px;
  }

  .floating-card {
    transform: scale(0.9);
  }

  .card-one {
    left: 10px;
    top: 10px;
  }

  .card-two {
    right: 10px;
    bottom: 10px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;

    justify-content: center;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 500px) {
  .saree-hero-content h1 {
    font-size: 38px;
  }

  .saree-hero-content h2 {
    font-size: 20px;
  }

  .hero-badge {
    font-size: 12px;
  }

  .feature-box {
    width: 100%;

    justify-content: center;
  }

  .image-card {
    width: 240px;
    height: 330px;
  }

  .floating-card {
    padding: 14px 16px;
  }

  .floating-card h4 {
    font-size: 14px;
  }

  .floating-card p {
    font-size: 12px;
  }
}

/* TABLET */

@media (max-width: 768px) {
  .neo-logo img {
    width: 72px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-content button {
    padding: 16px 30px;
  }
}

/* MOBILE */

@media (max-width: 500px) {
  .neo-container {
    width: 94%;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}
/* =========================================
   HERO SECTION
========================================= */

.csh721-hero {
  width: 100%;

  min-height: 100vh;

  padding: 180px 7% 100px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 70px;

  overflow: hidden;

  position: relative;

  background: linear-gradient(135deg, #fff, #fff5fa, #f7f3ff);
}

/* =========================================
   LEFT SIDE
========================================= */

.csh721-left {
  flex: 1;

  z-index: 5;
}

.csh721-tag {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(255, 64, 129, 0.1);

  color: #c2185b;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 28px;
}

.csh721-left h1 {
  font-size: 80px;

  line-height: 1.05;

  font-weight: 900;

  color: #111;

  margin-bottom: 18px;
}

.csh721-left h1 span {
  background: linear-gradient(135deg, #ff4f93, #7b61ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.csh721-left h2 {
  font-size: 34px;

  color: #444;

  margin-bottom: 24px;
}

.csh721-left p {
  max-width: 650px;

  font-size: 18px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 40px;
}

/* BUTTONS */

.csh721-buttons {
  display: flex;
  align-items: center;

  gap: 18px;

  flex-wrap: wrap;
}

.csh721-btn1 {
  padding: 18px 34px;

  border-radius: 60px;

  background: linear-gradient(135deg, #ff4f93, #c2185b);

  color: #fff;

  text-decoration: none;

  font-weight: 700;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 20px 40px rgba(194, 24, 91, 0.25);
}

.csh721-btn2 {
  padding: 18px 34px;

  border-radius: 60px;

  background: #fff;

  border: 2px solid #eee;

  color: #111;

  text-decoration: none;

  font-weight: 700;
}

/* =========================================
   RIGHT SIDE
========================================= */

.csh721-right {
  flex: 1;

  height: 620px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* SLIDES */

.csh721-slide {
  position: absolute;

  width: 520px;
  height: 620px;

  object-fit: cover;

  border-radius: 40px;

  opacity: 0;

  animation-duration: 9s;

  animation-iteration-count: infinite;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* IMAGE 1 */

.csh721-slide1 {
  animation-name: csh721Anim1;
}

/* IMAGE 2 */

.csh721-slide2 {
  animation-name: csh721Anim2;
}

/* IMAGE 3 */

.csh721-slide3 {
  animation-name: csh721Anim3;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes csh721Anim1 {
  0% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  33% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes csh721Anim2 {
  0% {
    opacity: 0;
  }

  33% {
    opacity: 0;
  }

  36% {
    opacity: 1;
  }

  63% {
    opacity: 1;
  }

  66% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes csh721Anim3 {
  0% {
    opacity: 0;
  }

  66% {
    opacity: 0;
  }

  69% {
    opacity: 1;
  }

  96% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* =========================================
   FLOATING CARDS
========================================= */

.csh721-card {
  position: absolute;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 18px 22px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(18px);

  border-radius: 22px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  z-index: 10;
}

.csh721-card i {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #ff4f93, #7b61ff);

  color: #fff;
}

.csh721-card h4 {
  font-size: 17px;

  color: #111;

  margin-bottom: 4px;
}

.csh721-card p {
  font-size: 14px;

  color: #666;
}

/* POSITIONS */

.csh721-card1 {
  top: 50px;
  left: -10px;
}

.csh721-card2 {
  bottom: 50px;
  right: -10px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .csh721-hero {
    flex-direction: column;

    text-align: center;

    padding-top: 150px;
  }

  .csh721-buttons {
    justify-content: center;
  }

  .csh721-left h1 {
    font-size: 56px;
  }

  .csh721-slide {
    width: 420px;
    height: 500px;
  }

  .csh721-right {
    height: 500px;
  }
}

@media (max-width: 600px) {
  .csh721-hero {
    padding: 140px 5% 80px;
  }

  .csh721-left h1 {
    font-size: 42px;
  }

  .csh721-left h2 {
    font-size: 24px;
  }

  .csh721-left p {
    font-size: 16px;
  }

  .csh721-slide {
    width: 100%;
    height: 370px;

    border-radius: 28px;
  }

  .csh721-right {
    width: 100%;
    height: 380px;
  }

  .csh721-buttons {
    flex-direction: column;
  }

  .csh721-btn1,
  .csh721-btn2 {
    width: 100%;

    justify-content: center;
  }

  .csh721-card {
    transform: scale(0.8);
  }

  .csh721-card1 {
    left: 0;
  }

  .csh721-card2 {
    right: 0;
  }
}
/* =========================================
   VIDEO SECTION
========================================= */

.lux-video-section {
  position: relative;

  width: 100%;

  padding: 120px 7%;

  overflow: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(123, 97, 255, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 194, 255, 0.12),
      transparent 30%
    ),
    linear-gradient(135deg, #ffffff, #f6f9ff, #edf4ff);
}

/* =========================================
   TOP CONTENT
========================================= */

.lux-video-top {
  text-align: center;

  max-width: 850px;

  margin: auto auto 70px;
}

.lux-video-badge {
  display: inline-flex;
  align-items: center;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(123, 97, 255, 0.1);

  color: #6d4cff;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 24px;

  border: 1px solid rgba(123, 97, 255, 0.12);

  backdrop-filter: blur(10px);
}

.lux-video-top h2 {
  font-size: 65px;

  line-height: 1.15;

  color: #111;

  margin-bottom: 20px;

  font-weight: 800;
}

.lux-video-top h2 span {
  background: linear-gradient(135deg, #7b61ff, #00c2ff);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.lux-video-top p {
  font-size: 19px;

  line-height: 1.9;

  color: #666;
}

/* =========================================
   VIDEO WRAPPER
========================================= */

.lux-video-wrapper {
  position: relative;

  width: 100%;

  display: flex;
  justify-content: center;
}

/* =========================================
   MAIN VIDEO CARD
========================================= */

.lux-main-video-card {
  position: relative;

  width: 100%;
  max-width: 1250px;

  border-radius: 40px;

  overflow: hidden;

  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);

  background: white;

  isolation: isolate;
}

/* =========================================
   VIDEO
========================================= */

.lux-fashion-video {
  width: 100%;
  height: 380px;

  object-fit: cover;

  display: block;

  transition: 0.5s ease;
}

.lux-main-video-card:hover .lux-fashion-video {
  transform: scale(1.03);
}

/* =========================================
   OVERLAY
========================================= */

.lux-video-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 40%);

  z-index: 1;
}

/* =========================================
   FLOATING CARDS
========================================= */

.lux-video-floating {
  position: absolute;

  z-index: 5;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 18px 24px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(14px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

  animation: floatVideoCard 4s ease-in-out infinite;
}

.lux-video-floating i {
  width: 55px;
  height: 55px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #7b61ff, #00c2ff);

  color: white;

  font-size: 20px;
}

.lux-video-floating h4 {
  font-size: 17px;

  color: #111;

  margin-bottom: 4px;
}

.lux-video-floating p {
  font-size: 13px;

  color: #666;
}

.card-left {
  left: 35px;
  bottom: 35px;
}

.card-right {
  right: 35px;
  top: 35px;
}

/* =========================================
   GLOW EFFECT
========================================= */

.video-glow {
  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  filter: blur(90px);

  z-index: 0;
}

.glow-left {
  background: rgba(123, 97, 255, 0.25);

  left: -100px;
  top: -50px;
}

.glow-right {
  background: rgba(0, 194, 255, 0.25);

  right: -100px;
  bottom: -50px;
}

/* =========================================
   ANIMATION
========================================= */

@keyframes floatVideoCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
  .lux-video-top h2 {
    font-size: 50px;
  }

  .lux-fashion-video {
    height: 620px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .lux-video-section {
    padding: 90px 20px;
  }

  .lux-video-top {
    margin-bottom: 45px;
  }

  .lux-video-top h2 {
    font-size: 38px;
  }

  .lux-video-top p {
    font-size: 16px;

    line-height: 1.8;
  }

  .lux-main-video-card {
    border-radius: 28px;
  }

  .lux-fashion-video {
    height: 480px;
  }

  .lux-video-floating {
    padding: 14px 16px;

    gap: 12px;

    border-radius: 18px;
  }

  .lux-video-floating i {
    width: 45px;
    height: 45px;

    font-size: 16px;
  }

  .lux-video-floating h4 {
    font-size: 14px;
  }

  .lux-video-floating p {
    font-size: 11px;
  }

  .card-left {
    left: 15px;
    bottom: 15px;
  }

  .card-right {
    right: 15px;
    top: 15px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 500px) {
  .lux-video-top h2 {
    font-size: 30px;
  }

  .lux-video-top p {
    font-size: 15px;
  }

  .lux-fashion-video {
    height: 360px;
  }

  .lux-video-floating {
    transform: scale(0.85);
  }

  .card-right {
    top: 8px;
    right: 8px;
  }

  .card-left {
    left: 8px;
    bottom: 8px;
  }
}

/* =========================================
   FEATURED PRODUCTS
========================================= */

.fpd482-section {
  padding: 120px 7%;

  background: linear-gradient(135deg, #ffffff, #f7faff, #edf4ff);
}

/* TOP */

.fpd482-top {
  text-align: center;

  max-width: 850px;

  margin: auto auto 70px;
}

.fpd482-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(125, 92, 255, 0.1);

  color: #7b61ff;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;
}

.fpd482-top h2 {
  font-size: 58px;

  color: #111;

  margin-bottom: 20px;
}

.fpd482-top h2 span {
  background: linear-gradient(135deg, #7b61ff, #00c6ff);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.fpd482-top p {
  font-size: 18px;

  line-height: 1.9;

  color: #666;
}

/* GRID */

.fpd482-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

/* CARD */

.fpd482-card {
  background: white;

  border-radius: 30px;

  overflow: hidden;

  cursor: pointer;

  position: relative;

  transition: 0.5s ease;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.fpd482-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */

.fpd482-image-box {
  position: relative;

  height: 420px;

  overflow: hidden;
}

.fpd482-image-box img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.6s ease;
}

.fpd482-card:hover .fpd482-image-box img {
  transform: scale(1.08);
}

/* OVERLAY */

.fpd482-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);

  display: flex;
  align-items: end;
  justify-content: center;

  padding-bottom: 35px;

  opacity: 0;

  transition: 0.4s ease;
}

.fpd482-card:hover .fpd482-overlay {
  opacity: 1;
}

/* BUTTON */

.fpd482-btn {
  border: none;

  padding: 14px 30px;

  border-radius: 50px;

  background: white;

  color: #111;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.4s ease;
}

.fpd482-btn:hover {
  transform: translateY(-4px);
}

/* TAG */

.fpd482-tag {
  position: absolute;

  top: 20px;
  left: 20px;

  padding: 10px 18px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(10px);

  font-size: 13px;
  font-weight: 600;

  color: #111;
}

/* INFO */

.fpd482-info {
  padding: 25px;
}

.fpd482-info h3 {
  font-size: 23px;

  color: #111;

  margin-bottom: 18px;
}

.fpd482-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fpd482-bottom h4 {
  font-size: 26px;

  color: #7b61ff;
}

.fpd482-bottom span {
  display: flex;
  align-items: center;
  gap: 6px;

  background: #fff4d8;

  color: #f2a100;

  padding: 8px 14px;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;
}

/* =========================================
   MODAL
========================================= */

.fpd482-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.7);

  backdrop-filter: blur(12px);

  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s ease;
}

.fpd482-modal.active {
  opacity: 1;
  visibility: visible;
}

/* MODAL BOX */

.fpd482-modal-box {
  position: relative;

  width: 100%;
  max-width: 1350px;

  background: white;

  border-radius: 40px;

  overflow: hidden;

  display: grid;

  grid-template-columns: 1.1fr 1fr;

  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

/* CLOSE */

.fpd482-close {
  position: absolute;

  top: 25px;
  right: 25px;

  width: 55px;
  height: 55px;

  border: none;

  border-radius: 50%;

  background: #111;

  color: white;

  font-size: 20px;

  cursor: pointer;

  z-index: 10;
}

/* LEFT */

.fpd482-left {
  padding: 40px;
}

.fpd482-main-image {
  width: 100%;

  height: 620px;

  overflow: hidden;

  border-radius: 30px;

  margin-bottom: 20px;
}

.fpd482-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* THUMBNAILS */

.fpd482-thumbs {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 15px;
}

.fpd482-thumbs img {
  width: 100%;

  height: 120px;

  object-fit: cover;

  border-radius: 18px;

  cursor: pointer;

  transition: 0.4s ease;

  border: 3px solid transparent;
}

.fpd482-thumbs img:hover {
  transform: scale(1.05);

  border-color: #7b61ff;
}

/* RIGHT */

.fpd482-right {
  padding: 60px 50px;

  overflow-y: auto;
}

.fpd482-mini-badge {
  display: inline-block;

  padding: 10px 22px;

  border-radius: 50px;

  background: rgba(123, 97, 255, 0.1);

  color: #7b61ff;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 25px;
}

.fpd482-right h2 {
  font-size: 50px;

  color: #111;

  margin-bottom: 18px;
}

.fpd482-right h3 {
  font-size: 42px;

  color: #7b61ff;

  margin-bottom: 35px;
}

/* QUANTITY */

.fpd482-qty-box {
  margin-bottom: 35px;
}

.fpd482-qty-box span {
  display: block;

  margin-bottom: 15px;

  font-size: 17px;
  font-weight: 600;
}

.fpd482-qty-controls {
  display: flex;
  align-items: center;

  width: fit-content;

  overflow: hidden;

  border-radius: 50px;

  border: 1px solid #ddd;
}

.fpd482-qty-controls button {
  width: 55px;
  height: 55px;

  border: none;

  background: #f4f7ff;

  font-size: 22px;

  cursor: pointer;
}

.fpd482-qty-controls input {
  width: 70px;
  height: 55px;

  border: none;

  text-align: center;

  font-size: 18px;
  font-weight: 600;
}

/* BUY BUTTON */

.fpd482-buy-btn {
  width: 100%;

  height: 68px;

  border: none;

  border-radius: 60px;

  background: linear-gradient(135deg, #7b61ff, #00c6ff);

  color: white;

  font-size: 18px;
  font-weight: 600;

  cursor: pointer;

  margin-bottom: 40px;

  transition: 0.4s ease;
}

.fpd482-buy-btn:hover {
  transform: translateY(-5px);
}

/* DESCRIPTION */

.fpd482-desc {
  background: #f7f9ff;

  padding: 28px;

  border-radius: 24px;
}

.fpd482-desc h4 {
  font-size: 24px;

  color: #111;

  margin-bottom: 18px;
}

.fpd482-desc p {
  color: #666;

  font-size: 16px;

  line-height: 1.9;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .fpd482-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fpd482-modal-box {
    grid-template-columns: 1fr;
  }

  .fpd482-main-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .fpd482-section {
    padding: 90px 20px;
  }

  .fpd482-top h2 {
    font-size: 40px;
  }

  .fpd482-grid {
    grid-template-columns: 1fr;
  }

  .fpd482-image-box {
    height: 360px;
  }

  .fpd482-left,
  .fpd482-right {
    padding: 25px;
  }

  .fpd482-main-image {
    height: 340px;
  }

  .fpd482-thumbs img {
    height: 85px;
  }

  .fpd482-right h2 {
    font-size: 32px;
  }

  .fpd482-right h3 {
    font-size: 28px;
  }
}

/* =========================================
   COMPACT PRODUCT MODAL
========================================= */

.fpd482-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.7);

  backdrop-filter: blur(10px);

  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s ease;
}

.fpd482-modal.active {
  opacity: 1;
  visibility: visible;
}

/* MODAL BOX */

.fpd482-modal-box {
  position: relative;

  width: 60vw;

  max-width: 1050px;

  height: 78vh;

  background: white;

  border-radius: 30px;

  overflow: hidden;

  display: grid;

  grid-template-columns: 1fr 0.9fr;

  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);

  animation: popup482 0.4s ease;
}

/* POPUP ANIMATION */

@keyframes popup482 {
  from {
    opacity: 0;

    transform: scale(0.85) translateY(40px);
  }

  to {
    opacity: 1;

    transform: scale(1) translateY(0);
  }
}

/* CLOSE BUTTON */

.fpd482-close {
  position: absolute;

  top: 16px;
  right: 16px;

  width: 45px;
  height: 45px;

  border: none;

  border-radius: 50%;

  background: #111;

  color: white;

  font-size: 18px;

  cursor: pointer;

  z-index: 10;
}

/* LEFT SIDE */

.fpd482-left {
  padding: 22px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

/* MAIN IMAGE */

.fpd482-main-image {
  width: 100%;

  height: 420px;

  overflow: hidden;

  border-radius: 22px;

  margin-bottom: 16px;
}

.fpd482-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* THUMBNAILS */

.fpd482-thumbs {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 12px;
}

.fpd482-thumbs img {
  width: 100%;

  height: 80px;

  object-fit: cover;

  border-radius: 14px;

  cursor: pointer;

  transition: 0.3s ease;

  border: 2px solid transparent;
}

.fpd482-thumbs img:hover {
  transform: scale(1.04);

  border-color: #7b61ff;
}

/* RIGHT SIDE */

.fpd482-right {
  padding: 35px 30px;

  overflow-y: auto;
}

/* MINI BADGE */

.fpd482-mini-badge {
  display: inline-block;

  padding: 9px 18px;

  border-radius: 50px;

  background: rgba(123, 97, 255, 0.1);

  color: #7b61ff;

  font-size: 13px;
  font-weight: 600;

  margin-bottom: 18px;
}

/* TITLE */

.fpd482-right h2 {
  font-size: 34px;

  color: #111;

  margin-bottom: 12px;

  line-height: 1.3;
}

/* PRICE */

.fpd482-right h3 {
  font-size: 30px;

  color: #7b61ff;

  margin-bottom: 25px;
}

/* QUANTITY */

.fpd482-qty-box {
  margin-bottom: 25px;
}

.fpd482-qty-box span {
  display: block;

  margin-bottom: 12px;

  font-size: 16px;
  font-weight: 600;
}

.fpd482-qty-controls {
  display: flex;
  align-items: center;

  width: fit-content;

  overflow: hidden;

  border-radius: 50px;

  border: 1px solid #ddd;
}

.fpd482-qty-controls button {
  width: 48px;
  height: 48px;

  border: none;

  background: #f4f7ff;

  font-size: 20px;

  cursor: pointer;
}

.fpd482-qty-controls input {
  width: 60px;
  height: 48px;

  border: none;

  text-align: center;

  font-size: 17px;
  font-weight: 600;
}

/* BUY BUTTON */

.fpd482-buy-btn {
  width: 100%;

  height: 58px;

  border: none;

  border-radius: 50px;

  background: linear-gradient(135deg, #7b61ff, #00c6ff);

  color: white;

  font-size: 17px;
  font-weight: 600;

  cursor: pointer;

  margin-bottom: 25px;

  transition: 0.4s ease;
}

.fpd482-buy-btn:hover {
  transform: translateY(-4px);
}

/* DESCRIPTION */

.fpd482-desc {
  background: #f7f9ff;

  padding: 22px;

  border-radius: 20px;
}

.fpd482-desc h4 {
  font-size: 20px;

  color: #111;

  margin-bottom: 12px;
}

.fpd482-desc p {
  color: #666;

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .fpd482-modal-box {
    width: 85vw;

    height: auto;

    max-height: 90vh;

    grid-template-columns: 1fr;
  }

  .fpd482-main-image {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .fpd482-modal {
    padding: 12px;
  }

  .fpd482-modal-box {
    width: 100%;

    height: auto;

    max-height: 92vh;

    border-radius: 24px;
  }

  .fpd482-left,
  .fpd482-right {
    padding: 20px;
  }

  .fpd482-main-image {
    height: 280px;
  }

  .fpd482-thumbs img {
    height: 65px;
  }

  .fpd482-right h2 {
    font-size: 26px;
  }

  .fpd482-right h3 {
    font-size: 24px;
  }

  .fpd482-buy-btn {
    height: 54px;
  }
}

/* =========================================
   PERFECT RESPONSIVE PRODUCT MODAL
========================================= */

.fpd482-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.72);

  backdrop-filter: blur(10px);

  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 18px;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s ease;
}

.fpd482-modal.active {
  opacity: 1;
  visibility: visible;
}

/* MODAL BOX */

.fpd482-modal-box {
  position: relative;

  width: 65vw;

  max-width: 1150px;

  height: 82vh;

  background: white;

  border-radius: 30px;

  overflow: hidden;

  display: grid;

  grid-template-columns: 1fr 0.9fr;

  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);

  animation: fpd482popup 0.4s ease;
}

/* ANIMATION */

@keyframes fpd482popup {
  from {
    opacity: 0;

    transform: scale(0.9) translateY(40px);
  }

  to {
    opacity: 1;

    transform: scale(1) translateY(0);
  }
}

/* CLOSE BUTTON */

.fpd482-close {
  position: absolute;

  top: 15px;
  right: 15px;

  width: 45px;
  height: 45px;

  border: none;

  border-radius: 50%;

  background: #111;

  color: white;

  font-size: 18px;

  cursor: pointer;

  z-index: 20;
}

/* LEFT SIDE */

.fpd482-left {
  padding: 22px;

  display: flex;

  flex-direction: column;

  height: 100%;

  overflow: hidden;
}

/* MAIN IMAGE */

.fpd482-main-image {
  width: 100%;

  flex: 1;

  min-height: 0;

  overflow: hidden;

  border-radius: 22px;

  margin-bottom: 16px;
}

.fpd482-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 22px;
}

/* THUMBNAILS */

.fpd482-thumbs {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 10px;

  flex-shrink: 0;
}

.fpd482-thumbs img {
  width: 100%;

  height: 85px;

  object-fit: cover;

  border-radius: 14px;

  cursor: pointer;

  transition: 0.3s ease;

  border: 2px solid transparent;
}

.fpd482-thumbs img:hover {
  transform: scale(1.03);

  border-color: #7b61ff;
}

/* RIGHT SIDE */

.fpd482-right {
  padding: 35px 30px;

  overflow-y: auto;

  height: 100%;

  scrollbar-width: thin;
}

/* SCROLLBAR */

.fpd482-right::-webkit-scrollbar {
  width: 5px;
}

.fpd482-right::-webkit-scrollbar-thumb {
  background: #cfcfcf;

  border-radius: 50px;
}

/* BADGE */

.fpd482-mini-badge {
  display: inline-block;

  padding: 9px 18px;

  border-radius: 50px;

  background: rgba(123, 97, 255, 0.1);

  color: #7b61ff;

  font-size: 13px;
  font-weight: 600;

  margin-bottom: 18px;
}

/* TITLE */

.fpd482-right h2 {
  font-size: 34px;

  color: #111;

  line-height: 1.3;

  margin-bottom: 12px;
}

/* PRICE */

.fpd482-right h3 {
  font-size: 30px;

  color: #7b61ff;

  margin-bottom: 25px;
}

/* QUANTITY */

.fpd482-qty-box {
  margin-bottom: 25px;
}

.fpd482-qty-box span {
  display: block;

  margin-bottom: 12px;

  font-size: 16px;
  font-weight: 600;
}

.fpd482-qty-controls {
  display: flex;
  align-items: center;

  width: fit-content;

  overflow: hidden;

  border-radius: 50px;

  border: 1px solid #ddd;
}

.fpd482-qty-controls button {
  width: 48px;
  height: 48px;

  border: none;

  background: #f4f7ff;

  font-size: 20px;

  cursor: pointer;
}

.fpd482-qty-controls input {
  width: 60px;
  height: 48px;

  border: none;

  text-align: center;

  font-size: 17px;
  font-weight: 600;
}

/* BUY BUTTON */

.fpd482-buy-btn {
  width: 100%;

  height: 58px;

  border: none;

  border-radius: 50px;

  background: linear-gradient(135deg, #7b61ff, #00c6ff);

  color: white;

  font-size: 17px;
  font-weight: 600;

  cursor: pointer;

  margin-bottom: 25px;

  transition: 0.4s ease;
}

.fpd482-buy-btn:hover {
  transform: translateY(-4px);
}

/* DESCRIPTION */

.fpd482-desc {
  background: #f7f9ff;

  padding: 22px;

  border-radius: 20px;
}

.fpd482-desc h4 {
  font-size: 20px;

  color: #111;

  margin-bottom: 12px;
}

.fpd482-desc p {
  color: #666;

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {
  .fpd482-modal-box {
    width: 90vw;

    height: 90vh;

    grid-template-columns: 1fr;
  }

  .fpd482-left {
    height: auto;
  }

  .fpd482-main-image {
    height: 400px;

    flex: unset;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .fpd482-modal {
    padding: 10px;

    align-items: flex-start;

    overflow-y: auto;
  }

  .fpd482-modal-box {
    width: 100%;

    height: auto;

    min-height: auto;

    display: flex;

    flex-direction: column;

    border-radius: 24px;

    margin-top: 20px;

    margin-bottom: 20px;
  }

  /* LEFT */

  .fpd482-left {
    padding: 18px;

    overflow: visible;
  }

  .fpd482-main-image {
    width: 100%;

    height: 300px;

    margin-bottom: 14px;
  }

  /* THUMBNAILS */

  .fpd482-thumbs {
    grid-template-columns: repeat(4, 1fr);

    gap: 8px;
  }

  .fpd482-thumbs img {
    height: 65px;

    border-radius: 10px;
  }

  /* RIGHT */

  .fpd482-right {
    padding: 20px;

    overflow: visible;

    height: auto;
  }

  .fpd482-right h2 {
    font-size: 28px;
  }

  .fpd482-right h3 {
    font-size: 24px;
  }

  .fpd482-buy-btn {
    height: 54px;

    font-size: 16px;
  }

  .fpd482-desc {
    padding: 18px;
  }

  /* CLOSE BUTTON */

  .fpd482-close {
    width: 40px;
    height: 40px;

    font-size: 16px;
  }
}

/* =========================================
   MOBILE FIXED SCROLLABLE MODAL
========================================= */

@media (max-width: 768px) {
  .fpd482-modal {
    padding: 10px;

    overflow-y: auto;

    align-items: flex-start;
  }

  .fpd482-modal.active {
    overflow-y: auto;
  }

  .fpd482-modal-box {
    width: 100%;

    height: auto;

    min-height: max-content;

    display: flex;

    flex-direction: column;

    border-radius: 24px;

    margin-top: 20px;

    margin-bottom: 20px;

    overflow: visible;
  }

  /* LEFT SIDE */

  .fpd482-left {
    padding: 18px;

    overflow: visible;

    height: auto;
  }

  /* MAIN IMAGE */

  .fpd482-main-image {
    width: 100%;

    height: 320px;

    flex: unset;

    margin-bottom: 14px;

    overflow: hidden;
  }

  .fpd482-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  /* THUMBNAILS */

  .fpd482-thumbs {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 8px;

    margin-bottom: 10px;
  }

  .fpd482-thumbs img {
    width: 100%;

    height: 70px;

    object-fit: cover;

    border-radius: 10px;
  }

  /* RIGHT SIDE */

  .fpd482-right {
    padding: 20px;

    overflow: visible;

    height: auto;
  }

  /* TITLE */

  .fpd482-right h2 {
    font-size: 28px;

    line-height: 1.4;
  }

  /* PRICE */

  .fpd482-right h3 {
    font-size: 24px;

    margin-bottom: 22px;
  }

  /* BUY BUTTON */

  .fpd482-buy-btn {
    height: 54px;

    font-size: 16px;
  }

  /* DESCRIPTION */

  .fpd482-desc {
    padding: 18px;

    margin-bottom: 10px;
  }

  /* CLOSE BUTTON */

  .fpd482-close {
    width: 40px;
    height: 40px;

    font-size: 16px;

    top: 12px;
    right: 12px;
  }

  /* BODY LOCK FIX */

  body {
    overflow-x: hidden;
  }
}

/* =========================================
   TESTIMONIAL SECTION
========================================= */

.tst593-section {
  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background: linear-gradient(135deg, #ffffff, #f7f9ff, #eef5ff);
}

/* TOP */

.tst593-top {
  text-align: center;

  max-width: 850px;

  margin: auto auto 70px;

  padding: 0 20px;
}

.tst593-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(123, 97, 255, 0.1);

  color: #7b61ff;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;
}

.tst593-top h2 {
  font-size: 58px;

  color: #111;

  margin-bottom: 20px;
}

.tst593-top h2 span {
  background: linear-gradient(135deg, #7b61ff, #00c6ff);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.tst593-top p {
  color: #666;

  font-size: 18px;

  line-height: 1.9;
}

/* SLIDER */

.tst593-slider {
  width: 100%;

  overflow: hidden;

  position: relative;
}

/* TRACK */

.tst593-track {
  display: flex;

  gap: 30px;

  width: max-content;

  animation: tst593move 22s linear infinite;
}

/* AUTO SCROLL */

@keyframes tst593move {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* CARD */

.tst593-card {
  width: 360px;

  min-height: 280px;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(14px);

  border-radius: 30px;

  padding: 35px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.5);

  transition: 0.4s ease;

  flex-shrink: 0;

  position: relative;

  overflow: hidden;
}

.tst593-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  background: rgba(123, 97, 255, 0.08);

  border-radius: 50%;

  top: -80px;
  right: -80px;
}

.tst593-card:hover {
  transform: translateY(-10px);
}

/* STARS */

.tst593-stars {
  display: flex;

  gap: 6px;

  margin-bottom: 22px;

  color: #ffb300;

  font-size: 18px;
}

/* TEXT */

.tst593-card p {
  color: #555;

  line-height: 1.9;

  font-size: 16px;

  margin-bottom: 30px;
}

/* USER */

.tst593-user {
  display: flex;
  align-items: center;

  gap: 15px;
}

.tst593-user img {
  width: 65px;
  height: 65px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid #7b61ff;
}

.tst593-user h4 {
  font-size: 18px;

  color: #111;

  margin-bottom: 4px;
}

.tst593-user span {
  color: #777;

  font-size: 14px;
}

/* HOVER PAUSE */

.tst593-slider:hover .tst593-track {
  animation-play-state: paused;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .tst593-section {
    padding: 90px 0;
  }

  .tst593-top h2 {
    font-size: 40px;
  }

  .tst593-card {
    width: 300px;

    min-height: 260px;

    padding: 28px;
  }

  .tst593-card p {
    font-size: 15px;
  }

  .tst593-user img {
    width: 55px;
    height: 55px;
  }
}

/* =========================================
   PREMIUM FOOTER
========================================= */

.lux847-footer {
  position: relative;

  background: linear-gradient(135deg, #060816, #0f172a, #111827);

  overflow: hidden;

  padding-top: 120px;
}

/* GLOW */

.lux847-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  opacity: 0.2;
}

.lux847-glow1 {
  width: 350px;
  height: 350px;

  background: #7b61ff;

  top: -120px;
  left: -100px;
}

.lux847-glow2 {
  width: 300px;
  height: 300px;

  background: #00c6ff;

  bottom: -100px;
  right: -100px;
}

/* NEWSLETTER */

.lux847-newsletter {
  width: 90%;

  max-width: 1400px;

  margin: auto auto 90px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(20px);

  border-radius: 35px;

  padding: 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* LEFT */

.lux847-mini {
  display: inline-block;

  padding: 10px 22px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.1);

  color: #ffffff;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 22px;
}

.lux847-news-left h2 {
  font-size: 54px;

  line-height: 1.2;

  color: white;

  margin-bottom: 20px;
}

.lux847-news-left p {
  color: #cbd5e1;

  font-size: 18px;

  line-height: 1.9;
}

/* INPUT */

.lux847-input-box {
  width: 500px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 70px;

  padding: 10px;

  display: flex;
  align-items: center;
}

.lux847-input-box input {
  flex: 1;

  background: transparent;

  border: none;

  outline: none;

  padding: 0 20px;

  color: white;

  font-size: 16px;
}

.lux847-input-box input::placeholder {
  color: #cbd5e1;
}

.lux847-input-box button {
  height: 60px;

  padding: 0 28px;

  border: none;

  border-radius: 60px;

  background: linear-gradient(135deg, #7b61ff, #00c6ff);

  color: white;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 10px;
}

/* MAIN */

.lux847-main {
  width: 90%;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1.3fr 1fr 1fr 1fr;

  gap: 50px;

  padding-bottom: 80px;
}

/* LOGO */

.lux847-logo img {
  width: 220px;

  background: white;

  padding: 15px;

  border-radius: 28px;

  margin-bottom: 25px;
}

/* PARAGRAPH */

.lux847-col p {
  color: #cbd5e1;

  line-height: 1.9;

  font-size: 16px;

  margin-bottom: 30px;
}

/* HEADINGS */

.lux847-col h3 {
  font-size: 28px;

  color: white;

  margin-bottom: 28px;
}

/* LINKS */

.lux847-col ul {
  list-style: none;
}

.lux847-col li {
  margin-bottom: 18px;
}

.lux847-col a,
.lux847-col button {
  background: transparent;

  border: none;

  color: #cbd5e1;

  text-decoration: none;

  font-size: 16px;

  cursor: pointer;

  transition: 0.3s ease;
}

.lux847-col a:hover,
.lux847-col button:hover {
  color: white;

  transform: translateX(8px);
}

/* SOCIALS */

.lux847-socials {
  display: flex;

  gap: 18px;
}

.lux847-socials a {
  width: 58px;
  height: 58px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 22px;

  text-decoration: none;

  transition: 0.4s ease;
}

.lux847-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.lux847-instagram {
  background: linear-gradient(135deg, #ff416c, #833ab4);
}

.lux847-socials a:hover {
  transform: translateY(-8px) scale(1.08);
}

/* FEATURES */

.lux847-feature {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 20px;

  color: #cbd5e1;
}

.lux847-feature i {
  width: 45px;
  height: 45px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #00c6ff;
}

/* BOTTOM */

.lux847-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding: 30px 20px;

  text-align: center;
}

.lux847-bottom p {
  color: #cbd5e1;

  font-size: 16px;
}

/* =========================================
   POPUP
========================================= */

.lux847-popup {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(12px);

  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s ease;
}

.lux847-popup.active {
  opacity: 1;
  visibility: visible;
}

/* BOX */

.lux847-popup-box {
  position: relative;

  width: 100%;

  max-width: 760px;

  max-height: 90vh;

  overflow-y: auto;

  background: white;

  border-radius: 32px;

  padding: 45px;

  animation: lux847popup 0.4s ease;
}

/* ANIMATION */

@keyframes lux847popup {
  from {
    opacity: 0;

    transform: scale(0.9) translateY(40px);
  }

  to {
    opacity: 1;

    transform: scale(1) translateY(0);
  }
}

/* CLOSE */

.lux847-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 45px;
  height: 45px;

  border: none;

  border-radius: 50%;

  background: #111827;

  color: white;

  font-size: 18px;

  cursor: pointer;
}

/* TITLE */

.lux847-popup-box h2 {
  font-size: 36px;

  margin-bottom: 28px;

  color: #111827;
}

/* CONTENT */

.lux847-content {
  color: #4b5563;

  line-height: 2;

  font-size: 17px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .lux847-newsletter {
    flex-direction: column;

    text-align: center;
  }

  .lux847-input-box {
    width: 100%;
  }

  .lux847-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lux847-footer {
    padding-top: 80px;
  }
  .lux847-col .lux847-feature {
    justify-content: flex-start;
    margin-left: 1rem;
  }

  .lux847-newsletter {
    padding: 35px 25px;

    border-radius: 28px;
  }

  .lux847-news-left h2 {
    font-size: 34px;
  }

  .lux847-input-box {
    flex-direction: column;

    border-radius: 24px;

    gap: 15px;

    padding: 18px;
  }

  .lux847-input-box input {
    width: 100%;

    height: 55px;
  }

  .lux847-input-box button {
    width: 100%;
  }

  .lux847-main {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .lux847-socials {
    justify-content: center;
  }

  .lux847-feature {
    justify-content: center;
  }

  .lux847-popup {
    padding: 12px;

    align-items: flex-start;

    overflow-y: auto;
  }

  .lux847-popup-box {
    padding: 28px;

    margin-top: 20px;

    margin-bottom: 20px;
  }

  .lux847-popup-box h2 {
    font-size: 28px;
  }

  .lux847-content {
    font-size: 15px;
  }
}

/* =========================================
   FEATURED PRODUCTS
========================================= */

.fpd482-section {
  width: 100%;

  padding: 110px 6%;

  background: linear-gradient(180deg, #fff, #f7f8ff);
}

.fpd482-top {
  text-align: center;

  margin-bottom: 60px;
}

.fpd482-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: linear-gradient(
    135deg,
    rgba(123, 97, 255, 0.15),
    rgba(0, 198, 255, 0.15)
  );

  color: #7b61ff;

  font-weight: 600;

  margin-bottom: 22px;
}

.fpd482-top h2 {
  font-size: 55px;

  color: #111827;

  margin-bottom: 15px;
}

.fpd482-top h2 span {
  color: #7b61ff;
}

.fpd482-top p {
  max-width: 700px;

  margin: auto;

  line-height: 1.8;

  color: #555;
}

/* GRID */

.fpd482-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 28px;
}

/* CARD */

.fpd482-card {
  background: white;

  border-radius: 30px;

  overflow: hidden;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);

  transition: 0.4s ease;

  position: relative;
}

.fpd482-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */

.fpd482-image-box {
  position: relative;

  width: 100%;

  height: 370px;

  overflow: hidden;
}

.fpd482-image-box img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.5s ease;
}

.fpd482-card:hover .fpd482-image-box img {
  transform: scale(1.08);
}

/* OVERLAY */

.fpd482-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);

  display: flex;

  align-items: flex-end;
  justify-content: center;

  padding-bottom: 28px;

  opacity: 0;

  transition: 0.4s ease;
}

.fpd482-card:hover .fpd482-overlay {
  opacity: 1;
}

/* BUTTON */

.fpd482-btn {
  border: none;

  padding: 15px 28px;

  border-radius: 50px;

  background: linear-gradient(135deg, #7b61ff, #00c6ff);

  color: white;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.fpd482-btn:hover {
  transform: scale(1.05);
}

/* TAG */

.fpd482-tag {
  position: absolute;

  top: 18px;
  left: 18px;

  padding: 10px 18px;

  border-radius: 50px;

  background: white;

  font-size: 13px;

  font-weight: 600;

  color: #7b61ff;
}

/* INFO */

.fpd482-info {
  padding: 24px;
}

.fpd482-info h3 {
  font-size: 22px;

  margin-bottom: 18px;

  color: #111827;
}

.fpd482-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;
}

.fpd482-bottom h4 {
  color: #7b61ff;

  font-size: 24px;
}

.fpd482-bottom span {
  display: flex;

  align-items: center;

  gap: 5px;

  color: #ff9800;

  font-weight: 600;
}

/* =========================================
   PREMIUM PRODUCT SECTION
========================================= */

.zxr482-section {
  padding: 90px 5%;
  background: linear-gradient(to bottom, #fff7fa, #ffffff);
}

.zxr482-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */

.zxr482-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.zxr482-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(194, 24, 91, 0.2);
}

/* IMAGE */

.zxr482-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: 0.6s;
}

.zxr482-card:hover .zxr482-img {
  transform: scale(1.08);
}

/* TAG */

.zxr482-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #ff4081, #c2185b);
  color: #fff;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(194, 24, 91, 0.3);
}

/* OVERLAY */

.zxr482-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: 0.5s;
}

.zxr482-card:hover .zxr482-overlay {
  opacity: 1;
}

/* BUTTON */

.zxr482-btn {
  border: none;
  padding: 15px 34px;
  border-radius: 50px;
  background: #fff;
  color: #c2185b;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s;
}

.zxr482-btn:hover {
  transform: scale(1.06);
}

/* CONTENT */

.zxr482-content {
  padding: 24px;
}

.zxr482-content h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.zxr482-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zxr482-bottom h4 {
  color: #c2185b;
  font-size: 25px;
}

.zxr482-rating {
  background: #fff0f6;
  color: #c2185b;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* =========================================
   STYLISH POPUP
========================================= */

.zxr482-popup {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(12px);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 999999;
  padding: 20px;
}

.zxr482-popup.active {
  display: flex;
  animation: popupFade482 0.4s ease;
}

@keyframes popupFade482 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* BOX */

.zxr482-popup-box {
  width: 68%;
  background: #fff;
  border-radius: 35px;
  padding: 30px;
  position: relative;

  display: flex;
  gap: 35px;

  max-height: 92vh;
  overflow-y: auto;

  animation: popupScale482 0.45s ease;
}

@keyframes popupScale482 {
  from {
    transform: scale(0.85) translateY(60px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* CLOSE */

.zxr482-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 46px;
  height: 46px;

  border: none;
  border-radius: 50%;

  background: linear-gradient(135deg, #ff4081, #c2185b);

  color: #fff;
  font-size: 18px;

  cursor: pointer;
}

/* LEFT */

.zxr482-left {
  width: 50%;
}

.zxr482-big-image {
  height: 430px;
  border-radius: 25px;
  overflow: hidden;
}

.zxr482-big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* THUMBS */

.zxr482-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-top: 18px;
  padding-bottom: 10px;
}

.zxr482-thumbs img {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.4s;
  border: 3px solid transparent;
}

.zxr482-thumbs img:hover {
  border-color: #c2185b;
  transform: scale(1.05);
}

/* RIGHT */

.zxr482-right {
  width: 50%;
}

.zxr482-right h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.zxr482-right h3 {
  color: #c2185b;
  font-size: 34px;
  margin-bottom: 25px;
}

/* QUANTITY */

.zxr482-qty {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.zxr482-qty button {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 14px;
  background: #c2185b;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.zxr482-qty input {
  width: 70px;
  height: 45px;
  border-radius: 14px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 18px;
}

/* BUY BUTTON */

.zxr482-buy {
  width: 100%;
  border: none;
  padding: 18px;
  border-radius: 18px;

  background: linear-gradient(135deg, #ff4081, #c2185b);

  color: #fff;
  font-size: 18px;
  font-weight: 700;

  cursor: pointer;

  margin-bottom: 28px;

  box-shadow: 0 12px 25px rgba(194, 24, 91, 0.25);
}

/* DESC */

.zxr482-right p {
  background: #fff6fa;
  padding: 22px;
  border-radius: 20px;
  line-height: 1.8;
  color: #444;
}

/* =========================================
   BUY NOW POPUP
========================================= */

.zxrBuyPopup482 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999999;
}

.zxrBuyPopup482.active {
  display: flex;
}

.zxrBuyBox482 {
  width: 420px;
  background: #fff;
  padding: 35px;
  border-radius: 28px;
  text-align: center;
  animation: popupScale482 0.4s ease;
}

.zxrBuyBox482 h2 {
  margin-bottom: 25px;
}

.zxrBuyBox482 input {
  width: 100%;
  height: 55px;
  border-radius: 14px;
  border: 1px solid #ddd;
  margin-bottom: 18px;
  padding: 0 18px;
  font-size: 16px;
}

.zxrBuyBox482 button {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 14px;

  background: linear-gradient(135deg, #ff4081, #c2185b);

  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {
  .zxr482-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zxr482-popup-box {
    width: 96%;
    flex-direction: column;
    padding: 20px;
  }

  .zxr482-left,
  .zxr482-right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .zxr482-grid {
    grid-template-columns: 1fr;
  }

  .zxr482-popup {
    align-items: flex-start;
    overflow-y: auto;
  }

  .zxr482-popup-box {
    margin-top: 35px;
    border-radius: 25px;
    padding: 15px;
  }

  .zxr482-big-image {
    height: 260px;
  }

  .zxr482-right h2 {
    font-size: 28px;
  }

  .zxr482-right h3 {
    font-size: 25px;
  }

  .zxrBuyBox482 {
    width: 92%;
    padding: 25px;
  }
}

/* =========================================
   BUY POPUP
========================================= */

.abx920-popup {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 999999999;
  padding: 20px;
}

/* BOX */

.abx920-box {
  width: 420px;

  background: #fff;
  border-radius: 32px;

  padding: 35px;
  position: relative;

  animation: abxPopupAnim 0.4s ease;
}

/* ANIMATION */

@keyframes abxPopupAnim {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(60px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* CLOSE */

.abx920-close {
  position: absolute;
  right: 18px;
  top: 18px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: linear-gradient(135deg, #ff4081, #c2185b);

  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* TITLE */

.abx920-box h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #111;
}

.abx920-box p {
  color: #666;
  margin-bottom: 25px;
}

/* INPUT */

.abx920-box input {
  width: 100%;
  height: 58px;

  border-radius: 16px;
  border: 1px solid #ddd;

  padding: 0 18px;
  font-size: 16px;

  margin-bottom: 18px;
  outline: none;
}

.abx920-box input:focus {
  border-color: #c2185b;
}

/* BUTTON */

.abx920-submit {
  width: 100%;
  height: 58px;

  border: none;
  border-radius: 16px;

  background: linear-gradient(135deg, #ff4081, #c2185b);

  color: #fff;
  font-size: 18px;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 12px 30px rgba(194, 24, 91, 0.3);
}

/* MOBILE */

@media (max-width: 600px) {
  .abx920-box {
    width: 100%;
    padding: 25px;
    border-radius: 24px;
  }

  .abx920-box h2 {
    font-size: 26px;
  }
}

/* =========================================
   CARD CONTENT
========================================= */

.zxr482-content {
  padding: 24px 22px 28px;
  background: #fff;
  position: relative;
}

/* TITLE */

.zxr482-content h3 {
  font-size: 26px;
  font-weight: 700;

  line-height: 1.4;

  background: linear-gradient(135deg, #111, #c2185b);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 18px;

  letter-spacing: 0.5px;
}

/* PRICE + RATING */

.zxr482-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

/* PRICE */

.zxr482-bottom h4 {
  font-size: 30px;
  font-weight: 800;

  color: #c2185b;

  position: relative;

  text-shadow: 0 8px 20px rgba(194, 24, 91, 0.15);
}

.zxr482-bottom h4::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -5px;

  width: 60%;
  height: 3px;

  border-radius: 20px;

  background: linear-gradient(90deg, #ff4081, transparent);
}

/* RATING */

.zxr482-rating {
  padding: 10px 16px;

  border-radius: 50px;

  background: rgba(255, 64, 129, 0.1);

  backdrop-filter: blur(10px);

  font-size: 14px;
  font-weight: 700;

  color: #c2185b;

  border: 1px solid rgba(255, 64, 129, 0.2);

  display: flex;
  align-items: center;
  gap: 6px;
}

/* =========================================
   OVERLAY
========================================= */

.zxr482-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1));

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;

  transition: 0.5s;
}

.zxr482-card:hover .zxr482-overlay {
  opacity: 1;
}

/* =========================================
   VIEW DETAILS BUTTON
========================================= */

.zxr482-btn {
  position: relative;

  border: none;

  padding: 16px 38px;

  border-radius: 60px;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(15px);

  color: #fff;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 0.5px;

  cursor: pointer;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.25);

  transition: 0.45s;
}

/* SHINE EFFECT */

.zxr482-btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );

  transition: 0.7s;
}

.zxr482-btn:hover::before {
  left: 100%;
}

/* HOVER */

.zxr482-btn:hover {
  transform: translateY(-4px) scale(1.04);

  background: linear-gradient(135deg, #ff4081, #c2185b);

  box-shadow: 0 15px 35px rgba(194, 24, 91, 0.4);
}

/* =========================================
   PRODUCT CARD
========================================= */

.zxr482-card {
  position: relative;

  border-radius: 30px;

  overflow: hidden;

  background: #fff;

  transition: 0.5s;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.zxr482-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 25px 60px rgba(194, 24, 91, 0.2);
}

/* IMAGE */

.zxr482-img {
  width: 100%;
  height: 390px;

  object-fit: cover;

  transition: 0.8s;
}

.zxr482-card:hover .zxr482-img {
  transform: scale(1.08);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .zxr482-content h3 {
    font-size: 22px;
  }

  .zxr482-bottom h4 {
    font-size: 24px;
  }

  .zxr482-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .zxr482-img {
    height: 320px;
  }
}

/* =========================================
   CARD
========================================= */

.zxr482-card {
  background: #fff;

  border-radius: 28px;

  overflow: hidden;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  transition: 0.45s ease;
}

.zxr482-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 22px 55px rgba(194, 24, 91, 0.18);
}

/* =========================================
   IMAGE BOX
========================================= */

.zxr482-image-box {
  position: relative;

  height: 300px;

  overflow: hidden;
}

/* IMAGE */

.zxr482-img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: 0.7s ease;
}

.zxr482-card:hover .zxr482-img {
  transform: scale(1.08);
}

/* =========================================
   TAG
========================================= */

.zxr482-tag {
  position: absolute;

  top: 16px;
  left: 16px;

  padding: 9px 18px;

  border-radius: 40px;

  background: linear-gradient(135deg, #ff4f93, #c2185b);

  color: #fff;

  font-size: 12px;
  font-weight: 700;

  z-index: 5;
}

/* =========================================
   OVERLAY
========================================= */

.zxr482-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.25);

  opacity: 0;

  transition: 0.4s;
}

.zxr482-card:hover .zxr482-overlay {
  opacity: 1;
}

/* =========================================
   BUTTON
========================================= */

.zxr482-btn {
  padding: 14px 32px;

  border: none;

  border-radius: 60px;

  background: #fff;

  color: #c2185b;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.4s;
}

.zxr482-btn:hover {
  transform: translateY(-3px);

  background: linear-gradient(135deg, #ff4f93, #c2185b);

  color: #fff;
}

/* =========================================
   CONTENT
========================================= */

.zxr482-content {
  padding: 20px;
}

/* TITLE */

.zxr482-content h3 {
  font-size: 24px;
  font-weight: 800;

  margin-bottom: 16px;

  color: #111;
}

/* PRICE AREA */

.zxr482-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* PRICE */

.zxr482-bottom h4 {
  font-size: 28px;
  font-weight: 800;

  color: #c2185b;
}

/* RATING */

.zxr482-rating {
  padding: 8px 14px;

  border-radius: 30px;

  background: #fff0f6;

  color: #c2185b;

  font-size: 13px;
  font-weight: 700;

  display: flex;
  align-items: center;
  gap: 6px;
}

/* MOBILE */

@media (max-width: 600px) {
  .zxr482-image-box {
    height: 250px;
  }

  .zxr482-content h3 {
    font-size: 20px;
  }

  .zxr482-bottom h4 {
    font-size: 24px;
  }
}

/* =========================================
   POLICY POPUP
========================================= */

.xza901-popup {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.72);

  backdrop-filter: blur(8px);

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  z-index: 999999999;
}

/* BOX */

.xza901-box {
  width: 600px;
  max-width: 100%;

  background: #fff;

  border-radius: 34px;

  padding: 40px;

  position: relative;

  animation: xzaPopup 0.4s ease;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* ANIMATION */

@keyframes xzaPopup {
  from {
    opacity: 0;

    transform: scale(0.75) translateY(80px);
  }

  to {
    opacity: 1;

    transform: scale(1) translateY(0);
  }
}

/* CLOSE */

.xza901-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 46px;
  height: 46px;

  border: none;

  border-radius: 50%;

  background: linear-gradient(135deg, #ff4081, #c2185b);

  color: #fff;

  font-size: 18px;

  cursor: pointer;
}

/* TITLE */

.xza901-box h2 {
  font-size: 34px;

  margin-bottom: 25px;

  color: #111;

  line-height: 1.4;
}

/* CONTENT */

#xza901Text {
  font-size: 17px;

  line-height: 2;

  color: #555;
}

/* MOBILE */

@media (max-width: 600px) {
  .xza901-box {
    padding: 28px 22px;

    border-radius: 24px;
  }

  .xza901-box h2 {
    font-size: 26px;
  }

  #xza901Text {
    font-size: 15px;
    line-height: 1.9;
  }
}

/* =========================================
   RIGHT SIDE
========================================= */

.csh721-right {
  flex: 1;

  height: 620px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* =========================================
   IMAGE SLIDES
========================================= */

.csh721-slide {
  position: absolute;

  width: 100%;
  max-width: 520px;

  height: 620px;

  object-fit: cover;

  border-radius: 35px;

  opacity: 0;

  transform: scale(1);

  animation-duration: 9s;

  animation-iteration-count: infinite;

  animation-timing-function: ease-in-out;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);

  transition: all 0.6s ease;
}

/* IMAGE 1 */

.csh721-slide1 {
  animation-name: csh721Fade1;
}

/* IMAGE 2 */

.csh721-slide2 {
  animation-name: csh721Fade2;
}

/* IMAGE 3 */

.csh721-slide3 {
  animation-name: csh721Fade3;
}

/* =========================================
   ANIMATION 1
========================================= */

@keyframes csh721Fade1 {
  0% {
    opacity: 1;

    transform: scale(1);
  }

  28% {
    opacity: 1;

    transform: scale(1.04);
  }

  33% {
    opacity: 0;

    transform: scale(1.08);
  }

  100% {
    opacity: 0;
  }
}

/* =========================================
   ANIMATION 2
========================================= */

@keyframes csh721Fade2 {
  0% {
    opacity: 0;
  }

  33% {
    opacity: 0;

    transform: scale(1);
  }

  38% {
    opacity: 1;
  }

  61% {
    opacity: 1;

    transform: scale(1.04);
  }

  66% {
    opacity: 0;

    transform: scale(1.08);
  }

  100% {
    opacity: 0;
  }
}

/* =========================================
   ANIMATION 3
========================================= */

@keyframes csh721Fade3 {
  0% {
    opacity: 0;
  }

  66% {
    opacity: 0;

    transform: scale(1);
  }

  71% {
    opacity: 1;
  }

  94% {
    opacity: 1;

    transform: scale(1.04);
  }

  100% {
    opacity: 0;

    transform: scale(1.08);
  }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .csh721-right {
    width: 100%;

    height: 520px;

    margin-top: 20px;
  }

  .csh721-slide {
    max-width: 420px;

    height: 520px;
  }
}

@media (max-width: 768px) {
  .csh721-right {
    height: 430px;
  }

  .csh721-slide {
    max-width: 100%;

    height: 430px;

    border-radius: 28px;
  }
}

@media (max-width: 600px) {
  .csh721-right {
    height: 350px;
  }

  .csh721-slide {
    height: 350px;

    border-radius: 24px;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
  .csh721-hero {
    flex-direction: column;

    padding: 140px 6% 80px;

    gap: 50px;
  }

  /* LEFT */

  .csh721-left {
    width: 100%;

    text-align: center;

    order: 1;
  }

  .csh721-left h1 {
    font-size: 58px;
  }

  .csh721-left h2 {
    font-size: 30px;
  }

  .csh721-left p {
    max-width: 100%;
  }

  /* BUTTONS */

  .csh721-buttons {
    justify-content: center;

    margin-top: 30px;
  }

  /* RIGHT IMAGE */

  .csh721-right {
    width: 100%;

    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    order: 2;

    margin-top: 10px;
  }

  .csh721-slide {
    width: 100%;
    max-width: 420px;

    height: 500px;

    object-fit: cover;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .csh721-hero {
    padding: 120px 5% 70px;

    gap: 40px;
  }

  /* LEFT */

  .csh721-left {
    text-align: center;
  }

  .csh721-left h1 {
    font-size: 42px;

    line-height: 1.2;
  }

  .csh721-left h2 {
    font-size: 24px;
  }

  .csh721-left p {
    font-size: 16px;

    line-height: 1.8;
  }

  /* BUTTONS */

  .csh721-buttons {
    flex-direction: column;

    width: 100%;

    gap: 15px;

    margin-top: 25px;
  }

  .csh721-btn1,
  .csh721-btn2 {
    width: 100%;

    justify-content: center;

    padding: 16px 20px;
  }

  /* IMAGE SECTION */

  .csh721-right {
    width: 100%;

    height: 370px;

    margin-top: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .csh721-slide {
    width: 100%;

    max-width: 100%;

    height: 370px;

    border-radius: 26px;

    position: absolute;
  }

  /* FLOATING CARDS */

  .csh721-card {
    transform: scale(0.78);

    padding: 14px 16px;
  }

  .csh721-card1 {
    top: 10px;
    left: 5px;
  }

  .csh721-card2 {
    bottom: 10px;
    right: 5px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .csh721-hero {
    padding-top: 110px;
  }

  .csh721-left h1 {
    font-size: 34px;
  }

  .csh721-left h2 {
    font-size: 20px;
  }

  .csh721-tag {
    font-size: 12px;

    padding: 10px 18px;
  }

  .csh721-right {
    height: 320px;
  }

  .csh721-slide {
    height: 320px;

    border-radius: 22px;
  }

  .csh721-card {
    transform: scale(0.68);
  }
}

/* =========================================
   RIGHT HERO SECTION
========================================= */

.csh721-right {
  flex: 1;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 620px;

  width: 100%;

  overflow: hidden;
}

/* =========================================
   IMAGE SLIDES
========================================= */

.csh721-slide {
  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 100%;
  max-width: 520px;

  height: 620px;

  object-fit: cover;

  border-radius: 35px;

  opacity: 0;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);

  animation-duration: 9s;

  animation-iteration-count: infinite;

  animation-timing-function: ease-in-out;
}

/* IMAGE 1 */

.csh721-slide1 {
  animation-name: csh721Fade1;
}

/* IMAGE 2 */

.csh721-slide2 {
  animation-name: csh721Fade2;
}

/* IMAGE 3 */

.csh721-slide3 {
  animation-name: csh721Fade3;
}

/* =========================================
   ANIMATION
========================================= */

@keyframes csh721Fade1 {
  0% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  33% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes csh721Fade2 {
  0% {
    opacity: 0;
  }

  33% {
    opacity: 0;
  }

  36% {
    opacity: 1;
  }

  63% {
    opacity: 1;
  }

  66% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes csh721Fade3 {
  0% {
    opacity: 0;
  }

  66% {
    opacity: 0;
  }

  69% {
    opacity: 1;
  }

  96% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
  .csh721-right {
    min-height: 500px;
  }

  .csh721-slide {
    max-width: 420px;

    height: 500px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .csh721-right {
    min-height: 380px;

    margin-top: 20px;
  }

  .csh721-slide {
    position: absolute;

    top: 0;
    left: 0;

    transform: none;

    width: 100%;

    max-width: 100%;

    height: 380px;

    border-radius: 24px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .csh721-right {
    min-height: 320px;
  }

  .csh721-slide {
    height: 320px;

    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .heroh1 {
    font-size: 30px !important;
  }
  .hero1 {
    font-size: 30px !important;
  }
  .csh721-hero {
    margin-top: -1rem !important;
  }
}

/* =========================================
   PAGINATION
========================================= */

.pgx472-wrapper {
  width: 100%;

  padding: 20px 5% 100px;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* BOX */

.pgx472-box {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

/* BUTTONS */

.pgx472-btn {
  height: 58px;

  padding: 0 28px;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #ff4f93, #7b61ff);

  color: #fff;

  font-size: 16px;
  font-weight: 700;

  display: flex;
  align-items: center;
  gap: 12px;

  cursor: pointer;

  transition: 0.4s;

  box-shadow: 0 15px 35px rgba(123, 97, 255, 0.18);
}

.pgx472-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 45px rgba(123, 97, 255, 0.28);
}

/* PAGE NUMBERS */

.pgx472-pages {
  display: flex;
  align-items: center;

  gap: 12px;
}

.pgx472-page {
  width: 55px;
  height: 55px;

  border: none;

  border-radius: 16px;

  background: #fff;

  font-size: 17px;
  font-weight: 700;

  color: #444;

  cursor: pointer;

  transition: 0.4s;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* HOVER */

.pgx472-page:hover {
  transform: translateY(-4px);

  background: linear-gradient(135deg, #ff4f93, #7b61ff);

  color: #fff;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .pgx472-box {
    gap: 15px;
  }

  .pgx472-btn {
    width: 100%;

    justify-content: center;
  }

  .pgx472-pages {
    width: 100%;

    justify-content: center;

    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .pgx472-page {
    width: 48px;
    height: 48px;

    font-size: 15px;
  }

  .pgx472-btn {
    height: 52px;

    font-size: 15px;
  }
}

/* PAGE LINKS */

.pgx472-pages {
  display: flex;
  align-items: center;

  gap: 12px;
}

.pgx472-page {
  width: 55px;
  height: 55px;

  border-radius: 16px;

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-size: 17px;
  font-weight: 700;

  color: #444;

  transition: 0.4s;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* HOVER */

.pgx472-page:hover {
  transform: translateY(-4px);

  background: linear-gradient(135deg, #ff4f93, #7b61ff);

  color: #fff;
}

/* STOCK */

.zxr482-stock-wrap {
  margin-top: 16px;
}

#zxr482Stock {
  display: inline-block;

  padding: 10px 22px;

  border-radius: 40px;

  background: linear-gradient(135deg, #14c38e, #0f9d58);

  color: #fff;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.5px;

  box-shadow: 0 10px 25px rgba(20, 195, 142, 0.25);
}

/* PRODUCT CODE */

.zxr482-code-wrap {
  margin-top: 14px;

  margin-bottom: 18px;
}

#zxr482Code {
  display: inline-block;

  padding: 10px 20px;

  border-radius: 40px;

  background: rgba(0, 0, 0, 0.06);

  color: #222;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Testimonial section */

.c1krs {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

/* Slider */
.c2krs {
  position: relative;
  overflow: hidden;
}
.c3krs {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
.c4krs {
  flex: 0 0 100%;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 30px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.c4krs:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.c5krs {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}
.c6krs {
  font-size: 1em;
  color: #666;
  margin-bottom: 12px;
  font-style: italic;
}
.c7krs {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 1.2em;
  letter-spacing: 2px;
}
.c8krs {
  font-size: 1.05em;
  line-height: 1.6;
  color: #444;
}

.c9krs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.c9krs:hover {
  background: #555;
}
.c10krs {
  left: 15px;
}
.c11krs {
  right: 15px;
}

/* Form */
.c12krs {
  margin-top: 40px;
  background: #fdfdfd;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.c12krs h2 {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  color: #222;
}
.c13krs {
  margin-bottom: 18px;
}
.c13krs label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}
.c13krs input,
.c13krs textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1em;
  transition: border 0.3s;
}
.c13krs input:focus,
.c13krs textarea:focus {
  border-color: #666;
  outline: none;
}
.c14krs span {
  font-size: 1.6em;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s;
}
.c14krs span.active {
  color: #ffd700;
}
.c15krs {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #333, #555);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.05em;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}
.c15krs:hover {
  background: linear-gradient(135deg, #444, #666);
  transform: translateY(-2px);
}

/* Popup */
.c16krs {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #4caf50;
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  font-size: 1.2em;
  font-weight: 600;
  display: none;
  z-index: 9999;
  text-align: center;
}

@media (max-width: 600px) {
  .c4krs {
    padding: 20px;
  }
  .c12krs {
    padding: 20px;
  }
}

.titlekrs {
  text-align: center;
  margin-bottom: 30px;
}

.t1krs {
  font-size: 2.2em;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.t1krs::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ff8c00);
  margin: 8px auto 0;
  border-radius: 2px;
}

.t2krs {
  font-size: 1.1em;
  color: #666;
  font-style: italic;
}

@keyframes shakekrs {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(-10deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
