* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.top{
  font-size: xx-large;
  text-align: center;
  font-weight: 600;
  color: black;
  background-color: burlywood;
  border-radius: 5px;
  margin-top: 15px;
  font-family: 'Times New Roman', Times, serif;
}


html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-image: url('https://i.postimg.cc/Hkg9JXLr/clothing-brand-abstract-background.jpg');
  background-repeat: no-repeat;
  background-position: top center; /* top aligned */
  background-size: auto 100%;      /* scale height, keep top visible */
  overflow-x: hidden;
}

@media (max-width: 768px) {
  html, body {
    background-position: top center;
    background-size: auto 100%; /* make height full, width auto */
    background-attachment: scroll;
  }
}


/* Tablet adjustments */
@media (max-width: 1024px) {
  html, body {
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  html, body {
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
  }
}



/* Navbar Styling */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  padding: 8px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background: linear-gradient(90deg, #111827, #1e293b);
  backdrop-filter: blur(10px);
  color: #fff;
  z-index: 500;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.head h1{
  padding-top: 85px;
}

/* Left section: Logo + Search */
.left-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Logo */
.logo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;

}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: #1f2937; /* dark gray */
  border-radius: 6px;
  padding: 4px 8px;
  gap: 6px;
  max-width: 400px;
  width: 100%;
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  padding: 6px;
}

.search-bar input::placeholder {
  color: #9ca3af; /* gray-400 */
}

.search-bar button {
  background: #2563eb; /* blue-600 */
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-bar button:hover {
  background: #1d4ed8; /* darker blue */
}

/* ============================= */
/* 📱 Mobile (max 640px) */
/* ============================= */
@media (max-width: 640px) {
  .search-bar {
    max-width: 180px;
    padding: 2px 6px;
    gap: 4px;
  }

  .search-bar input {
    font-size: 0.85rem;
    padding: 4px;
  }

  .search-bar button {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
}

/* 💻 Tablet (641px - 1024px) */
@media (min-width: 641px) and (max-width: 1024px) {
  .search-bar {
    max-width: 280px;
    padding: 4px 8px;
  }

  .search-bar input {
    font-size: 0.95rem;
  }

  .search-bar button {
    font-size: 0.95rem;
    padding: 5px 10px;
  }
}

/* 🖥 Desktop (1025px+) */
@media (min-width: 1025px) {
  .search-bar {
    max-width: 400px;
    padding: 6px 12px;
  }

  .search-bar input {
    font-size: 1rem;
  }

  .search-bar button {
    font-size: 1rem;
    padding: 6px 12px;
  }
}


/* Nav Links */

.nav-links { list-style:none; display:flex; align-items:center; gap:12px; }
.nav-links li a { color:#fff; text-decoration:none; padding:6px 10px; display:inline-flex; gap:8px; align-items:center; border-radius:6px; background:transparent; font-weight:600; }
.nav-links li a:hover { background: rgba(255,255,255,0.04); }

.profile-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links li a:hover {
  color: #00bcd4;
}

/* Right section: Profile + Hamburger */
.right-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  object-fit: cover;
  cursor: pointer;
  box-shadow: 0 0 15px #e76b06, 0 0 25px #00ffcc;
}

.profile img:hover {
  background: wheat;
  background-color: #00cc7a;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
}
/* ===== Hero Slider ===== */
.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.slider {
  margin-top: -8%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px; /* space between slides */
  padding: 20px 0;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Default (mobile-first) */
.slide img {
  width: 90%;             /* smaller on mobile */
  max-width: 400px;       /* limit size */
  height: auto;           /* keep proportion */
  object-fit: contain;    /* show full image */
  border-radius: 20px;    /* rounded edges */
  display: block;
}

/* Tablets */
@media (min-width: 768px) {
  .slide img {
    width: 80%;
    max-width: 700px;
    object-fit: cover;    /* can crop a little to look big */
    height: 60vh;         /* taller */
  }
}

/* Laptops / Desktops */
@media (min-width: 1024px) {
  .slide img {
    width: 95%;           
    max-width: 1200px;
    height: 70vh;
    object-fit: cover;    /* fill area nicely */
    border-radius: 25px;  /* a bit larger curve */
  }
}


/* Tablet */
@media (min-width: 768px) {
  .slide img {
    width: 90%;
    height: 50vh;
  }
}

/* Laptop / Desktop */
@media (min-width: 1024px) {
  .slide img {
    width: 85%;
    height: 70vh; /* taller image for bigger screens */
  }
}

/* Dots */
.dots {
  text-align: center;
  margin: 12px 0;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #0d47a1;
}

   /* Circle Women */
/* ===== Women Circle Slider ===== */
.women-slider {  
  border-radius: 30px;
  background-color: #f1f6fc;
  padding: 20px 0; 
}

.slider-title {
  text-align: center; 
  margin: 20px 0;
  font-size: 22px; 
  font-weight: bold; 
  color: #0d47a1;
}

.circle-slider {
  display: flex; 
  gap: 15px;
  overflow-x: auto;
  padding: 10px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.circle-slider::-webkit-scrollbar { display: none; }

.circle-item {
  flex: 0 0 auto;
  width: 150px; 
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #0d47a1;
  scroll-snap-align: center;
  background: #eee;
  transition: transform 0.3s ease;
}
.circle-item:hover { transform: scale(1.08); }
.circle-item img { width: 100%; height: 100%; object-fit: cover; }

/* Responsive */
@media (min-width: 768px) { 
  .circle-item { width: 100px; height: 100px; } 
}
@media (min-width: 1024px) {
  .circle-item { width: 130px; height: 130px; }
  .slider-title { font-size: 26px; }
}

/* ===== Label Styling for <p> ===== */
.women-slider p {
  position: sticky;
  flex: 0 0 auto;         /* keeps it aligned in the slider */
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fcf6f6;
  margin: auto 0;         /* vertically centers inside the row */
  display: flex;
  align-items: center;
  padding: 0 10px;
  text-transform: capitalize;
}
    /* ===== Product Grid ===== */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      padding: 20px;
    }
    .product {
      background: white;
      padding: 12px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 3px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .product:hover { transform: translateY(-5px); }
    .product img {
      width: 100%; height: 200px;
      object-fit: cover;
      border-radius: 8px;
    }
    .product h3 { margin: 10px 0 5px; font-size: 16px; color: #333; }
    .product p { color: #0d47a1; font-weight: bold; }
    @media (min-width: 768px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}
.grid-item img {
  width: 100%; border-radius: 12px; transition: transform 0.3s;
}
.grid-item:hover img { transform: scale(1.05); }
.masonry {
  column-count: 2; column-gap: 10px;
}
.masonry img {
  width: 100%; margin-bottom: 10px; border-radius: 10px;
}
@media (min-width: 768px) {
  .masonry { column-count: 3; }
}


/* Products Wrapper */
.products-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 95%;
  max-width: 1200px;
  margin: 50px auto;
  overflow-x: hidden;
}

/* Zig-zag layout for desktop */
.zig-zag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Reverse order for second product */

.productcircle {
  width: 130px;
  height: 120px;
  object-fit: cover;
  border-radius: 100%;

}

/* Description styling */
.description,
.product-description {
  flex: 1;
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: #fff;
  backdrop-filter: blur(10px);
  
}

.description h1 {
  font-size: 2.5rem;
  color: lightgreen;
  margin-bottom: 15px;
}

.product-description h2 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 15px;
  
}

.description p,
.product-description p {
  font-size: 1.2rem;
  line-height: 1.6;

}

.product-description {
  max-width: 100%;
  height: auto;
  width: auto;
}

/* Image styling */
.product-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  animation: productGlow 3s ease-in-out infinite alternate;
}

@keyframes productGlow {
  from {
    box-shadow: 
      0 0 8px #ff6b6b,
      0 0 16px rgba(255, 107, 107, 0.7);
  }
  to {
    box-shadow: 
      0 0 16px #ff6b6b,
      0 0 32px rgba(255, 107, 107, 0.9);
  }

}

.product-image img:hover {
  transform: scale(1.05);
}

.product-description button,
.products-wrapper button,
.featured button {
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  color:#fff;border:none;border-radius:10px;
  padding:12px 24px;font-size:1rem;font-weight:600;
  cursor:pointer;transition:.3s;box-shadow:0 4px 10px rgba(0,0,0,.2);
}
.product-description button:hover,
.products-wrapper button:hover,
.featured button:hover {
  background:linear-gradient(135deg,#2575fc,#6a11cb);
  transform:translateY(-3px);box-shadow:0 6px 15px rgba(0,0,0,.3);
}
.product-description button:active,
.products-wrapper button:active,
.featured button:active {
  transform:translateY(-1px);box-shadow:0 3px 8px rgba(0,0,0,.2);
}
.product-description button:focus,
.products-wrapper button:focus,
.featured button:focus {
  outline:none;box-shadow:0 0 0 4px rgba(106,17,203,.5);
}

/* Mobile */
@media(max-width:768px){
  .product-description button,
  .products-wrapper button,
  .featured button {font-size:.9rem;padding:10px 18px;border-radius:8px;}
}

/* Laptop */
@media(min-width:769px) and (max-width:1199px){
  .product-description button,
  .products-wrapper button,
  .featured button {font-size:1rem;padding:12px 22px;}
}

/* Desktop */
@media(min-width:1200px){
  .product-description button,
  .products-wrapper button,
  .featured button {font-size:1.1rem;padding:14px 26px;}
}

/* Mobile Responsive */

  .nav-links {
    position: sticky;
    display: flex;
    flex-direction: column;
    background: whitesmoke;
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    padding: 20px;
    gap: 25px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    font-size: clamp(1.3rem, 2vw, 3.1rem);
  }

  .nav-links li a {
    font-size: 1.2rem;
    gap: 12px;
  }

  .nav-links li a img.profile-icon {
    width: 28px;
    height: 28px;
  }

  .nav-links.active {
    right: 0;
  }

  .close-btn {
    align-self: flex-end;
    font-size: 1.5rem;
    cursor: pointer;
    color: black;
  }

  .hamburger {
    display: block;

  }

  .search-bar input {
    width: 100px;
  }

  .products-wrapper {
    gap: 40px;
  }

  .zig-zag,
  .zig-zag.reverse {
    flex-direction: column;
  }

  .description,
  .product-description {
    width: 100%;
  }


 .product-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: fill;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: circleGlow 3s ease-in-out infinite alternate;
}

@keyframes circleGlow {
  from {
    box-shadow: 
      0 0 8px #6b5bff,
      0 0 16px rgba(107, 91, 255, 0.6);
  }
  to {
    box-shadow: 
      0 0 18px #6b5bff,
      0 0 36px rgba(107, 91, 255, 0.9);
  }
}


.head {
  display: flex;
  justify-content: center;
  text-align: center;
  color: bisque;
  font-style: italic;
  font-weight: 900;
  margin-top: -60px;
  font-family: 'Times New Roman', Times, serif;

  /* Responsive font size */
  font-size: clamp(1.5rem, 1.7vw, 3.5rem);

}


/* Unique product card */
.unique-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  /* background: linear-gradient(135deg, #ff6a00, #ee0979); */
  border-radius: 25px;
  padding: 30px;
  color: #fff;
  font-family: 'Georgia', serif;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.unique-card:hover {
  transform: scale(1.02);
}

.unique-card .product-description {
  flex: 1;
}

.unique-card h2 {
  font-size: 2.2rem;
  font-family: 'Courier New', monospace;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.unique-card p {
  font-size: 1.2rem;
  line-height: 1.6;
}


/* Image */
.unique-card .product-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.unique-card .product-image img {
  max-width: 100%;
  /* width: 250px; */
  height: auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  border-radius: 100%;
}

.unique-card .product-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .unique-card {
    flex-direction: column;
    /* stack text above image */
    align-items: center;
    text-align: center;
  }

  .unique-card .product-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .unique-card .product-image img {
    width: 150px;
    /* adjust as needed */
    height: auto;
  }
}


/* Feature */

.featured {
  width: 100%;
  background: linear-gradient(135deg, #1c1c1c, #2d2d2d);
  border-radius: 15px;
  padding: 70px 10%;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.featured-container {
  padding: 20px;
  border-radius: 15px;
  background-color: orange;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 50px;
  flex-wrap: wrap;
}

.featured-image img {
  width: 100%;
  max-width: 100%;
  margin: 20px;
  /* width: 400px; */
  height: auto;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
  animation: img-glow 1.8s infinite alternate ease-in-out;
}

/* Container Glow - Blue, soft & slow */
@keyframes img-glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 150, 0.4),
                0 0 20px rgba(255, 0, 150, 0.2);
  }
  100% {
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.9),
                0 0 50px rgba(255, 0, 150, 0.6);
  }
}
  
.featured-design {
  display: inline-block;
  padding: 25px;
  border-radius: 25px;
  background: #1a1a1a;
  animation: featured-design-glow 3.5s infinite alternate ease-in-out;
}

/* Golden / Flame Glow for .featured-design */
@keyframes featured-design-glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.5),
                0 0 20px rgba(255, 80, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 160, 0, 0.8),
                0 0 50px rgba(255, 100, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 40px rgba(255, 200, 0, 1),
                0 0 80px rgba(255, 120, 0, 0.9);
  }
}


.featured-image img:hover {
  transform: scale(1.05);
}

.featured-description {
  flex: 1;
  max-width: 500px;
}

.featured-description h1 {
  font-size: 2.5rem;
  color: #00ff9d;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.featured-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 25px;
}

.cta-btn {
  padding: 12px 25px;
  font-size: 1rem;
  background: #00ff9d;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  color: black;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}


.offer-banner {
  margin-top: 8cap;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffeb3b; /* yellow background for visibility */
  color: #000;
  font-weight: bold;
  padding: 10px 0;
  font-size: 18px;
  position: relative;
}

.offer-banner span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-banner 15s linear infinite;
}

@keyframes scroll-banner {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}



/* ===== Responsive ===== */
@media (max-width: 768px) {
  .featured-container {
    flex-direction: column;
    text-align: center;
  }

  .featured-image img {
    width: 100%;
    max-width: 350px;
  }

  .featured-card {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #2a2a2a;
    padding: 20px;
    border-radius: 12px;
  }

  .featured-card.reverse {
    flex-direction: row-reverse;

  }

  .featured-image img {
    margin: 25px;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
  }

  .featured-image img:hover {
    transform: scale(1.05);
  }

  .featured-description {
    flex: 1;
    max-width: 450px;
    font-style: italic;
  }

  .featured-description .title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #00ADB5;
  }

  .featured-description .text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 18px;
    color: #dcdcdc;
  }

  .cta-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
    background: #00ADB5;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    color: #111;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
  }

  .cta-btn:hover {
    background: #007a86;
    transform: translateY(-2px);
  }

  .featured-card img {
    border-radius: 100%;
  }

  /* ===== BUTTON STYLING ===== */
  button,
  .cta-btn {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(238, 9, 121, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  button:hover,
  .cta-btn:hover {
    background: linear-gradient(135deg, #ee0979, #ff6a00);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(238, 9, 121, 0.6);
  }

  button:active,
  .cta-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 3px 10px rgba(238, 9, 121, 0.4);
  }


  /* Special style for small buttons in footer (Subscribe etc.) */
  .subscribe-form button {
    background: #333;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    transition: 0.3s;
  }

  .subscribe-form button:hover {
    background: #ff6a00;
  }


  /* Responsive */
  @media (max-width: 768px) {

    .featured-card,
    .featured-card.reverse {
      flex-direction: column;
      text-align: center;
    }

    .featured-image img {
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
    }

    .featured-description {
      max-width: 100%;
    }
  }

  #toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 14px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 30px;
    font-size: 16px;
    transition: visibility 0s, opacity 0.5s ease-in-out;
    opacity: 0;
  }

  #toast.show {
    visibility: visible;
    opacity: 1;
  }


  /* Category css */



  /* ===== LAPTOP (1025px - 1440px) ===== */
  @media (min-width: 1025px) and (max-width: 1440px) {
    .products-wrapper {
      width: 95%;
      gap: 40px;
    }

    .zig-zag,
    .zig-zag.reverse {
      gap: 25px;
    }

    .description,
    .product-description {
      padding: 18px;
    }

    .product-image img,
    .unique-card .product-image img {
      width: 220px;
      height: 220px;
    }

    .featured-container {
      gap: 40px;
    }

    .featured-image img {
      width: 350px;
    }

    .featured-description h1,
    .featured-description .title {
      font-size: 2.2rem;
    }
  }

  /* ✅ Add these at the very bottom of your CSS */

  /* Stop horizontal scroll globally */
  html,
  body {
    overflow-x: hidden !important;
  }

  /* Fix featured section images on mobile */
  @media (max-width: 768px) {
    .featured-image img {
      margin: 0 auto !important;
      max-width: 100% !important;
      height: auto !important;
      display: block;
    }
  }

  /* Fix product and unique collection images */
  @media (max-width: 768px) {

    .product-image img,
    .unique-card .product-image img {
      max-width: 100% !important;
      height: auto !important;
      display: block;
    }
  }

  /* Prevent mobile nav from pushing page width */
  .nav-links {
    max-width: 100vw !important;
  }

  /* ----- Container ----- */
  .category-container {
    position: relative;
    width: 250px;
  }

  /* ----- Button ----- */
  .category-btn {
    width: 100%;
    padding: 12px 20px;
    background: #1f2937;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
  }

  .category-btn:hover {
    background: #374151;
  }

  /* ----- Arrow ----- */
  .category-btn .arrow {
    transition: transform 0.3s;
  }

  .category-btn.active .arrow {
    transform: rotate(180deg);
  }

  /* ----- Dropdown Menu ----- */
  .category-menu {
    font: 300;
    font-weight: 300;
    position: absolute;
    top: 60px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    /* z-index: 1100; */
  }

  .category-menu.show {
    max-height: 500px;
    /* enough to fit all items */
  }

  .category-menu li {
    font-size: 15px;
    list-style: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .category-menu li:hover {
    background: burlywood;
  }

  /* Bottom Category */
  .body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    padding-bottom: 60px;
    /* prevent overlap with nav */
  }

  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .bottom-nav a {
    text-decoration: none;
    color: #555;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.2s;
    cursor: pointer;
  }

  .bottom-nav a:hover,
  .bottom-nav a.active {
    color: #007bff;
  }

  .bottom-nav i {
    font-size: 18px;
    margin-bottom: 3px;
  }
}
/* Classical Clothes Section */
/* Auto-adjust grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

/* Card styling */
.card {
  background:whitesmoke;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  margin-top: 20px;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.card h2 {
  font-size: 18px;
  margin: 8px 0;
  color: black;
}

.card p {
  font-weight: 600;
  color: black;
  margin-bottom: 12px;
}

/* Add to Cart Button */
.add-to-cart,
.card button {
  display: inline-block;         /* prevents full width stretch */
  max-width: 180px;              /* limits button width */
  width: 100%;                   /* fills parent up to max-width */
  background: #0056b3;           /* dark blue default */
  color: #fff;
  border: none;
  padding: 10px 20px;            /* more balanced padding */
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease;
  box-sizing: border-box;
}

.add-to-cart:hover,
.card button:hover {
  background: #440ae4;           /* slightly darker on hover */
}

/* Optional: center the button in the card */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
}



/* View More button */
.viewmore {
  text-align: center;
  margin: 20px 0;
}

.viewmore button {
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #07ec40;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.viewmore button:hover {
  background: #1fb458;
  transform: translateY(-2px);
}

/* ✅ RESPONSIVENESS */

/* Tablets (max 1024px) */
@media (max-width: 1024px) {
  .card img {
    height: 220px;
  }
}



/* ===== FOOTER DESIGN ===== */
footer {
  margin-top: 40px;
  width: 100%;
  border-radius: 20px 20px 0 0;
  background: #0b0f19;
  color: #dcdcdc;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

/* Main grid */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

/* Footer Columns */
.footer-col h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: #00ffcc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #bbb;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00ffcc;
  padding-left: 5px;
}

/* Contact */
.footer-contact p {
  font-size: 14px;
  margin: 8px 0;
}

/* Subscribe */
.subscribe-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 14px;
}

.subscribe-form button {
  background: #00ffcc;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background: #00e6b8;
}

/* Social */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: #111;
  border-radius: 50%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-social a img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

.footer-social a:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px #00ffcc, 0 0 25px #00ffcc;
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* ===== RESPONSIVENESS ===== */

/* Tablets */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 10px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  footer {
    padding: 40px 15px 15px;
  }

  .footer-container {
    display: block;
    text-align: center;
  }

  .footer-col,
  .footer-brand {
    margin-bottom: 30px;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 15px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .footer-brand h2 {
    font-size: 22px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }

  .footer-social a img {
    width: 18px;
    height: 18px;
  }
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.feature-box {
  background: #fff;
  color: #333;
  padding: 40px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #eee;
}

.feature-box i {
  font-size: 40px;
  color: #0d47a1; /* professional blue */
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-box p {
  font-size: 16px;
  opacity: 0.85;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}
/* CTA Banner */
.cta-banner {
  margin: 60px auto 20px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #fff;
  text-align: center;
  border-radius: 20px;
  max-width: 1100px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-banner h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #0d47a1;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
}
.features-header {
  background-color: whitesmoke;
  border-radius: 15px;
  text-align: center;
  margin: 40px auto 20px;
  padding: 25px 15px;
  width: 90%;              /* take most of screen width */
  max-width: 900px;        /* limit on large desktops */
  box-sizing: border-box;  /* prevent overflow */
}

.features-header h2 {
  font-size: 2rem;         /* scales better than px */
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 10px;
}

.features-header p {
  font-size: 1rem;
  color: #555;
  opacity: 0.9;
  line-height: 1.5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .features-header h2 {
    font-size: 1.6rem;
  }
  .features-header p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .features-header {
    padding: 20px 12px;
    width: 95%;
  }
  .features-header h2 {
    font-size: 1.4rem;
  }
  .features-header p {
    font-size: 0.9rem;
  }
}
.features-header {
  background-color: whitesmoke;
  border-radius: 15px;
  text-align: center;
  margin: 40px auto 20px;
  padding: 25px 15px;
  width: 90%;              /* take most of screen width */
  max-width: 900px;        /* limit on large desktops */
  box-sizing: border-box;  /* prevent overflow */
}

.features-header h2 {
  font-size: 2rem;         /* scales better than px */
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 10px;
}

.features-header p {
  font-size: 1rem;
  color: #555;
  opacity: 0.9;
  line-height: 1.5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .features-header h2 {
    font-size: 1.6rem;
  }
  .features-header p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .features-header {
    padding: 20px 12px;
    width: 95%;
  }
  .features-header h2 {
    font-size: 1.4rem;
  }
  .features-header p {
    font-size: 0.9rem;
  }
}
/* Section Container */
.women-slider {
  display: flex;
  background: #fff;
  border-radius: 15px;
  margin: 20px auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;   /* needed for sticky child */
  padding: 20px;
}

/* Sticky Category Box */
.category-box {
  position: sticky;
  top: 20px;
  flex: 0 0 150px;   /* reduced width (was 220px) */
  height: auto;     
  background: #0d47a1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;   /* smaller text (was 22px) */
  font-weight: 600;  /* lighter bold */
  text-transform: uppercase;
  border-radius: 6px; /* slightly smaller curve */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* lighter shadow */
  z-index: 5;
  transform: skew(-5deg);
  margin-right: 15px; /* less gap from slider */
  padding: 8px 12px;  /* compact spacing */
}


/* Horizontal Slider next to it */
.circle-slider {
  display: flex;
  flex: 1;                 /* take remaining width */
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 15px;
  align-items: center;
}


.circle-slider::-webkit-scrollbar {
  height: 6px;
}
.circle-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

.circle-item img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}
/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Modal Content */
.modal-content {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  position: relative;
}

.modal-content img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease forwards;
}


/* Add to Cart Button */
#modal-add-btn {
  margin-top: 10px;
  padding: 8px 16px;
  background: #0d47a1;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


.cart-btn {
  background: #0d47a1;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cart-btn:hover {
  background: #08306b;     /* darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.cart-btn:active {
  transform: translateY(0); /* press effect */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}


/* Mens Collection */
.grid-showcase h2{
background-color: burlywood;
font-size: xx-large;

}
/* Grid Container */
.grid-container {
  display: grid;
  gap: 20px;                  /* Space between items */
  grid-template-columns: repeat(4, 1fr); /* Default 4 columns for desktop */
  padding: 20px;
}

/* Grid Item Card */
/* Grid Container */
.grid-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr); /* Desktop default */
  padding: 20px;
}

/* Grid Item Card */
.grid-item {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Image styling: equal sizes for all */
.grid-item img {
  width: 100%;
  height: 200px;          /* fixed height for uniformity */
  object-fit: contain;     /* fit entire image without cropping */
  border-radius: 12px;     /* rounded corners on the image itself */
  
  background-color: #fff;  /* ensures background behind transparent areas */
  display: block;          /* remove inline gaps */
}

/* Text below image */
.grid-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* Tablet */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Square Img Section */
/* Section Container */
.collection-section {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 100%;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 15px;
}

/* Horizontal Scroll Slider */
.square-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 15px;
}

.square-slider::-webkit-scrollbar {
  height: 6px;
}
.square-slider::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 5px;
}

/* Square Cards (responsive) */
.square-card {
  flex: 0 0 calc(33.33% - 15px); /* 3 per row on mobile */
  aspect-ratio: 1 / 1;            /* perfect square */
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #0d47a1;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.square-card:hover {
  transform: scale(1.05);
}

.square-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet: 4 items visible */
@media (min-width: 768px) {
  .square-card {
    flex: 0 0 calc(25% - 15px);
  }
}

/* Laptop/Desktop: 5–6 items visible */
@media (min-width: 1024px) {
  .square-card {
    flex: 0 0 calc(16.66% - 15px); /* ~6 per row */
  }
}
/* Wheel */
.wheel-container {
  position: relative;
  width: 90vw;
  height: 90vw;
  max-width: 600px;
  max-height: 600px;
  margin: 40px auto; /* centers it */
  border-radius: 50%;
  overflow: visible;
  perspective: 1000px;
}

.item {
  position: absolute;
  width: 22vw;
  height: 22vw;
  max-width: 140px;
  max-height: 140px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.item img {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
}




