/* ===================================
   GLOBAL STYLES
   =================================== */

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

body {
  background: #F8F6F0;
  color: #3f3e2c;
  font-family: Tajawal, Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================================
   ANNOUNCEMENTS
   =================================== */

#announcements-container {
  height: 45px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.instagram-announcement {
  left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.instagram-announcement .instagram-link svg {
  fill: #E4405F;
}

.instagram-announcement .instagram-link:hover svg {
  fill: #e4405f;
}

.announcement-slide {
  font-size: 14px;
  left: 0;
  line-height: 1.5;
  opacity: 0;
  padding: 12px 20px;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  transition: opacity 1s ease-in-out, background-color 1s ease-in-out;
}

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

/* ===================================
   NAVIGATION
   =================================== */

nav {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 20px;
}

.logo,
.nav-container {
  align-items: center;
  display: flex;
}

.logo {
  color: #556b2f;
  font-family: Noto Nastaliq Urdu, serif;
  font-size: 32px;
  font-weight: 500;
  gap: 10px;
}

.logo-icon {
  font-family: Tajawal, sans-serif;
  font-size: 28px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #3f3e2c;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #556b2f;
}

.cta-button {
  background: #8b7355;
  border-radius: 25px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 12px 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #6d5942;
  box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
  transform: translateY(-2px);
}

.instagram-icon {
  align-items: center;
  display: flex;
  gap: 15px;
}

/* ===================================
   CART ICON & BADGE
   =================================== */

.cart-icon-wrapper {
  align-items: center;
  cursor: pointer;
  display: flex;
  position: relative;
}

.cart-icon {
  display: block;
  fill: #556b2f;
  height: 28px;
  transition: fill 0.3s;
  width: 28px;
}

.cart-icon-wrapper:hover .cart-icon {
  fill: #3a6b4e;
}

.cart-badge {
  align-items: center;
  background: #dc3545;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  height: 20px;
  justify-content: center;
  left: -8px;
  position: absolute;
  top: -8px;
  width: 20px;
  z-index: 1;
}

.cart-badge.hidden {
  display: none;
}

/* ===================================
   BUTTONS
   =================================== */

.home-add-cart-btn {
  background: #8b7355;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  padding: 10px;
  transition: all 0.3s;
  width: 100%;
}

.home-add-cart-btn:hover {
  background: #6d5942;
  transform: translateY(-2px);
}

/* ===================================
   SIZE MODAL
   =================================== */

.size-modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s;
  z-index: 2000;
}

.size-modal-overlay.visible {
  display: flex;
  opacity: 1;
}

.size-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  max-width: 500px;
  overflow-y: auto;
  padding: 24px;
  transform: scale(0.9);
  transition: transform 0.3s;
  width: 90%;
}

.size-modal-overlay.visible .size-modal {
  transform: scale(1);
}

.size-modal-header {
  align-items: center;
  border-bottom: 2px solid #8b7355;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.size-modal-title {
  color: #556b2f;
  font-size: 20px;
  font-weight: 700;
}

.size-modal-close {
  align-items: center;
  background: none;
  border: none;
  border-radius: 50%;
  color: #999;
  cursor: pointer;
  display: flex;
  font-size: 28px;
  height: 32px;
  justify-content: center;
  transition: all 0.3s;
  width: 32px;
}

.size-modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.size-option {
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 16px;
  transition: all 0.3s;
}

.size-option:hover {
  background: #f8f6f0;
  border-color: #8b7355;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.size-option-info {
  flex: 1;
}

.size-option-name {
  color: #556b2f;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.size-option-dimensions {
  color: #666;
  font-size: 13px;
  margin-bottom: 6px;
}

.size-option-price {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-option-price-original {
  color: #999;
  font-size: 14px;
  text-decoration: line-through;
}

.size-option-price-final {
  color: #8b7355;
  font-size: 20px;
  font-weight: 700;
}

.size-option-discount-tag {
  background: #dc3545;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
}

/* ===================================
   CART SIDEBAR
   =================================== */

.cart-sidebar {
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  right: -400px;
  top: 0;
  transition: right 0.3s ease;
  width: 400px;
  z-index: 1000;
}

.cart-sidebar.open {
  right: 0;
}

.cart-overlay {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  z-index: 999;
}

.cart-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  position: relative;
}

.cart-title {
  color: #3f3e2c;
  font-size: 20px;
  font-weight: 600;
}

.cart-close {
  align-items: center;
  background: #f5f5f5;
  border-radius: 50%;
  color: #333;
  cursor: pointer;
  display: flex;
  font-size: 32px;
  font-weight: 300;
  height: 40px;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s;
  width: 40px;
}

.cart-close:hover {
  background: #e0e0e0;
  color: #000;
}

@media (max-width: 768px) {
  .cart-sidebar {
    right: -80%;
    width: 80%;
  }

  .cart-sidebar.open {
    right: 0;
  }

  .cart-close {
    font-size: 36px;
    height: 44px;
    width: 44px;
  }

  .cart-header {
    padding: 16px 20px;
  }
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  gap: 15px;
  padding: 15px 0;
}

.cart-item-image {
  border-radius: 8px;
  height: 80px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  width: 80px;
}

.cart-item-image.loaded {
  opacity: 1;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  color: #3f3e2c;
  font-size: 14px;
  font-weight: 600;
}

.cart-item-size {
  color: #666;
  font-size: 12px;
}

.cart-item-price {
  color: #556b2f;
  font-size: 14px;
  font-weight: 600;
}

.cart-item-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.qty-btn {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  height: 24px;
  width: 24px;
}

.qty-btn:active {
  background: #f5f5f5;
}

.qty-value {
  font-size: 14px;
  font-weight: 600;
}

.remove-btn {
  color: #dc3545;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  margin-right: auto;
  text-decoration: underline;
}

.cart-empty {
  color: #666;
  padding: 60px 20px;
  text-align: center;
}

.cart-footer {
  background: #f8f6f0;
  border-top: 1px solid #e0e0e0;
  padding: 20px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.checkout-btn {
  background: #8b7355;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 15px;
  width: 100%;
}

.checkout-btn:hover {
  background: #6d5942;
}

/* ===================================
   INSTAGRAM LINK
   =================================== */

.instagram-link {
  align-items: center;
  display: flex;
  height: 22px;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  width: 22px;
}

.instagram-link svg {
  fill: #E4405F;
  height: 100%;
  width: 100%;
}

.instagram-announcement.has-announcements .instagram-link svg {
  fill: #fff;
}

.instagram-link:hover {
  transform: scale(1.1);
}

.instagram-link:hover svg {
  fill: #e4405f;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  position: relative;
  height: 65vh;
  min-height: 450px;
  max-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 700px;
}

.hero-title {
  font-size: 2.5em;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.15em;
  color: white;
  margin-bottom: 35px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-block;
  background: #8B7355;
  color: white;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
}

.hero-cta-primary:hover {
  background: #6B5735;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 115, 85, 0.4);
}

.hero-cta-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ===================================
   GROUPS SECTION
   =================================== */

.groups-section {
  background: #F8F6F0;
  padding: 40px 20px 80px 20px;
}

.groups-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 30px auto;
  max-width: 1400px;
}

.groups-header h2 {
  color: #556B2F;
  font-size: 1.5em;
  font-weight: 600;
  margin: 0;
}

.see-more-link {
  color: #8A7255;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.see-more-link:hover {
  color: #556B2F;
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: 1400px;
}

@media (max-width: 768px) {
  .groups-grid {
    grid-template-columns: 1fr;
  }
}

.group-card-compact {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.group-card-compact:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.group-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  background: #f0f0f0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.group-product-count {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #8B7355;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
}

.group-card-compact-content {
  padding: 24px;
}

.group-card-compact-title {
  text-align: right;
  color: #333;
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.group-card-compact-excerpt {
  text-align: right;
  color: #666;
  font-size: 0.9em;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .groups-section {
    padding: 30px 20px 60px 20px;
  }

  .groups-header h2 {
    font-size: 1.3em;
  }

  .see-more-link {
    font-size: 0.9em;
  }

  .group-card-compact-title {
    font-size: 1.2em;
    padding: 20px;
  }

  .products-section {
    padding: 0px 20px 60px 20px;
  }

  .products-header h2 {
    font-size: 1.3em;
  }

  .articles-section {
    padding: 0px 20px 60px 20px;
  }

  .articles-header h2 {
    font-size: 1.3em;
  }

  .article-card-compact-title {
    font-size: 1.2em;
  }
}

/* ===================================
   ARTICLES SECTION
   =================================== */

.articles-section {
  background: #F8F6F0;
  padding: 0px 20px 80px 20px;
}

.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 30px auto;
  max-width: 1400px;
}

.articles-header h2 {
  color: #556B2F;
  font-size: 1.5em;
  font-weight: 600;
  margin: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: 1400px;
}

.article-card-compact {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  max-width: 600px;
  text-decoration: none;
  color: inherit;
}

.article-card-compact:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.article-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  background: #f0f0f0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.article-card-compact-content {
  padding: 24px;
}

.article-card-compact-title {
  text-align: right;
  color: #333;
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.article-card-compact-excerpt {
  text-align: right;
  color: #666;
  font-size: 0.9em;
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */

.products-section {
  background: #F8F6F0;
  padding: 0px 20px 80px 20px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 30px auto;
  max-width: 1400px;
}

.products-header h2 {
  color: #556B2F;
  font-size: 1.5em;
  font-weight: 600;
  margin: 0;
}

.products-container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 0 auto;
  max-width: 1400px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.product-image {
  background: #f8f6f0;
  height: 250px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.image-add-cart-btn {
  align-items: center;
  background: #8b7355;
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  font-weight: 300;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 10px;
  transition: all 0.3s ease;
  width: 36px;
  z-index: 10;
}

.image-add-cart-btn:hover {
  background: #6d5942;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.image-add-cart-btn:active {
  transform: scale(0.95);
}

.image-carousel {
  display: flex;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
  width: 100%;
}

.carousel-image {
  background: #f8f6f0;
  display: block;
  flex-shrink: 0;
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}

.carousel-arrow {
  display: none;
}

.page-dots {
  bottom: 10px;
  display: none;
  gap: 6px;
  left: 10px;
  position: absolute;
  z-index: 2;
}

.page-dot {
  background: hsla(0, 0%, 100%, 0.5);
  border-radius: 50%;
  height: 6px;
  transition: all 0.3s;
  width: 6px;
}

.page-dot.active {
  background: #fff;
  border-radius: 3px;
  width: 20px;
}

.discount-badge {
  background: #C9493B;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  left: -28px;
  padding: 6px 0;
  position: absolute;
  text-align: center;
  top: 10px;
  transform: rotate(-45deg);
  transform-origin: center;
  width: 100px;
  z-index: 3;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-name {
  color: #1a2721;
  font-size: 21.6px;
  margin-bottom: 8px;
  min-height: auto;
}

.price-badge,
.product-name {
  font-weight: 600;
  line-height: 1.2;
}

.price-badge {
  display: inline-block;
  font-size: 16.8px;
  margin-top: 8px;
  padding: 6px 12px;
}

.catalog-add-cart-btn {
  display: none;
}

.size-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  margin-top: 0;
}

.size-badge {
  background: #F8F6F0;
  border-radius: 12px;
  color: #8A7255;
  font-size: 16.8px;
  font-weight: 500;
  line-height: 1.2;
  padding: 6px 14px;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
  background: linear-gradient(135deg, #f8f6f0, #e8f5e9);
  padding: 100px 20px;
}

.about-container {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1200px;
}

.about-text h2 {
  color: #556b2f;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.features {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.feature {
  flex-direction: row-reverse;
  gap: 15px;
}

.feature,
.feature .icon {
  align-items: center;
  display: flex;
}

.feature .icon {
  background: #fff;
  border-radius: 15px;
  flex-shrink: 0;
  font-size: 32px;
  height: 60px;
  justify-content: center;
  width: 60px;
}

.feature-text h4 {
  color: #556b2f;
  font-size: 20px;
  margin-bottom: 5px;
}

.feature-text p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

.about-visual {
  font-size: 250px;
  opacity: 0.8;
  text-align: center;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
  background: #fff;
  padding: 100px 20px;
}

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

.contact-container h2 {
  color: #556b2f;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-container p {
  color: #666;
  font-size: 18px;
  margin-bottom: 40px;
}

.contact-info {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 50px;
}

.contact-card {
  background: #f8f6f0;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s;
}

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

.contact-card .icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.contact-card h4 {
  color: #556b2f;
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-card p {
  color: #666;
  margin: 0;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ===================================
   FOOTER - Using global-footer.css
   =================================== */

.social-links {
  gap: 20px;
  margin-top: 20px;
}

.social-links,
.social-links a {
  display: flex;
  justify-content: center;
}

.social-links a {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 50%;
  font-size: 24px;
  height: 50px;
  text-decoration: none;
  transition: all 0.3s;
  width: 50px;
}

.social-links a:hover {
  background: #3a6b4e;
  transform: translateY(-3px);
}

/* ===================================
   MEDIA QUERIES - MOBILE
   =================================== */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 1.8em;
  }

  .hero-subtitle {
    font-size: 1em;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    font-size: 1em;
    padding: 15px 40px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-visual {
    font-size: 150px;
  }

  .about-text h2,
  .contact-container h2,
  .section-header h2 {
    font-size: 36px;
  }

  .products-container {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   QR CODE REDIRECT
   =================================== */

.qr-redirect {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.98);
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.qr-redirect.active {
  display: flex;
}

.qr-content {
  padding: 40px;
  text-align: center;
}

.spinner {
  animation: spin 1s linear infinite;
  border: 4px solid rgba(58, 107, 78, 0.2);
  border-radius: 50%;
  border-top-color: #3a6b4e;
  height: 60px;
  margin: 0 auto 20px;
  width: 60px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

/* ===================================
   LOADING STATES
   =================================== */

.loading-products {
  color: #666;
  padding: 40px;
  text-align: center;
}