/* Product Material Page Styles */

:root {
  --color-primary: #BBA06B;       /* Gold */
  --color-primary-dark: #9e8550;  /* Darker Gold */
  --color-secondary: #1a1a1a;     /* Dark Grey */
  --color-text: #333;             /* Dark Text */
  --color-text-light: #666;       /* Light Text */
  --color-bg-light: #f8f9fa;      /* Light Background */
  --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Fixes */
body {
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
}




/* Hero Section — Background Image */
.material-hero {
  position: relative;
  padding: 180px 0 100px;
  background: url('../img/Product-material/Silk.jpeg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(26,26,26,0.7) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 0;
}

.material-hero .container {
  z-index: 1;
}

.material-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23BBA06B' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.material-hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}

.material-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero Search Bar */
.hero-search-wrapper {
  margin-top: 35px;
}

.hero-search {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 5px 5px 5px 20px;
  transition: var(--transition);
}

.hero-search:focus-within {
  background: rgba(255,255,255,0.2);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(187, 160, 107, 0.2);
}

.hero-search i {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-right: 10px;
}

.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.95rem;
  padding: 12px 0;
}

.hero-search input::placeholder {
  color: rgba(255,255,255,0.5);
}

/* Section Headers */
.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.section-header p {
  color: #888;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  padding: 5px 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

/* Featured / Popular Section */
.featured-section {
  padding: 80px 0 40px;
  background: var(--color-bg-light);
}

.featured-grid {
  row-gap: 25px;
}

.featured-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition: var(--transition);
}

.featured-card:hover {
  transform: translateY(-6px);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card:hover img {
  transform: scale(1.06);
}

.featured-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 25px 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: #fff;
}

.featured-card-overlay h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.featured-card-overlay span {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-card .featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

/* Result Counter */
.result-counter {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.result-counter strong {
  color: var(--color-primary);
}

/* Category Badge on Cards */
.category-badge {
  position: absolute;
  top: auto;
  bottom: 12px;
  left: 12px;
  right: auto;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9) !important;
  color: #333 !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Uniform Luxury Glass Badge for All Categories */
.badge-natural, .badge-synthetic, .badge-premium, .badge-decorative, .badge-light, .badge-heavy, .badge-stretch {
  background: rgba(255, 255, 255, 0.85) !important;
  color: #333 !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* WhatsApp Floating Button */
.wa-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: wa-pulse 2s infinite;
}

.wa-float:hover {
  background: #128C7E;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.wa-float i {
  font-size: 1.4rem;
}

.wa-float-label {
  font-size: 0.85rem;
  font-weight: 600;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
}

/* Material Filter Section */
.material-section {
  padding: 120px 0 60px;
  background-color: #fff;
}

.material-filter {
  margin-bottom: 25px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #e0e0e0;
  color: #555;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(187, 160, 107, 0.4);
}

/* Material Grid & Cards */
.material-grid {
  /* Inherits row layout from Bootstrap, but we can enforce spacing */
  row-gap: 30px;
}

.material-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #f0f0f0;
}

.material-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(187, 160, 107, 0.3);
}

.material-img-wrapper {
  height: 280px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.03); /* Subtle definition for light fabrics */
}

.material-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.material-card:hover .material-img-wrapper img {
  transform: scale(1.08);
}


/* Removed overlay to ensure image clarity as requested by user */

.material-info {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.material-info h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-secondary);
}

.material-info p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 20px;
  font-weight: 500;
}

.btn-detail {
  margin-top: auto; /* Pushes button to bottom */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background-color: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-detail:hover {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(187, 160, 107, 0.3);
}

/* Modal Styling */
.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  overflow: hidden;
}

.modal-header {
  padding: 20px 30px;
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.modal-title {
  font-family: 'Open Sans', sans-serif;
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.modal-body {
  padding: 0;
}

.modal-body-content {
  display: flex;
  flex-wrap: wrap;
}

.modal-img {
  flex: 1 1 400px;
  height: 400px; /* Fixed height for consistency */
  border-radius: 0;
  overflow: hidden;
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  flex: 1 1 350px;
  padding: 40px;
  background-color: #fff;
}

.modal-details h4 {
  font-family: 'Open Sans', sans-serif;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
  display: inline-block;
}

.modal-details p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}

.spec-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #dcdcdc;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.spec-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.spec-list li strong {
  color: var(--color-secondary);
  font-weight: 600;
}

.spec-list li span {
  color: #555;
}

.modal-details .btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  border-radius: 30px;
  padding: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.modal-details .btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 5px 15px rgba(187, 160, 107, 0.4);
}

/* Modal CTA Footer */
.modal-cta-footer {
  padding: 16px 40px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}

.modal-cta-footer .btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  border-radius: 30px;
  padding: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.modal-cta-footer .btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 5px 15px rgba(187, 160, 107, 0.4);
}

/* ============================================
   MOBILE RESPONSIVE — COMPLETE OVERHAUL
============================================ */

/* --- Tablet (769px - 1024px) --- */
@media (max-width: 1024px) {
  .material-section {
    padding: 100px 0 40px;
  }

  .material-img-wrapper {
    height: 240px;
  }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {

  /* Remove double padding — inline style has padding-top:100px */
  .material-section {
    padding: 80px 0 30px !important;
  }

  /* --- STICKY HORIZONTAL SCROLL FILTER BAR --- */
  .material-filter {
    position: sticky;
    top: 72px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 8px;
    margin: 0 -12px 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .material-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    padding: 7px 16px;
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 20px;
  }

  .filter-btn.active {
    box-shadow: 0 2px 8px rgba(187, 160, 107, 0.3);
  }

  /* --- RESULT COUNTER --- */
  .result-counter {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  /* --- COMPACT MATERIAL CARDS (3-column grid) --- */
  .material-grid {
    row-gap: 10px;
    --bs-gutter-x: 8px;
  }

  .material-card {
    border-radius: 12px;
  }

  .material-img-wrapper {
    height: 150px;
  }

  .material-info {
    padding: 10px 8px 12px;
    text-align: center;
  }

  .material-info h3 {
    font-size: 0.8rem;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .material-info p {
    font-size: 0.6rem;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
  }

  .btn-detail {
    padding: 6px 8px;
    font-size: 0.68rem;
    width: 100%;
    border-radius: 20px;
  }

  .category-badge {
    font-size: 0.5rem;
    padding: 2px 8px;
    top: auto;
    bottom: 6px;
    left: 6px;
    right: auto;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    font-weight: 800;
  }

  .status-indicator-badge {
    top: 6px;
    right: 6px;
    padding: 2px 8px;
    font-size: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }

  /* Card hover — disable on touch */
  .material-card:hover {
    transform: none;
  }

  .material-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  /* --- HERO SECTION (if visible) --- */
  .material-hero {
    padding: 120px 0 50px;
  }
  
  .material-hero h1 {
    font-size: 2rem;
  }

  .hero-search {
    max-width: 100%;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .featured-card {
    height: 200px;
  }

  .featured-section {
    padding: 40px 0 15px;
  }

  /* --- MODAL MOBILE — Bottom Sheet Style --- */
  .modal-dialog {
    margin: 0;
    max-width: 100%;
    min-height: auto;
    display: flex;
    align-items: flex-end;
  }

  .modal-dialog-centered {
    align-items: flex-end !important;
    min-height: 100% !important;
  }

  .modal-content {
    border-radius: 20px 20px 0 0;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  /* Drag handle indicator */
  .modal-header {
    padding: 8px 18px 10px;
    position: relative;
    border-bottom: none;
  }

  .modal-header::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    border-radius: 4px;
    background: #ddd;
  }

  .modal-title {
    font-size: 1.1rem;
    margin-top: 10px;
  }

  .modal-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    padding-bottom: 70px; /* Space for sticky CTA */
  }

  .modal-body-content {
    flex-direction: column;
  }
  
  /* Image — Compact banner */
  .modal-img {
    height: 180px;
    flex: none;
    width: 100%;
    position: relative;
  }

  .modal-img img {
    border-radius: 0;
  }
  
  /* Details — Tighter layout */
  .modal-details {
    padding: 18px 16px 10px;
  }

  .modal-details h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1.5px solid #f0f0f0;
  }

  .modal-details p {
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.55;
    color: #555;
  }

  /* Specs — Horizontal pills style */
  .spec-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin-bottom: 14px;
    background: none;
    border-radius: 0;
  }

  .spec-list li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #eee;
    background: #faf9f7;
    font-size: 0.78rem;
    margin-bottom: 0;
    padding-bottom: 6px;
    border-bottom: none;
    white-space: nowrap;
  }

  .spec-list li strong {
    font-size: 0.72rem;
    color: #af976a;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .spec-list li span {
    color: #333;
    font-weight: 500;
  }

  .spec-list li:last-child {
    border-bottom: none;
  }

  /* Sticky WhatsApp CTA Footer */
  .modal-cta-footer {
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .modal-cta-footer .btn-primary {
    padding: 12px;
    font-size: 0.9rem;
    border-radius: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }

  /* --- FASHION GALLERY MOBILE --- */
  .fashion-gallery-section {
    padding: 18px 14px;
  }

  .fashion-gallery-header h4 {
    font-size: 1.1rem;
  }

  .fashion-ref-card img {
    height: 200px;
  }

  .fashion-ref-label {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  /* --- WHATSAPP FLOAT --- */
  .wa-float {
    bottom: 20px;
    left: 20px;
    padding: 12px 16px;
  }

  .wa-float-label {
    display: none;
  }
}

/* --- Small Mobile (max 380px) — Extra compact --- */
@media (max-width: 380px) {
  .material-img-wrapper {
    height: 100px;
  }

  .material-info {
    padding: 8px 6px 10px;
  }

  .material-info h3 {
    font-size: 0.72rem;
  }

  .material-info p {
    display: none;
  }

  .btn-detail {
    padding: 5px 6px;
    font-size: 0.62rem;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 0.72rem;
  }
}

/* ============================================
   Fashion Reference Gallery (Inside Modal)
   3D Floating Product Renders
   ============================================ */
.fashion-gallery-section {
  padding: 30px 35px 40px;
  border-top: 1px solid #f0f0f0;
  background: linear-gradient(180deg, #f5f5f5 0%, #fff 100%);
}

.fashion-gallery-header {
  margin-bottom: 25px;
}

.fashion-gallery-header h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.fashion-gallery-header h4 i {
  color: var(--color-primary);
}

.fashion-gallery-header p {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

/* Swiper Container */
.fashion-swiper {
  padding-bottom: 50px;
  overflow: hidden;
}

.fashion-swiper .swiper-slide {
  height: auto;
  perspective: 600px;
}

/* 3D Floating Card */
.fashion-ref-card {
  position: relative;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  text-align: center;
  padding: 12px 8px 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              background 0.3s ease,
              border-color 0.3s ease;
  transform-style: preserve-3d;
}

.fashion-ref-card:hover {
  transform: rotateY(-3deg) rotateX(2deg) translateY(-5px);
  background: rgba(255,255,255,0.9);
  border-color: rgba(187, 160, 107, 0.2);
}

/* Product Image — Floating, No Background */
.fashion-ref-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 0;
  background: transparent;
}

.fashion-ref-card:hover img {
  transform: scale(1.04);
}



/* Label Tag — Floating Below Image */
.fashion-ref-label {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding: 5px 16px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: var(--transition);
}

.fashion-ref-card:hover .fashion-ref-label {
  background: var(--color-primary);
  box-shadow: 0 4px 15px rgba(187, 160, 107, 0.4);
}

/* Swiper Nav Buttons */
.fashion-swiper .swiper-button-next,
.fashion-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  border: 1px solid #e8e8e8;
  transition: var(--transition);
}

.fashion-swiper .swiper-button-next::after,
.fashion-swiper .swiper-button-prev::after {
  font-size: 14px;
  color: var(--color-secondary);
  font-weight: bold;
}

.fashion-swiper .swiper-button-next:hover,
.fashion-swiper .swiper-button-prev:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.fashion-swiper .swiper-button-next:hover::after,
.fashion-swiper .swiper-button-prev:hover::after {
  color: #fff;
}

.fashion-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: var(--transition);
}

.fashion-swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 28px;
  border-radius: 10px;
}

