/* ========================================
   GLOBAL STYLES & RESET
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-black: #1a1a1a;
  --secondary-black: #2d2d2d;
  --primary-white: #ffffff;
  --off-white: #f8f8f8;
  --cream: #f5f3ed;
  --cream-dark: #e8e6dd;
  --accent-gold: #c9a961;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--primary-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header {
  background-color: var(--primary-white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  padding: 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo a {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-black);
  letter-spacing: 2px;
  position: relative;
}

.logo a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.logo a:hover::after {
  width: 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu li a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-black);
  transition: width 0.3s ease;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
  width: 100%;
}

.nav-menu li a.active {
  color: var(--primary-black);
  font-weight: 600;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-black);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background-color: var(--primary-black);
  color: var(--primary-white);
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: var(--cream);
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cream);
}

.footer-section p {
  color: var(--cream-dark);
  line-height: 1.8;
  font-size: 14px;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact li {
  color: var(--cream-dark);
  font-size: 14px;
  transition: var(--transition);
}

.footer-contact li i {
  margin-right: 8px;
}

.footer-links a:hover {
  color: var(--cream);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--cream-dark);
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--cream);
  color: var(--primary-black);
  border-color: var(--cream);
}

/* Contact Page Social Links - Differentiate from Footer */
.contact-social-links a {
  color: var(--primary-black);
  border: 2px solid var(--primary-black);
  background-color: transparent;
  padding: 10px 20px;
  font-weight: 500;
}

.contact-social-links a:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
  border-color: var(--primary-black);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--secondary-black);
  color: var(--cream-dark);
  font-size: 14px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-image {
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: bottom;
}

.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--primary-black);
  color: var(--primary-white);
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: var(--transition);
  border: 2px solid var(--primary-black);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-black);
}

/* ========================================
   PRODUCTS SLIDER
======================================== */
.products-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-title p {
  font-size: 18px;
  color: var(--text-light);
}

/* Slider Header */
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.slider-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-black);
  margin: 0;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-white);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 24px;
  color: var(--primary-black);
}

.slider-btn:hover {
  background: var(--primary-black);
  color: var(--primary-white);
  border-color: var(--primary-black);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Swiper Slider Styles */
.productsSwiper {
  padding: 40px 0 60px;
  position: relative;
}

.productsSwiper .swiper-slide {
  height: auto;
}

/* Slider-specific card styles */
.slider-card {
  transition: box-shadow 0.3s ease;
}

.slider-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Product Overlay for Slider */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  z-index: 2;
}

.slider-card:hover .product-overlay {
  opacity: 1;
}

.overlay-content {
  width: 100%;
  text-align: center;
}

.category-label {
  color: var(--primary-white);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 8px 16px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Image without scale on hover */
.slider-card .product-image {
  height: 320px;
  overflow: hidden;
}

.slider-card:hover .product-image img {
  transform: none;
}

/* ========================================
   STATS SECTION
======================================== */
.stats-section {
  position: relative;
  background-image: url("../images/product2-main.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.stats-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stats-content h2 {
  color: var(--primary-white);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 16px;
  color: var(--cream);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   BESTSELLERS SECTION
======================================== */
.bestsellers-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.bestseller-card {
  display: flex;
  align-items: stretch;
  background: var(--primary-white);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  min-height: 280px;
}

.bestseller-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bestseller-image {
  width: 280px;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.bestseller-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.bestseller-card:hover .bestseller-image img {
  transform: scale(1.05);
}

.bestseller-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bestseller-content h3 {
  font-size: 20px;
  color: var(--primary-black);
  font-weight: 600;
  margin: 0;
}

.bestseller-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.bestseller-colors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bestseller-colors .color-badge {
  padding: 4px 12px;
  background: var(--off-white);
  color: var(--secondary-black);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.bestseller-action {
  margin-top: auto;
}

.view-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.bestseller-card:hover .view-details {
  gap: 12px;
}

/* ========================================
   WHY WOOL SECTION
======================================== */
.why-wool-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 100%);
}

.wool-panel {
  background: var(--primary-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--accent-gold);
}

.wool-header {
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--secondary-black) 100%
  );
  color: var(--primary-white);
  padding: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.wool-header i {
  font-size: 48px;
  color: var(--accent-gold);
}

.wool-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: var(--cream);
}

.wool-content {
  padding: 50px 60px;
}

.wool-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.wool-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  padding: 15px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
  transition: var(--transition);
}

.wool-benefits li:hover {
  transform: translateX(5px);
  background: var(--cream);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.wool-benefits li i {
  color: var(--accent-gold);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========================================
   WHY US SECTION
======================================== */
.why-us-section {
  padding: 80px 0;
  background-color: var(--primary-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--off-white);
  border-radius: 12px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--secondary-black) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent-gold);
}

.feature-card h3 {
  font-size: 20px;
  color: var(--primary-black);
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.product-card {
  background: var(--primary-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: block;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;

  background: #fff;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 25px;
  text-align: center;
}

.product-info h3 {
  font-size: 18px;
  color: var(--primary-black);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

/* Product titles - Full text visible */
.product-title-fixed {
  min-height: auto;
}

.product-colors {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
  min-height: 30px;
}

.color-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--cream);
  color: var(--text-dark);
  font-size: 11px;
  border-radius: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Swiper Navigation */
.productsSwiper .swiper-button-next,
.productsSwiper .swiper-button-prev {
  color: var(--primary-black);
  background: var(--primary-white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 2px 10px var(--shadow);
}

.productsSwiper .swiper-button-next:after,
.productsSwiper .swiper-button-prev:after {
  font-size: 20px;
}

.productsSwiper .swiper-button-next:hover,
.productsSwiper .swiper-button-prev:hover {
  background: var(--primary-black);
  color: var(--primary-white);
}

/* Swiper Pagination */
.productsSwiper .swiper-pagination-bullet {
  background: var(--text-light);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.productsSwiper .swiper-pagination-bullet-active {
  background: var(--primary-black);
  opacity: 1;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    var(--primary-white) 100%
  );
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  font-size: 42px;
  color: var(--primary-black);
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-info p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form {
  background: var(--primary-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background-color: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-black);
  background-color: var(--primary-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-black);
  color: var(--primary-white);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: var(--secondary-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   PAGE CONTENT
======================================== */
.page-header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  color: var(--primary-black);
  font-weight: 700;
  letter-spacing: 1px;
}

.page-content {
  padding: 80px 0;
}

.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  font-size: 32px;
  color: var(--primary-black);
  margin-bottom: 20px;
  font-weight: 600;
}

.content-section p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Ensure minimum 2 products per row */
@media (min-width: 641px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Fade-in animation for dynamically loaded products */
@keyframes productFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.products-grid .product-card {
  animation: productFadeIn 0.3s ease forwards;
}

/* ========================================
   SEARCH AND FILTER BAR
======================================== */
.search-filter-bar {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  align-items: center;
}

.search-box {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-box i {
  position: absolute;
  left: 15px;
  color: var(--text-light);
  font-size: 16px;
}

.search-box input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background-color: var(--primary-white);
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-black);
}

.filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--primary-black);
  color: var(--primary-white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.filter-toggle-btn:hover {
  background: var(--secondary-black);
  transform: translateY(-2px);
}

.filter-toggle-btn.active {
  background: var(--accent-gold);
  color: var(--primary-black);
}

.filter-toggle-btn i {
  font-size: 16px;
}

/* ========================================
   FILTER SECTION
======================================== */
.filter-section {
  background: var(--primary-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 40px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.filter-header h3 {
  font-size: 20px;
  color: var(--primary-black);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-header h3 i {
  font-size: 18px;
}

.filter-reset {
  padding: 10px 20px;
  background: var(--cream);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-reset:hover {
  background: var(--primary-black);
  color: var(--primary-white);
}

.filter-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.filter-group h4 {
  font-size: 15px;
  color: var(--primary-black);
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group h4 i {
  font-size: 14px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-options-vertical {
  gap: 10px;
}

.filter-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--off-white);
}

.filter-option:hover {
  background: var(--cream);
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: var(--primary-black);
}

.filter-option span {
  font-size: 14px;
  color: var(--text-dark);
  user-select: none;
  flex: 1;
}

.filter-option:hover span {
  color: var(--primary-black);
  font-weight: 500;
}

.filter-option input[type="checkbox"]:checked ~ span {
  font-weight: 600;
  color: var(--primary-black);
}

.color-swatch {
  font-size: 14px;
}

/* Products Results */
.products-results {
  margin-top: 40px;
}

.results-header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.results-header p {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: var(--off-white);
  border-radius: 8px;
}

.no-results p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
  .bestsellers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bestseller-card {
    flex-direction: column;
    min-height: auto;
  }

  .bestseller-image {
    width: 100%;
    height: 250px;
  }

  /* Why Wool Responsive */
  .wool-header {
    flex-direction: column;
    padding: 30px 20px;
  }

  .wool-header h2 {
    font-size: 28px;
  }

  .wool-content {
    padding: 30px 20px;
  }

  .wool-benefits li {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--primary-white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px var(--shadow);
    padding: 40px 0;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-image img {
    height: 350px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .contact-info h2 {
    font-size: 32px;
  }

  .search-filter-bar {
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .filter-toggle-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 15px;
  }

  .nav-wrapper {
    padding: 15px 0;
  }

  .logo a {
    font-size: 24px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-image img {
    height: 250px;
  }

  .products-section {
    padding: 50px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 15px;
  }

  .products-slider {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-details li {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .contact-details li strong {
    margin-bottom: 3px;
  }

  .contact-form {
    padding: 25px;
  }

  .footer {
    padding: 40px 0 20px;
    margin-top: 50px;
  }

  .footer-content {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .footer-contact li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
  }

  .footer-contact li i {
    margin-right: 0;
    margin-bottom: 3px;
  }

  .page-header {
    padding: 50px 0;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .page-content {
    padding: 50px 0;
  }

  .content-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 380px) {
  .logo a {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .btn-primary {
    padding: 12px 30px;
    font-size: 13px;
  }
}

/* ========================================
   PRODUCT DETAIL PAGE
======================================== */
.product-detail-section {
  padding: 60px 0;
}

.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: 100px;
}

.main-image-container {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  background: var(--off-white);
}

.zoom-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.main-image {
  width: 600px;
  max-width: 100%;
  height: 500px;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
  background: #fff;
}

.zoom-container:hover .main-image {
  transform: scale(1.3);
}

/* Thumbnail Gallery with Scroll */
.thumbnail-gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 600px; /* main-image ile aynı genişlik */
}

.thumbnail-scroll-btn {
  display: none;
}

.thumbnail-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 5px 0;
  cursor: grab;
  user-select: none;
}

.thumbnail-gallery:active {
  cursor: grabbing;
}

.thumbnail-gallery::-webkit-scrollbar {
  display: none;
}

.thumbnail-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  background: var(--off-white);
  flex-shrink: 0;
  width: 100px;
}

.thumbnail-item:hover {
  border-color: var(--primary-black);
}

.thumbnail-item.active {
  border-color: var(--primary-black);
  box-shadow: 0 2px 10px var(--shadow);
}

.thumbnail-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.thumbnail-color-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: var(--primary-white);
  padding: 5px;
  font-size: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thumbnail-item:hover .thumbnail-color-label {
  opacity: 1;
}

/* Product Info */
.product-detail-info {
  padding: 20px 0;
}

.product-title {
  font-size: 32px;
  color: var(--primary-black);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.product-meta {
  margin-bottom: 20px;
}

.product-category {
  display: inline-block;
  padding: 8px 16px;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 13px;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-colors-section {
  margin-bottom: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.product-colors-section h3 {
  font-size: 18px;
  color: var(--primary-black);
  margin-bottom: 15px;
  font-weight: 600;
}

.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-badge-large {
  padding: 10px 20px;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 14px;
  border-radius: 6px;
  font-weight: 500;
  border: 2px solid var(--cream-dark);
  transition: var(--transition);
  cursor: pointer;
}

.color-badge-large:hover {
  background: var(--primary-black);
  color: var(--primary-white);
  border-color: var(--primary-black);
}

.product-description {
  margin-bottom: 30px;
}

.product-description h3,
.product-features h3 {
  font-size: 20px;
  color: var(--primary-black);
  margin-bottom: 15px;
  font-weight: 600;
}

.product-description p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.product-features {
  margin-bottom: 40px;
}

.product-features ul {
  list-style: none;
  padding: 0;
}

.product-features li {
  padding: 12px 0;
  color: var(--text-dark);
  font-size: 15px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 25px;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-black);
  font-weight: bold;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-contact {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  color: var(--primary-black);
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: var(--transition);
  border: 2px solid var(--primary-black);
}

.btn-secondary:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

/* ========================================
   LIGHTBOX MODAL
======================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--primary-white);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--primary-white);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-white);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-white);
  font-size: 16px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px;
  border-radius: 20px;
}

/* Responsive for Product Detail */
@media (max-width: 968px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-gallery {
    position: relative;
    top: 0;
  }

  .main-image {
    height: 400px;
    width: 100%;
  }

  .zoom-container {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .product-title {
    font-size: 24px;
  }

  .main-image {
    height: 300px;
    width: 100%;
  }

  .product-gallery {
    overflow-x: hidden;
  }

  .thumbnail-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .thumbnail-item img {
    height: 70px;
  }

  .product-actions {
    flex-direction: column;
  }

  .btn-contact,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Stats Section Responsive */
  .stats-section {
    background-attachment: scroll;
    min-height: auto;
  }

  .stats-overlay {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stats-content h2 {
    font-size: 28px;
  }

  /* Why Us Section Responsive */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Slider Header Responsive */
  .slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .slider-header h2 {
    font-size: 28px;
  }

  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    min-height: 700px;
  }
}

@media (max-width: 768px) and (min-width: 641px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 968px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-section {
    min-height: 500px;
  }
}
