* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}




.arrow {
  font-size: 18px;
  color: #666;
}

.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.slider {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.slide {
  width: 100vw;
  /* force each slide to fill the whole screen width */
  height: 100%;
  flex-shrink: 0;
  /* prevent shrinking */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.slider:active {
  cursor: grabbing;
}

/* Prevent text/image selection while dragging */
.hero,
.hero * {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.14);
  z-index: 1;
  pointer-events: none;
  /* allows clicks on links */
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e91e63;
  padding: 0.5rem 20px;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  border-radius: 10%;
  user-select: none;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Pagination dots */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e91e63;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #fff;
}

/* 
/* ✅ Responsiveness */
@media (max-width: 1024px) {
  .hero {
    height: 70vh;
  }

  .nav-btn {
    font-size: 18px;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .nav-btn {
    font-size: 16px;
    padding: 0.3rem 0.6rem;
  }

  .dots {
    bottom: 12px;
    gap: 6px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
  }

  .nav-btn {
    font-size: 14px;
    padding: 0.2rem 0.5rem;
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }

  .dots {
    bottom: 10px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease forwards;
}

.hero-content p {
  font-size: 1.25rem;
  padding: 0rem 4rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-content .btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #e91e63;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeInUp 1.5s ease forwards;
}

.hero-content .btn:hover {
  background: #ff007f;
  transform: translateY(-3px);
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

*/ .category {
  margin: 2rem 3rem;
  overflow-x: hidden;

}

.category h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Category Buttons */
.category-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.category-buttons button {
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  background: #f5f5f5;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.category-buttons button.active,
.category-buttons button:hover {
  background: #e91e63;
  color: #fff;
}

/* Carousel */
.carousel-wrapper {
  position: relative;
}

.carousel {
  display: flex;
  gap: 1rem;

  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* Product Card */
.product-card {
  min-width: 250px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 5px rgb(255, 105, 180);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  user-select: none;
  pointer-events: none;
}

.discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: red;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.product-info {
  padding: 1rem;
}

.product-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.price del {
  color: #999;
  margin-right: 8px;
}

.price span {
  color: #e91e63;
  font-weight: 700;
}

/* ================= Categories Section ================= */
.categories {
  background: #fff3f9;
  padding: 2rem 3rem;
  text-align: center;
  position: relative;
  user-select: none;
}

.categories-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.categories h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1.5px;
}

/* ================= Nav Buttons ================= */
.scroll-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: #fff3f9;
  border: none;
  padding: 0.5rem 13.5px;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  border-radius: 10%;
  user-select: none;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}



/* ================= Categories Container ================= */
.categories-container {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.categories-container.active {
  cursor: grabbing;
}

.category-item {
  flex: 0 0 auto;
  width: 250px;
  height: 20rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;

  pointer-events: none;
}

.category-item p {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  /* <<< add this */
  transition: color 0.3s ease, background 0.3s ease;
}

.category-item:hover {
  transform: translateY(-8px);
}

.category-item:hover img {
  transform: scale(1.07);
}

.category-item:hover p {
  color: #e91e63;
}

/* ================= Responsive ================= */

/* Tablets */
@media (max-width: 991px) {
  .category-item {
    width: 200px;
    height: 16rem;
  }

  .categories h2 {
    font-size: 1.6rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .categories {
    padding: 1rem;
  }

  .category-item {
    width: 70%;
    /* height: 15rem; */
  }

  /* Hide nav buttons on mobile */
  .scroll-btn {
    display: none;
  }

  .categories-container {
    overflow-x: auto;
    /* Enable horizontal scroll on touch */
    scrollbar-width: none;
    /* hide scrollbar (Firefox) */
  }

  .categories-container::-webkit-scrollbar {
    display: none;
    /* hide scrollbar (Chrome/Safari) */
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .category-item {
    width: 85%;
    height: 14rem;
  }

  .categories h2 {
    font-size: 1.3rem;
  }

  .category-item p {
    font-size: 1rem;
    padding: 0.6rem;
  }
}
/* Footer */
footer {
  background: #131921;
  color: #fff;
  padding: 2rem 3rem;
  position: relative;
}

.footer-container {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

/* Logo / About / Newsletter */
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo img {
  width: 6rem;
  height: auto;
  cursor: pointer;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-links .newsletter {
  margin-top: 3.5rem;
}

.footer-links .newsletter h3 {
  color: #e91e63;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.footer-links .newsletter input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e91e63;
  border-radius: 25px;
  outline: none;
  margin-bottom: 10px;
  background: transparent;
  color: #fff;
}

.footer-links .newsletter input::placeholder {
  color: #aaa;
}

.footer-links .newsletter button {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  font-weight: 600;
}

.footer-links .newsletter button:hover {
  background: #e857a4;
}

/* Footer links */
.footer-links h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 12px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: #e91e63;
  transform: translateX(5px);
}

/* Social icons inside newsletter */
.footer-links .social-icons {
  margin-top: 15px;
}

.footer-links .social-icons a {
  display: inline-block;
  margin: 0 8px;
  font-size: 1.8rem;
  color: #e91e63;
  transition: 0.3s;
}

.footer-links .social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 27px;
}

.footer-bottom a {
  color: #e91e63;
  text-decoration: none;
  margin: 0 5px;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #fff;
}
/* While dragging, prevent selection and show proper cursor */
/* Default: pointer on hover */
.carousel:hover,
.categories-container:hover {
  cursor: pointer;
}

/* When active dragging class is applied */
.carousel.dragging,
.categories-container.dragging {
  cursor: grabbing;
  user-select: none;
}


/* Generally reduce accidental selection on cards */
.product-card,
.product-card * {
  -webkit-user-select: none;
  user-select: none;
}

/* Optional actions styling if you don't have it */
.product-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 0 1rem;
}

.product-actions button {
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}

.product-actions .add-to-cart {
  background: #f5f5f5;
}

.product-actions .add-to-cart:hover {
  background: #333;
  color: #fff;
}

.product-actions .buy-now {
  background: #e91e63;
  color: #fff;
}

.product-actions .buy-now:hover {
  filter: brightness(1.05);
}

.homeboxMain {
  margin: 2rem 3rem;
  text-align: center;
}

.hmTitle h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #333;
  position: relative;
}

.homeGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}

.homeBox1 {
  overflow: hidden;
  /* border-radius: 6px; */
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.homeBox1:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.homeBox1 img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  /* border-radius: 16px; */
}

.homeBox1:hover img {
  transform: scale(1.05);
}

/* Responsive - stack cards on small screens */
@media (max-width: 768px) {
  .homeGrid {
    grid-template-columns: 1fr;
  }
}

/* ======================
   RESPONSIVENESS
   ====================== */



/* Laptops (992px - 1199px) */
@media (max-width: 1199px) {
  .homeGrid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 cards */
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .homeGrid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cards side by side */
  }

  .hmTitle h3 {
    font-size: 1.6rem;
  }
}

/* Mobiles (up to 767px) */
@media (max-width: 767px) {
  .homeboxMain {
    margin: 1rem;
  }

  .homeGrid {
    grid-template-columns: 1fr;
    /* stack cards */
    gap: 20px;
  }

  .hmTitle h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}

/* Small phones (up to 480px) */
@media (max-width: 480px) {
  .homeboxMain {
    margin: 1rem;
  }

  .hmTitle h3 {
    font-size: 1.2rem;
  }

  .homeGrid {
    gap: 15px;
  }
}

/* ====== Banner Box ====== */
.hmboxbnr {
  text-align: center;
  max-width: 100%;
  margin: 2rem 3rem;
}

/* Title above image */
.hmTitle h2 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  letter-spacing: 1.2px;
  position: relative;
  display: inline-block;
}



/* Banner Image */
.hmboxbnr img {
  display: block;
  width: 100%;
  height: 60vh;

  margin: 1rem auto 0 auto;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.hmboxbnr img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .hmTitle h2 {
    font-size: 1.5rem;
    margin: 0 0 0rem 0;
  }

  .hmboxbnr {
    margin: 1rem 1rem;
  }

  .hmboxbnr img {
    max-width: 100%;
    /* border-radius: 10px; */
  }

  .hmboxbnr img:hover {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }
}

.deals {
  padding: 0rem 3rem 2rem 3rem;
  text-align: center;
  position: relative;
  user-select: none;
}

.deals-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.deals h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1.5px;
}

.deal-btn {
  position: absolute;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0.5rem 13.5px;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  border-radius: 10%;
  user-select: none;
}

.deal-btn.left {
  left: 10px;
}

.deal-btn.right {
  right: 10px;
}

.deals-container {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.deals-container.active {
  cursor: grabbing;
}

.deal-item {
  flex: 0 0 auto;
  width: 250px;
  height: 20rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.deal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;

  pointer-events: none;
}

.deal-item p {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, background 0.3s ease;
}

.deal-item:hover {
  transform: translateY(-8px);
}

.deal-item:hover img {
  transform: scale(1.07);
}

.deal-item:hover p {
  color: #e91e63;
}


/* Responsive Banner */
@media (max-width: 991px) {
  .hmTitle h2 {
    font-size: 1.6rem;
  }

  .hmboxbnr img {
    height: 45vh;

  }
}

@media (max-width: 768px) {
  .hmTitle h2 {
    font-size: 1.4rem;
  }

  .hmboxbnr img {
    height: 35vh;
    /* border-radius: 10px; */
  }
}

@media (max-width: 480px) {
  .hmTitle h2 {
    font-size: 1.2rem;
  }

  .hmboxbnr img {
    height: 30vh;
  }
}

/* ================= Responsive ================= */

/* Tablets */
@media (max-width: 991px) {
  .deal-item {
    width: 200px;
    height: 16rem;
  }

  .deals h2 {
    font-size: 1.6rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .deals {
    padding: 1.5rem 1rem;
  }

  .deal-item {
    width: 70%;
    /* height: 15rem; */
  }

  /* Hide nav buttons on mobile */
  .deal-btn {
    display: none;
  }

  .deals-container {
    overflow-x: auto;
    /* horizontal scroll */
    scrollbar-width: none;
    /* Firefox */
  }

  .deals-container::-webkit-scrollbar {
    display: none;
  }

  /* Chrome */
}

/* Small phones */
@media (max-width: 480px) {
  .deal-item {
    width: 85%;
    height: 14rem;
  }

  .deals h2 {
    font-size: 1.3rem;
  }

  .deal-item p {
    font-size: 1rem;
    padding: 0.6rem;
  }
}

/* Explore Section */
.explore-section {
  padding: 2rem 3rem;
  background: #fff3f9;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.explore-header h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 1.5px;
  color: #222;
}

.explore-header p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Grid Layout */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.explore-card {
  position: relative;
  overflow: hidden;
  /* border-radius: 12px; */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.explore-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover Effects */
.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.explore-card:hover img {
  transform: scale(1.08);
}

.explore-card:hover span {
  background: rgba(233, 30, 99, 0.85);
  /* Pink highlight */
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .explore-header h2 {
    font-size: 1.8rem;
  }

  .explore-section {
    padding: 1rem 1rem;
  }

}


.women-deals {
  padding: 0rem 3rem 2rem 3rem;
  text-align: center;
  position: relative;
  user-select: none;
}

.women-deals .deals-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.women-deals h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1.5px;
}

.women-btn {
  position: absolute;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0.5rem 13.5px;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  border-radius: 10%;
  user-select: none;
}

.women-btn.left {
  left: 10px;
}

.women-btn.right {
  right: 10px;
}

.women-container {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.women-container.active {
  cursor: grabbing;
}

.women-item {
  flex: 0 0 auto;
  width: 250px;
  height: 20rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.women-item img {
  width: 250px;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.women-item p {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, background 0.3s ease;
}

.women-item:hover {
  transform: translateY(-8px);
}

.women-item:hover img {
  transform: scale(1.07);
}

.women-item:hover p {
  color: #e91e63;
}

/* Tablets */
@media (max-width: 991px) {
  .women-item {
    width: 200px;
    height: 16rem;
  }

  .women-deals h2 {
    font-size: 1.6rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {

  .women-deals {
    padding: 0rem 1rem;
  }

  .women-item {
    width: 70%;
    /* Show 1 big card, swipe for more */
    height: 16rem;
  }

  .women-item img {

    width: 100%;
    /* height: 15rem; */

    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    pointer-events: none;
  }

  .women-item {
    width: 70%;
    /* Show 1 big card, swipe for more */
    /* height: 15rem; */
  }

  /* Hide nav buttons on mobile */
  .women-btn {
    display: none;
  }

  .women-container {
    overflow-x: auto;
    /* Enable horizontal scroll */
    scrollbar-width: none;
    /* Firefox */
  }

  .women-container::-webkit-scrollbar {
    display: none;
  }

  /* Chrome */
}

/* Small phones */
@media (max-width: 480px) {
  .women-item {
    width: 85%;
    height: 14rem;
  }

  .women-deals h2 {
    font-size: 1.3rem;
  }

  .women-item p {
    font-size: 1rem;
    padding: 0.6rem;
  }
}

.men-deals {
  padding: 0rem 3rem 2rem 3rem;
  text-align: center;
  background: #fff3f9;
  position: relative;
  user-select: none;
}

.men-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 2rem 0rem 0rem 0rem;
}

.men-header h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1.5px;
}

.men-btn {
  position: absolute;
  background: #fff3f9;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0.5rem 13.5px;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  user-select: none;
}

.men-btn.left {
  left: 10px;
}

.men-btn.right {
  right: 10px;
}

.men-container {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.men-container.active {
  cursor: grabbing;
}

.men-item {
  flex: 0 0 auto;
  width: 250px;
  height: 20rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.men-item img {
  width: 250px;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.men-item p {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, background 0.3s ease;
}

.men-item:hover {
  transform: translateY(-8px);
}

.men-item:hover img {
  transform: scale(1.07);
}

.men-item:hover p {
  color: #e91e63;
}


/* Tablets */
@media (max-width: 991px) {
  .men-item {
    width: 200px;
    height: 16rem;
  }

  .men-header h2 {
    font-size: 1.6rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .men-header {
    margin-bottom: 0.5rem;
    padding: 0rem 0rem 0rem 0rem;
  }

  .men-deals {
    padding: 1rem 1rem;
  }

  .men-item {
    width: 70%;
    /* Show 1 big card, swipe for more */

    height: 16rem;
  }

  .men-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    pointer-events: none;
  }

  /* Hide nav buttons on mobile */
  .men-btn {
    display: none;
  }

  .men-container {
    overflow-x: auto;
    /* Enable horizontal scroll */
    scrollbar-width: none;
    /* Firefox */
  }

  .men-container::-webkit-scrollbar {
    display: none;
  }

  /* Chrome */
}

/* Small phones */
@media (max-width: 480px) {
  .men-item {
    width: 85%;
    height: 14rem;
  }

  .men-header h2 {
    font-size: 1.3rem;
  }

  .men-item p {
    font-size: 1rem;
    padding: 0.6rem;
  }
}

/* ====== Banner Box (Men) ====== */
.hmboxbnrclevertapImg-men {
  text-align: center;
  /* max-width: 100%; */
  background-color: #fff3f9;
  padding: 2rem 3rem;
}

/* Title above image */
.hmboxbnrclevertapImg-men .hmTitle h2 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  letter-spacing: 1.2px;
  position: relative;
  display: inline-block;
}

/* Banner Image */
.hmboxbnrclevertapImg-men img {
  display: block;
  width: 100%;
  height: 60vh;
  margin: 1rem auto 0 auto;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.hmboxbnrclevertapImg-men img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .hmboxbnrclevertapImg-men .hmTitle h2 {
    font-size: 1.5rem;
    margin: 0 0 0rem 0;
  }

  .hmboxbnrclevertapImg-men {
    padding: 1rem 1rem;
  }

  .hmboxbnrclevertapImg-men img {
    max-width: 100%;
    height: 35vh;
  }

  .hmboxbnrclevertapImg-men img:hover {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }
}


.kids-deals {
  padding: 0rem 3rem 2rem 3rem;
  text-align: center;
  position: relative;
  user-select: none;
}

.kids-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.kids-header h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1.5px;
}

.kids-btn {
  position: absolute;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0.5rem 13.5px;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  border-radius: 10%;
  user-select: none;
}

.kids-btn.left {
  left: 10px;
}

.kids-btn.right {
  right: 10px;
}

.kids-container {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.kids-container.active {
  cursor: grabbing;
}

.kids-item {
  flex: 0 0 auto;
  width: 250px;
  height: 20rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.kids-item img {
  width: 250px;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.kids-item p {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, background 0.3s ease;
}

.kids-item:hover {
  transform: translateY(-8px);
}

.kids-item:hover img {
  transform: scale(1.07);
}

.kids-item:hover p {
  color: #e91e63;
}


/* Tablets */
@media (max-width: 991px) {
  .kids-item {
    width: 200px;
    height: 16rem;
  }

  .kids-header h2 {
    font-size: 1.6rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .kids-header {
    margin-bottom: 0.5rem;
    padding: 0rem;
  }

  .kids-deals {
    padding: 1rem 1rem;
  }

  .kids-item {
    width: 70%;
    /* Show 1 big card, swipe for more */
    height: 16rem;
  }

  .kids-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    pointer-events: none;
  }

  /* Hide nav buttons on mobile */
  .kids-btn {
    display: none;
  }

  .kids-container {
    overflow-x: auto;
    /* Enable horizontal scroll */
    scrollbar-width: none;
    /* Firefox */
  }

  .kids-container::-webkit-scrollbar {
    display: none;
  }

  /* Chrome */
}

/* Small phones */
@media (max-width: 480px) {
  .kids-item {
    width: 85%;
    height: 14rem;
  }

  .kids-header h2 {
    font-size: 1.3rem;
  }

  .kids-item p {
    font-size: 1rem;
    padding: 0.6rem;
  }
}

.accessories-deals {
  padding: 0rem 3rem 2rem 3rem;
  text-align: center;
  position: relative;
  user-select: none;
  background: #fff3f9;
}

.accessories-header {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.accessories-header h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1.5px;
}

.accessories-btn {
  position: absolute;
  background: #fff3f9;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0.5rem 13.5px;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  border-radius: 10%;
  user-select: none;
}

.accessories-btn.left {
  left: 10px;
}

.accessories-btn.right {
  right: 10px;
}

.accessories-container {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.accessories-container.active {
  cursor: grabbing;
}

.accessories-item {
  flex: 0 0 auto;
  width: 250px;
  height: 20rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.accessories-item img {
  width: 250px;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.accessories-item p {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, background 0.3s ease;
}

.accessories-item:hover {
  transform: translateY(-8px);
}

.accessories-item:hover img {
  transform: scale(1.07);
}

.accessories-item:hover p {
  color: #e91e63;
}

/* Tablets */
@media (max-width: 991px) {
  .accessories-item {
    width: 200px;
    height: 16rem;
  }

  .accessories-header h2 {
    font-size: 1.6rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .accessories-header {
    margin-bottom: 0.5rem;
    padding: 0;
  }

  .accessories-deals {
    padding: 1rem 1rem;
  }

  .accessories-item {
    width: 70%;
    height: 16rem;
  }

  .accessories-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    pointer-events: none;
  }

  .accessories-btn {
    display: none;
  }

  .accessories-container {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .accessories-container::-webkit-scrollbar {
    display: none;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .accessories-item {
    width: 85%;
    height: 14rem;
  }

  .accessories-header h2 {
    font-size: 1.3rem;
  }

  .accessories-item p {
    font-size: 1rem;
    padding: 0.6rem;
  }
}

.footwear-deals {
  padding: 0rem 3rem 2rem 3rem;
  text-align: center;
  position: relative;
  user-select: none;
}

.footwear-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footwear-header h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1.5px;
}

.footwear-btn {
  position: absolute;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0.5rem 13.5px;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  border-radius: 10%;
  user-select: none;
}

.footwear-btn.left {
  left: 10px;
}

.footwear-btn.right {
  right: 10px;
}

.footwear-container {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.footwear-container.active {
  cursor: grabbing;
}

.footwear-item {
  flex: 0 0 auto;
  width: 250px;
  height: 20rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.footwear-item img {
  width: 250px;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.footwear-item p {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, background 0.3s ease;
}

.footwear-item:hover {
  transform: translateY(-8px);
}

.footwear-item:hover img {
  transform: scale(1.07);
}

.footwear-item:hover p {
  color: #e91e63;
}

/* Tablets */
@media (max-width: 991px) {
  .footwear-item {
    width: 200px;
    height: 16rem;
  }

  .footwear-header h2 {
    font-size: 1.6rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .footwear-header {
    margin-bottom: 0.5rem;
    padding: 0;
  }

  .footwear-deals {
    padding: 1rem 1rem;
  }

  .footwear-item {
    width: 70%;
    height: 16rem;
  }

  .footwear-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    pointer-events: none;
  }

  .footwear-btn {
    display: none;
  }

  .footwear-container {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .footwear-container::-webkit-scrollbar {
    display: none;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .footwear-item {
    width: 85%;
    height: 14rem;
  }

  .footwear-header h2 {
    font-size: 1.3rem;
  }

  .footwear-item p {
    font-size: 1rem;
    padding: 0.6rem;
  }
}

/* About Section */
.about-section {
  width: 100%;
  text-align: center;

  color: #000;
  font-family: Arial, sans-serif;
}

/* Banner */
.about-banner {
  width: 100%;
  /* full width container */
  display: flex;
  /* flex for centering */
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* center vertically */
    margin-bottom: 1rem;
  padding: 3rem 3rem 2rem 3rem;
  /* space at top and bottom */
}

.about-banner img {
  width: 100%;
  /* take 80% of the page width */
  height: auto;
  /* keep proportions */
  display: block;
  /* removes inline spacing */
  margin: 0 auto;
  /* center horizontally */
  /* border-radius: 10px; */
  /* optional: rounded corners */
}

/* About Us Heading over Image */
.about-content h1 {
color: #e91e63;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Content */
.about-content {
  background-color: #fff;
  /* max-width: 900px; */

  padding: 2rem 3rem;
  /* padding: 0 20px; */
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 1rem;
  text-align: left;
  color: #000;
}

 .contact-section {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 2rem 3rem;
      gap: 50px;
    }

    .contact-form, .contact-info {
      flex: 1;
    }

    .contact-form h2, .contact-info h2 {
      font-size: 26px;
      margin-bottom: 20px;
    }

    .contact-form input, 
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
    }

    .contact-form button {
      width: 100%;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-radius: 25px;
      background: black;
      color: white;
      cursor: pointer;
    }

    .contact-info p {
      margin: 12px 0;
      line-height: 1.8;
      font-size: 17px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .contact-info i {
      font-size: 18px;
      color: #e91e63;
      min-width: 20px;
    }

    @media (max-width: 900px) {
      .contact-section {
        flex-direction: column;
      }
    }
    @media (max-width: 900px) {
      .about-content p {
        font-size: 1rem;
      }
    }

    .care-section {
      padding: 2rem 3rem;
      background: #fff;
      text-align: center;
    }

    .care-section h2 {
      font-size: 28px;
      margin-bottom: 15px;
    }

    .care-section p {
      font-size: 17px;
      color: #000;
      margin-bottom: 40px;
    }

    .care-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .care-card {
      background: #fff3f9;
      padding: 50px 20px;
      border-radius: 12px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .care-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .care-card i {
      font-size: 33px;
      color: #e91e63;
      margin-bottom: 15px;
    }

    .care-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #000;
    }

    .care-card p {
      font-size: 14px;
      color: #000;
      margin-bottom: 15px;
    }

    .care-card a {
      display: inline-block;
      margin-top: 10px;
      font-size: 14px;
      color: black;
      text-decoration: none;
      font-weight: bold;
    }

    .care-card a:hover {
      text-decoration: underline;
    }
    .faq-section {
  /* max-width: 900px; */
  margin: 2rem 3rem; /* center it */

}

/* Main title */
.faq-section h1 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.faq-section h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff3f9;
  margin-top: 1.2rem;
}

/* Section headings */
.faq-section h2 {
  font-size: 1.4em;
  margin: 2rem 0 1rem;
  color: #e91e63;
}

/* Each FAQ */
.faq-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

/* Question row */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff3f9;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
}

.faq-question:hover {
  background: #fceaf3;
}

/* Expand/collapse icon */
.faq-icon {
  font-size: 1.3rem;
  color: #e91e63;
  transition: transform 0.3s ease;
}

/* Answer (collapsed by default) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  padding: 0 1.2rem; /* horizontal only */
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1rem 1.2rem;
  opacity: 1;
}

/* -----------------------
   RESPONSIVE ADJUSTMENTS
-------------------------- */
@media (max-width: 768px) {
  .faq-section {
    margin: 1.5rem auto;
    padding: 0 1rem;
  }

  .faq-section h1 {
    font-size: 1.8em;
  }

  .faq-section h2 {
    font-size: 1.2em;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  .faq-icon {
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0.9rem 1rem;
  }
}

@media (max-width: 480px) {
  .faq-section h1 {
    font-size: 1.6em;
  }

  .faq-section h2 {
    font-size: 1.1em;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .faq-answer {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}


    /* Container */
    .policy-container {
      /* max-width: 900px; */
      margin: 2rem 3rem;
      background: #fff;
      /* padding: 2.5rem; */
    }

    /* Header */
    .policy header {
      margin-bottom: 2rem;
      text-align: center;
    }
    .policy header h1 {
      font-size: 2em;
      color: #000;
      margin-bottom: 1rem;
    }
    .policy header p {
      color: #000;
      font-size: 1rem;
    }

    /* Sections */
    .policy section {
      margin-bottom: 1.8rem;
    }
    .policy section h2 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
      color: #000;
      /* padding-left: 0.6rem; */
    }
    .policy section p,
    .policy section ul,
    .policy section ol {
      font-size: 1rem;
      color: #000;
    }

    /* Lists */
    .policy ul,
    .policy ol {
      margin: 1rem 1.2rem;
    }
    .policy li {
      margin-bottom: 0.5rem;
    }

    /* Contact Info */
    .policy a {
      color: #e91e63;
      font-weight: 500;
      text-decoration: none;
    }
    .policy a:hover {
      text-decoration: underline;
    }


    /* Responsive */
    @media (max-width: 768px) {
 
      .policy header h1 {
        font-size: 1.5rem;
      }
      .policy section h2 {
        font-size: 1.1rem;
      }
    }

.privacy-section p{
   line-height: 1.8;
}

    /* Container */
    .privacy-container {
      margin: 2rem 3rem;
      background: #fff;
    }

    /* Header */
    .privacy-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .privacy-header h1 {
      font-size: 2rem;
      color: #000;
      margin-bottom: 0.8rem;
    }
    .privacy-header p {
      font-size: 1rem;
      color: #000;
    }

    /* Sections */
    .privacy-section {
      margin-bottom: 2rem;
    }
    .privacy-section h2 {
      font-size: 1.3rem;
      color: #000;
    }
    .privacy-section p,
    .privacy-section ul {
      font-size: 1rem;
      color: #000;
    }

    /* Lists */
    .privacy-section ul {
      margin: 1rem 1.3rem;
    }
    .privacy-section li {
      margin-bottom: 0.7rem;
    }

    /* Links */
    .privacy-link {
      color: #e91e63;
      font-weight: 500;
      text-decoration: none;
    }
    .privacy-link:hover {
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .privacy-container {
        padding: 1.5rem;
        margin: 1rem;
      }
      .privacy-header h1 {
        font-size: 1.6rem;
      }
      .privacy-section h2 {
        font-size: 1.1rem;
      }
    }
    .ipr-container {
      margin: 2rem 3rem;
      background: #fff;
     
    }

    .ipr-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .ipr-header h1 {
      font-size: 2rem;
      color: #000;
      margin-bottom: 1rem;
    }
    .ipr-header p {
      font-size: 1rem;
      line-height: 1.6;
      color: #000;
    }

    .ipr-section {
      margin-bottom: 2rem;
    }
    .ipr-section h2 {
      font-size: 1.3rem;
      color: #000;
      margin-bottom: 1rem;
    }
    .ipr-section p,
    .ipr-section ul {
      font-size: 1rem;
      color: #000;
      line-height: 1.8;
    }

    .ipr-section ul {
      margin: 1rem 1.3rem;
    }
    .ipr-section li {
      margin-bottom: 0.7rem;
    }

    .ipr-link {
      color: #e91e63;
      font-weight: 500;
      text-decoration: none;
    }
    .ipr-link:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .ipr-container {
        padding: 1.5rem;
        margin: 1rem;
      }
      .ipr-header h1 {
        font-size: 1.6rem;
      }
      .ipr-section h2 {
        font-size: 1.1rem;
      }
    }
    
    .ship-container {
      margin: 2rem 3rem;
      background: #fff;
    }

    .ship-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .ship-header h1 {
      font-size: 2rem;
      color: #000;
      margin-bottom: 1rem;
    }
    .ship-header p {
      font-size: 1rem;
      line-height: 1.6;
      color: #000;
    }

    .ship-section {
      margin-bottom: 2rem;
    }
    .ship-section h2 {
      font-size: 1.3rem;
      color: #000;
      margin-bottom: 1rem;
    }
    .ship-section p,
    .ship-section ul {
      font-size: 1rem;
      color: #000;
      line-height: 1.8;
    }

    .ship-section ul {
      margin: 1rem 1.3rem;
    }
    .ship-section li {
      margin-bottom: 0.7rem;
    }

    .ship-link {
      color: #e91e63;
      font-weight: 500;
      text-decoration: none;
    }
    .ship-link:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .ship-container {
        padding: 1.5rem;
        margin: 1rem;
      }
      .ship-header h1 {
        font-size: 1.6rem;
      }
      .ship-section h2 {
        font-size: 1.1rem;
      }
    }
  .terms-container {
    margin: 2rem 3rem;
    background: #fff;
  }

  .terms-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .terms-header h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
  }
  .terms-header p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
  }

  .terms-section {
    margin-bottom: 2rem;
  }
  .terms-section h2 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
  }
  .terms-section p,
  .terms-section ul {
    font-size: 1rem;
    color: #000;
    line-height: 1.8;
  }

  .terms-section ul {
    margin: 1rem 1.3rem;
  }
  .terms-section li {
    margin-bottom: 0.7rem;
  }

  .terms-link {
    color: #e91e63;
    font-weight: 500;
    text-decoration: none;
  }
  .terms-link:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .terms-container {
      padding: 1.5rem;
      margin: 1rem;
    }
    .terms-header h1 {
      font-size: 1.6rem;
    }
    .terms-section h2 {
      font-size: 1.1rem;
    }
  }
  .payment-container {
    margin: 2rem 3rem;
    background: #fff;
  }

  .payment-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .payment-header h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
  }
  .payment-header p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
  }

  .payment-section {
    margin-bottom: 2rem;
  }
  .payment-section h2 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
  }
  .payment-section p,
  .payment-section ul {
    font-size: 1rem;
    color: #000;
    line-height: 1.8;
  }

  .payment-section ul {
    margin: 1rem 1.3rem;
  }
  .payment-section li {
    margin-bottom: 0.7rem;
  }

  .payment-link {
    color: #e91e63;
    font-weight: 500;
    text-decoration: none;
  }
  .payment-link:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .payment-container {
      padding: 1.5rem;
      margin: 1rem;
    }
    .payment-header h1 {
      font-size: 1.6rem;
    }
    .payment-section h2 {
      font-size: 1.1rem;
    }
  }
    .partners-container {
    margin: 2rem 3rem;
    background: #fff;
  }

  .partners-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .partners-header h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
  }
  .partners-header p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
  }

  .partners-section {
    margin-bottom: 2rem;
  }
  .partners-section h2 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
  }
  .partners-section p,
  .partners-section ul {
    font-size: 1rem;
    color: #000;
    line-height: 1.8;
  }

  .partners-section ul {
    margin: 1rem 1.3rem;
  }
  .partners-section li {
    margin-bottom: 0.7rem;
  }

  .partners-link {
    color: #e91e63;
    font-weight: 500;
    text-decoration: none;
  }
  .partners-link:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .partners-container {
      padding: 1.5rem;
      margin: 1rem;
    }
    .partners-header h1 {
      font-size: 1.6rem;
    }
    .partners-section h2 {
      font-size: 1.1rem;
    }
  } 


    .user-container {
                  color: #fff;
      padding: 2rem 3rem;
       background: #fff;
      /* padding: 0 1.5rem; */
      /* max-width: 1200px; */
    }

    /* Profile Header */
    .user-header {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      background: #131921;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .user-header img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 3px solid #e91e63;
      object-fit: cover;
    }

    .user-header h2 {
      margin: 0;
      font-size: 1.6rem;
    }

    .user-header p {
      margin: 5px 0 0;
      color: #aaa;
    }

    /* Dashboard Cards */
    .dashboard {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .card {
       background: #131921;
      padding: 1.5rem;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      transition: transform 0.2s ease;
    }
    .card:hover {
      transform: translateY(-5px);
    }

    .card i {
      font-size: 2rem;
      color: #e91e63;
      margin-bottom: 1rem;
    }

    .card h3 {
      margin: 0.5rem 0;
      font-size: 1.2rem;
      color: #fff;
    }

    .card p {
      color: #aaa;
      font-size: 0.95rem;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      background: #e91e63;
      color: #fff;
      padding: 0.6rem 1.2rem;
      border-radius: 6px;
      text-decoration: none;
      margin-top: 1rem;
      font-size: 0.95rem;
      transition: background 0.2s ease;
    }
    .btn:hover {
      background: #c2185b;
    }

    @media (max-width: 768px) {
      .user-header {
        flex-direction: column;
        text-align: center;
      }
    }


  .account-container {
    /* max-width: 1200px; */
    padding: 2rem 3rem;
    /* padding: 0 1.5rem; */
    display: grid;
        background: #fff;
    color: #fff;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
  }

  /* Sidebar */
  .account-sidebar {
     background: #131921;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  .account-sidebar h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #e91e63;
  }
  .account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .account-menu li {
    margin: 0.6rem 0;
  }
  .account-menu a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .account-menu a:hover,
  .account-menu a.active {
    background: #e91e63;
  }

  /* Main Content */
  .account-main {
  background: #131921;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .account-main h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: #e91e63;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }
 .account-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #aaa;
  }
.form-group input, select {
    width: 100%;
    padding: 0.7rem;
    border: none;
    border-radius: 6px;
    background: #333;
    color: #fff;
    font-size: 1rem;
  }
   .account-container input:focus, select:focus {
    outline: 2px solid #e91e63;
  }

  .btn {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
  }
  .btn:hover {
    background: #c2185b;
  }

  @media (max-width: 900px) {
    .account-container {
      grid-template-columns: 1fr;
    }
  }


    .cart-container {
             background: #fff;
      color: #fff;
      grid-template-columns: 2fr 1fr;
      gap: 2rem;
      padding: 2rem 3rem;
    }

    .cart-title {
      font-size: 2rem;
      color: #e91e63;
      margin-bottom: 1.5rem;
      text-align: center;
      justify-content: center;
      align-content: center;
    }

    /* Cart Items */
    .cart-items {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .cart-item {
      display: grid;
      grid-template-columns: 100px 1fr 120px 80px;
      align-items: center;
      gap: 1rem;
      background: #131921;
      border-radius: 12px;
      padding: 1rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .cart-item img {
      width: 100%;
      border-radius: 8px;
    }

    .cart-item h3 {
      margin: 0;
      font-size: 1.1rem;
    }

    .cart-item p {
      margin: 0.3rem 0;
      color: #aaa;
      font-size: 0.9rem;
    }

    .cart-qty {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .cart-qty button {
      background: #333;
      color: #fff;
      border: none;
      width: 28px;
      height: 28px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s ease;
    }
    .cart-qty button:hover {
      background: #e91e63;
    }

    .cart-qty input {
      width: 40px;
      text-align: center;
      border: none;
      background: #333;
      color: #fff;
      border-radius: 6px;
      padding: 0.4rem;
    }

    .cart-price {
      font-weight: bold;
      color: #e91e63;
      text-align: right;
    }

    /* Summary Sticky */
    .cart-summary {
      background: #131921;
      border-radius: 12px;
      padding: 1.5rem;
      
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
margin: 1.5rem 0rem;
      align-self: start;
    }

    .cart-summary h3 {
      margin-top: 0;
      color: #e91e63;
      margin-bottom: 1rem;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      margin: 0.5rem 0;
    }

    .summary-row strong {
      color: #fff;
    }

    .btn {
      display: inline-block;
      background: #e91e63;
      color: #fff;
      padding: 0.8rem 1.5rem;
      border-radius: 6px;
      text-decoration: none;
      font-size: 1rem;
      cursor: pointer;
      border: none;
      width: 100%;
      text-align: center;
      transition: background 0.2s ease;
      margin-top: 1rem;
    }
    .btn:hover {
      background: #c2185b;
    }

    @media (max-width: 1024px) {
      .cart-container {
        grid-template-columns: 1fr;
      }
      .cart-summary {
        position: static;
        margin-top: 2rem;
      }
    }

/* ================================
   EXTRA RESPONSIVE FIXES
================================ */

/* Tablets */
@media (max-width: 900px) {

  .cart-item {
    grid-template-columns: 80px 1fr 100px 70px;
    gap: 0.8rem;
  }

  .cart-title {
    font-size: 1.8rem;
  }
}

/* Large Phones */
@media (max-width: 700px) {

  .cart-container {
    padding: 1.5rem 1rem;
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 0.8rem;
  }

  .cart-item img {
    grid-row: span 3;
  }

  .cart-price {
    text-align: left;
    font-size: 1rem;
  }

  .cart-qty {
    justify-content: flex-start;
  }
}

/* Small Phones */
@media (max-width: 480px) {

  .cart-title {
    font-size: 1.6rem;
  }

  .cart-item {
    padding: 0.8rem;
  }

  .cart-item h3 {
    font-size: 1rem;
  }

  .cart-item p {
    font-size: 0.85rem;
  }

  .cart-qty button {
    width: 26px;
    height: 26px;
  }

  .cart-qty input {
    width: 36px;
    padding: 0.3rem;
  }

  .btn {
    padding: 0.7rem;
    font-size: 0.95rem;
  }
}

/* Ultra Small Devices */
@media (max-width: 360px) {

  .cart-item {
    grid-template-columns: 60px 1fr;
  }

  .cart-item img {
    width: 60px;
  }
}

    .checkout-container {
      display: grid;
            background: #fff;
      color: #fff;
      grid-template-columns: 2fr 1fr;
      gap: 2rem;
      padding: 2rem 3rem;
    }

    .checkout-title {
      font-size: 2rem;
      color: #e91e63;
      grid-column: span 2;
      text-align: center;
    }

    /* Form */
    .checkout-form {
      background: #131921;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .checkout-form h3 {
      margin-top: 0;
      margin-bottom: 1rem;
      color: #e91e63;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
      color: #ddd;
    }

 .checkout-container   input, select, textarea {
      width: 100%;
      padding: 0.7rem;
      border-radius: 6px;
      border: none;
      background: #e7e7e7;
      color: #777;
      font-size: 1rem;
    }

    textarea {
      resize: vertical;
      min-height: 80px;
    }

    /* Summary Sticky */
    .checkout-summary {
      background: #131921;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      position: sticky;
      top: 7rem;
      align-self: start;
    }

    .checkout-summary h3 {
      margin-top: 0;
      color: #e91e63;
      margin-bottom: 1rem;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      margin: 0.5rem 0;
    }

    .summary-row strong {
      color: #fff;
    }

    .btn {
      display: inline-block;
      background: #e91e63;
      color: #fff;
      padding: 0.8rem 1.5rem;
      border-radius: 6px;
      text-decoration: none;
      font-size: 1rem;
      cursor: pointer;
      border: none;
      width: 100%;
      text-align: center;
      transition: background 0.2s ease;
      margin-top: 1rem;
    }
    .btn:hover {
      background: #c2185b;
    }
@media (max-width: 1024px) {

  .checkout-container {
    grid-template-columns: 1fr;
  }

  .checkout-title {
    grid-column: span 1;
  }

  /* Make summary appear AFTER form */
  .checkout-form {
    order: 1;
  }

  .checkout-summary {
    order: 2;
    position: static;
    margin-top: 2rem;
  }
}

/* ================================
   EXTRA RESPONSIVE FIXES - CHECKOUT
================================ */

/* Tablets */
@media (max-width: 900px) {

  .checkout-title {
    font-size: 1.8rem;
  }

  .checkout-form,
  .checkout-summary {
    padding: 1.3rem;
  }
}

/* Large Phones */
@media (max-width: 700px) {

  .checkout-container {
    padding: 1.5rem 1rem;
  }

  .checkout-title {
    grid-column: span 1;
    font-size: 1.7rem;
  }

  label {
    font-size: 0.85rem;
  }

  .checkout-container input,
  .checkout-container select,
  .checkout-container textarea {
    font-size: 0.95rem;
    padding: 0.65rem;
  }
}

/* Small Phones */
@media (max-width: 480px) {

  .checkout-title {
    font-size: 1.5rem;
  }

  .checkout-form h3,
  .checkout-summary h3 {
    font-size: 1.1rem;
  }

  .form-group {
    margin-bottom: 0.8rem;
  }

  .btn {
    padding: 0.7rem;
    font-size: 0.95rem;
  }
}

/* Ultra Small Devices */
@media (max-width: 360px) {

  .checkout-container {
    padding: 1rem 0.7rem;
  }

  .checkout-title {
    font-size: 1.4rem;
  }

  .checkout-container input,
  .checkout-container select,
  .checkout-container textarea {
    font-size: 0.9rem;
  }
}

    
    .confirmation-container {
        color: #fff;
      max-width: 800px;
      margin: 3rem auto;
      padding: 2rem;
      background: #131921;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      text-align: center;
    }

    .confirmation-container h1 {
      color: #e91e63;
      margin-bottom: 1rem;
    }

    .confirmation-container p {
      color: #ccc;
      margin-bottom: 1rem;
    }

    .order-id {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 2rem;
    }

    .order-summary {
      text-align: left;
      margin-top: 2rem;
    }

    .order-summary h3 {
      color: #e91e63;
      margin-bottom: 1rem;
    }

    .order-item {
      display: flex;
      justify-content: space-between;
      margin: 0.5rem 0;
      padding: 0.7rem 1rem;
      background: #e7e7e7;
      color: #000;
      border-radius: 8px;
    }

    .order-item span {
      font-size: 0.95rem;
    }

    .summary-total {
      border-top: 1px solid #444;
      padding-top: 1rem;
      margin-top: 1rem;
      font-weight: bold;
      font-size: 1.1rem;
      display: flex;
      justify-content: space-between;
    }

    .btn {
      display: inline-block;
      background: #e91e63;
      color: #fff;
      padding: 0.8rem 1.5rem;
      border-radius: 6px;
      text-decoration: none;
      font-size: 1rem;
      cursor: pointer;
      border: none;
      margin-top: 2rem;
      transition: background 0.2s ease;
    }
    .btn:hover {
      background: #c2185b;
    }
    
    .tracking-container {
        color: #fff;
      max-width: 800px;
      margin: 3rem auto;
      padding: 2rem;
      background: #131921;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .tracking-container h1 {
      color: #e91e63;
      text-align: center;
      margin-bottom: 1.5rem;
    }

    /* Tracking Form */
    .tracking-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .tracking-form input {
      padding: 0.8rem 1rem;
      border-radius: 6px;
      border: none;
      background: #e7e7e7;
      color: #fff;
      font-size: 1rem;
    }
    .tracking-form input:focus {
      outline: 2px solid #e91e63;
    }
    .btn {
      background: #e91e63;
      color: #fff;
      padding: 0.9rem;
      border-radius: 6px;
      border: none;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.2s ease;
    }
    .btn:hover {
      background: #c2185b;
    }

    /* Progress Timeline */
    .tracking-status {
      margin-top: 2rem;
    }
    .status-steps {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-top: 2rem;
    }
    .status-steps::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 4px;
      background: #333;
      z-index: 0;
    }
    .step {
      position: relative;
      z-index: 1;
      text-align: center;
      width: 25%;
    }
    .step .circle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      margin: 0 auto;
      background: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.9rem;
    }
    .step.active .circle,
    .step.completed .circle {
      background: #e91e63;
    }
    .step p {
      margin-top: 0.5rem;
      font-size: 0.9rem;
      color: #ccc;
    }