/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Fixed header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 32px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo {
  color: #db3a1d;
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-shadow: 1px 2px 8px rgba(219,58,29,0.08), 0 1px 0 #fff;
  line-height: 1.1;
  padding: 0 12px;
  border-radius: 8px;
  text-decoration: none;
}

/* Nav styles */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #ffb3a0;
}

/* Hamburger Menu (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
}

@media (max-width: 768px) {
  header {
    height: 64px;
    padding: 0 10px;
  }
  .logo {
    font-size: 1.5rem;
    padding: 0 6px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #db3a1d;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-radius: 0 0 12px 12px;
    display: none;
  }
  nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  header {
    border-radius: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    padding: 10px 10px;
  }
  .slide {
    transition: opacity 0.5s, filter 0.5s;
    opacity: 0;
    filter: blur(4px);
  }
  .slide.active {
    opacity: 1;
    filter: blur(0);
    z-index: 1;
  }
}

/* hero section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding-top: 52px; /* header height (40px) + 12px gap */
  box-sizing: border-box;
  margin-top: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 20px;
  pointer-events: none;
  flex-direction: column;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slide img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeInContent 1.5s ease forwards;
  padding-top: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.btn-shop {
  background-color: #db3a1d;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(219,58,29,0.5);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-shop a {
  text-decoration: none;
  color: white;
}

.btn-shop:hover {
  background-color: #a92a12;
  transform: scale(1.05);
}

@keyframes fadeInContent {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn-shop {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* products section */
.products {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.products h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #db3a1d;
}

.product-list {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 80%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size:20px;
  margin-bottom: 10px;
  color: #333;
}

.product-card p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #666;
}

.product-card .price {
  font-weight: 700;
  font-size: 1.3rem;
  color: #db3a1d;
  margin-bottom: 20px;
}

/* Style for Buy Now buttons */
.btn-buy {
  display: inline-block;
  background-color: #db3a1d;
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(219, 58, 29, 0.5);
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-buy:hover {
  background-color: #a92a12;
  transform: scale(1.05);
}

/* Style for View More button */
.btn-view-more {
  display: inline-block;
  margin-top: 30px;
  background-color: transparent;
  color: #db3a1d;
  border: 2px solid #db3a1d;
  padding: 12px 36px;
  font-size: 1.2rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-view-more:hover {
  background-color: #db3a1d;
  color: white;
}

/* about us */

.about-us {
  background-color: #fff6f5;
  padding: 60px 20px;
  color: #4a4a4a;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.about-text h2 {
  font-size: 2.8rem;
  color: #db3a1d;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
  color: #555;
}

.btn-learn-more {
  background-color: #db3a1d;
  color: white;
  border: none;
  padding: 14px 36px;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(219, 58, 29, 0.5);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-learn-more:hover {
  background-color: #a92a12;
  transform: scale(1.05);
}

.about-image {
  flex: 1 1 300px;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-text, .about-image {
    max-width: 100%;
  }
  .about-text h2 {
    font-size: 2.2rem;
  }
}

/* demo pics show */
.image-gallery {
  padding: 60px 20px;
  background-color: #fff6f5;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  display: block;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 16px;
}

/* Overlay content */
.gallery-item .overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.gallery-item .overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.gallery-item .overlay p {
  font-size: 1rem;
  opacity: 0.85;
}

/* Hover effect */
.gallery-item:hover,
.gallery-item:focus {
  box-shadow: 0 12px 30px rgba(219, 58, 29, 0.7);
  transform: scale(1.05);
  z-index: 3;
}

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.15) rotate(1deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}

/* seo content  */
.seo-content {
  background-color: #fff6f5;
  padding: 60px 20px;
  color: #333;
  line-height: 1.7;
}

.seo-container {
  max-width: 1000px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #db3a1d;
  font-weight: 700;
}

.seo-content h3 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color:#db3a1d;
}

.seo-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.seo-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.seo-content ul li {
  margin-bottom: 10px;
}

/* testmonials */
.testimonials {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-container {
  max-width: 1100px;
  margin: auto;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #db3a1d;
  font-weight: 700;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial {
  background-color: #fff6f5;
  padding: 30px 20px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #db3a1d;
}

.testimonial .comment {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  font-style: italic;
  line-height: 1.5;
}

.testimonial h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
}

/* youtube */

.video-section {
  background-color: #fff6f5;
  padding: 60px 20px;
  text-align: center;
}

.video-container {
  max-width: 1100px;
  margin: 0 auto;
}

.video-container h2 {
  font-size: 22px;
  color: #db3a1d;
  margin-bottom: 10px;
}

.video-container p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #444;
}

.video-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.video-box {
  flex: 1 1 500px;
  max-width: 500px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* footer */
.footer {
  background-color: #222;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}

.footer p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-icons a {
  font-size: 1.5rem;
  color: white;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease;
  text-decoration: none;  /* <-- Add this line */
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Individual brand colors */
.instagram { background-color: #E1306C; }
.linkedin  { background-color: #0077B5; }
.whatsapp  { background-color: #25D366; }
.twitter   { background-color: #1DA1F2; }

/* men ethnic collection */

.ethnic-collections {
  padding: 60px 20px;
  background-color: #f9f5f3;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ethnic-collections h2 {
  font-size: 30px;
  color: #db3a1d;
  margin-bottom: 40px;
  font-weight: 700;
}

.ethnic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.ethnic-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.ethnic-item:hover {
  transform: translateY(-8px);
}

.ethnic-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.ethnic-item h3 {
  font-size: 20px;
  color: #db3a1d;
  margin-bottom: 8px;
}

.ethnic-item p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
}

.ethnic-item .price {
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.btn-buy {
  display: inline-block;
  background-color: #db3a1d;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-buy:hover {
  background-color: #a83015;
}

/* shop  page */


    .products-grid-S {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .product-card-S {
      background: white;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }
    .product-card-S:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(219, 58, 29, 0.5);
    }

    .product-card-S img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .product-info-S {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-info-S h3 {
      margin: 0 0 10px;
      text-align: center;
      font-size: 15px;
      color: #db3a1d;
    }

    .product-info-S .price-S {
      font-weight: 700;
      font-size: 1.1rem;
      text-align: center;
      margin-bottom: 15px;
      color: #000;
    }

    .product-info-S .buy-btn-S {
      background-color: #db3a1d;
      color: white;
      border: none;
      padding: 10px 0;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: block;
    }
    .product-info-S .buy-btn-S:hover {
      background-color: #b22d16;
    }

    /* Responsive: 2 products per row on mobile */
    @media (max-width: 768px) {
      .products-grid-S {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  .shoph1{
        color: rgb(0, 0, 0);
        text-align: center;
        font-size: 25px;
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: 28px;
    }

/* Contact Page Styles */
.contact-section {
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.contact-container h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #db3a1d;
}

.contact-container > p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Info Styles */
.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-card {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #db3a1d, #ff6b4a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card i {
  font-size: 2.5rem;
  color: #db3a1d;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.info-card:hover i {
  transform: scale(1.1);
}

.info-card h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
}

.info-card p {
  color: #666;
  margin: 8px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.info-link {
  display: inline-block;
  margin-top: 15px;
  color: #db3a1d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.info-link i {
  font-size: 0.9rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.info-link:hover {
  color: #a92a12;
}

.info-link:hover i {
  transform: translateX(5px);
}

/* Map Section Styles */
.map-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-container iframe {
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.map-container iframe:hover {
  transform: scale(1.01);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-container h2 {
    font-size: 2.2rem;
  }
  
  .info-card {
    padding: 25px 20px;
  }
  
  .contact-container > p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  z-index: 2000;
  font-size: 2rem;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.08);
  color: white;
}

.shop-float {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #db3a1d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  z-index: 2000;
  font-size: 2rem;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.shop-float:hover {
  background-color: #a92a12;
  transform: scale(1.08);
  color: white;
}

.back-float {
  position: fixed;
  top: 60px;
  left: 24px;
  width: 48px;
  height: 48px;
  background-color: #db3a1d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  z-index: 2100;
  font-size: 1.5rem;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.back-float:hover {
  background-color: #a92a12;
  transform: scale(1.08);
  color: white;
}

.footer-contact-link {
  color: #db3a1d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-instagram-link {
  color: #db3a1d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-contact-link:hover,
.footer-instagram-link:hover {
  color: #a92a12;
}

@media (max-width: 768px) {
  .back-float {
    top: 5px;
    left: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Filter Bar Styles */
.filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 40px 0 30px 0;
  padding: 14px 0;
  border-radius: 32px;
 
}

.filter-btn {
  position: relative;
  overflow: hidden;
  background: #db3a1d;
  color: #fff;
  border: none;
  outline: none;
  padding: 10px 28px;
  border-radius: 22px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(219,58,29,0.10);
  letter-spacing: 0.5px;
  z-index: 1;
}

.filter-btn::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: #fff;
  z-index: 0;
  transition: width 0.35s cubic-bezier(0.4,0.2,0.2,1);
  border-radius: 22px;
}

.filter-btn:hover, .filter-btn.active {
  color: #db3a1d;
  border: 2px solid #db3a1d;
  box-shadow: 0 4px 16px rgba(219,58,29,0.13);
}

.filter-btn:hover::before, .filter-btn.active::before {
  width: 100%;
}

.filter-btn span {
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .filter-bar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 4px;
    border-radius: 18px;
  }
  .filter-btn {
    padding: 8px 14px;
    font-size: 0.98rem;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
  }
  .filter-btn::before {
    border-radius: 14px;
    left: 0; top: 0; bottom: 0;
    width: 0%;
    background: #fff;
    z-index: 0;
    transition: width 0.35s cubic-bezier(0.4,0.2,0.2,1);
    content: "";
    position: absolute;
  }
  .filter-btn:hover, .filter-btn.active {
    color: #db3a1d;
    border: 2px solid #db3a1d;
    box-shadow: 0 4px 16px rgba(219,58,29,0.13);
  }
  .filter-btn:hover::before, .filter-btn.active::before {
    width: 100%;
  }
  .filter-btn span {
    position: relative;
    z-index: 1;
  }
}