/* ========================================
   CATALOG PAGE - PREMIUM LUXURY CSS
   Glassmorphism + Advanced Animations
   WhatsApp Inquiry Only
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
  --glass-bg: rgba(248, 244, 236, 0.85);
  --glass-bg-dark: rgba(44, 44, 44, 0.7);
  --glass-border: rgba(200, 168, 107, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --glass-shadow-gold: 0 15px 35px rgba(200, 168, 107, 0.15);
  --glass-blur: blur(12px);
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
  background: linear-gradient(135deg, rgba(107, 138, 116, 0.08), rgba(200, 169, 107, 0.12));
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/1866149/pexels-photo-1866149.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: heroGlowEntrance 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

@keyframes heroGlowEntrance {
  0% {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(15px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(20px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--charcoal), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.page-hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: titleLineExpand 1s ease-out 0.5s forwards;
}

@keyframes titleLineExpand {
  to {
    width: 50%;
    left: 25%;
  }
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  margin: 20px 0;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--charcoal);
  transition: var(--transition);
  position: relative;
}

.breadcrumb a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
  width: 100%;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--gold);
}

.hero-description {
  max-width: 600px;
  margin: 25px auto 0;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  animation: fadeSlideUp 0.8s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--charcoal);
  opacity: 0.6;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--charcoal);
  border-radius: 20px;
  margin: 10px auto 0;
  position: relative;
}

.mouse-wheel {
  width: 2px;
  height: 8px;
  background: var(--gold);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  80% { opacity: 0; transform: translateX(-50%) translateY(15px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   SECTION HEADER STYLES
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: headerReveal 0.8s ease 0.2s forwards;
}

@keyframes headerReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.section-tag::before {
  content: '✦';
  margin-right: 10px;
  opacity: 0.8;
}

.section-tag::after {
  content: '✦';
  margin-left: 10px;
  opacity: 0.8;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--charcoal), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

/* ========================================
   FILTER SECTION (GLASS)
   ======================================== */

.filter-section {
  padding: 30px 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  position: sticky;
  top: 80px;
  z-index: 99;
  border-bottom: 1px solid var(--glass-border);
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 10px 26px;
  background: transparent;
  border: 1.5px solid var(--glass-border);
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.filter-chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: left 0.4s ease;
  z-index: -1;
}

.filter-chip:hover::before {
  left: 0;
}

.filter-chip:hover {
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(200, 168, 107, 0.3);
}

.filter-chip.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 5px 15px rgba(200, 168, 107, 0.3);
}

.filter-search {
  display: flex;
  gap: 20px;
  align-items: center;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 10px 20px;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.1);
  transform: scale(1.02);
}

.search-box i {
  color: var(--gold);
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  min-width: 200px;
}

.filter-count {
  font-size: 0.9rem;
  color: var(--charcoal);
  background: rgba(200, 168, 107, 0.15);
  backdrop-filter: blur(4px);
  padding: 8px 18px;
  border-radius: 40px;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.filter-count span {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ========================================
   PRODUCTS GRID
   ======================================== */

.products-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--ivory), #FDF9F2);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 35px;
}

.loading-spinner {
  text-align: center;
  padding: 60px;
  color: var(--gold);
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

.loading-spinner i {
  animation: spin 1s linear infinite;
  margin-right: 10px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  color: var(--charcoal);
  grid-column: 1 / -1;
}

.empty-state i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 15px;
  opacity: 0.5;
}

.empty-state h3 {
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.empty-state p {
  color: rgba(44, 44, 44, 0.6);
}

/* ========================================
   PREMIUM PRODUCT CARD (GLASS)
   ======================================== */

.product-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: var(--glass-shadow);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: productFloatIn 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

@keyframes productFloatIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Product Badges */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
  animation: badgePop 0.5s ease;
}

@keyframes badgePop {
  0% { transform: scale(0); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.product-badge.best-seller {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  box-shadow: 0 2px 10px rgba(200, 168, 107, 0.3);
}

.product-badge.popular {
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  color: white;
}

.product-badge.limited, .product-badge.premium {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.product-badge.eco {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
}

.product-badge.blackout {
  background: linear-gradient(135deg, #34495e, #2c3e50);
  color: white;
}

.product-badge.natural {
  background: linear-gradient(135deg, #d4a373, #b5835a);
  color: white;
}

.product-badge.luxury {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  color: white;
}

.product-badge.trending {
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: white;
}

/* Image Count Badge */
.image-count-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(200, 168, 107, 0.3);
}

.image-count-badge:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: scale(1.05);
  border-color: transparent;
}

.image-count-badge i {
  font-size: 11px;
}

/* Product Actions (Hover) */
.product-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 15px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.quick-view-btn {
  padding: 12px 22px;
  border: none;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  color: var(--charcoal);
  backdrop-filter: blur(4px);
}

.quick-view-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: scale(1.05);
}

.inquiry-btn {
  padding: 12px 22px;
  border: none;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
}

.inquiry-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(200, 168, 107, 0.3);
}

/* Product Info */
.product-info {
  padding: 25px;
}

.product-category {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.product-rating i {
  color: #f39c12;
  font-size: 0.85rem;
}

.product-rating span {
  font-size: 0.8rem;
  color: #666;
}

.product-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.product-features {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-features span {
  font-size: 0.7rem;
  color: #666;
  padding: 4px 10px;
  background: rgba(200, 168, 107, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.product-features span:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}

.product-features i {
  color: var(--gold);
  margin-right: 4px;
  font-size: 0.65rem;
}

.btn-inquiry {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 12px;
  color: var(--charcoal);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
}

.btn-inquiry:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 168, 107, 0.4);
  gap: 15px;
}

/* ========================================
   LOAD MORE BUTTON
   ======================================== */

.load-more {
  text-align: center;
  margin-top: 60px;
}

.load-more-btn {
  padding: 14px 45px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--charcoal);
}

.load-more-btn i {
  transition: transform 0.3s ease;
}

.load-more-btn:hover i {
  transform: translateY(5px);
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow-gold);
  border-color: var(--gold);
}

/* ========================================
   WHATSAPP CONTACT SECTION (GLASS)
   ======================================== */

.whatsapp-contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #075E54, #128C7E);
  position: relative;
  overflow: hidden;
}

.whatsapp-contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
  animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.contact-card {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 32px;
  padding: 50px;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-icon i {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 35px;
  background: white;
  color: #075E54;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  gap: 18px;
}

/* ========================================
   FEATURES SECTION (GLASS)
   ======================================== */

.features-catalog {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.feature {
  padding: 30px 25px;
  transition: all 0.4s ease;
  border-radius: 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.feature:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--glass-shadow-gold);
}

.feature i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature:hover i {
  transform: scale(1.1) rotate(5deg);
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature p {
  font-size: 0.85rem;
  color: #666;
}

/* ========================================
   QUICK VIEW MODAL (GLASS)
   ======================================== */

.quick-view-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.quick-view-modal.active {
  opacity: 1;
  visibility: visible;
}

.quick-view-content {
  max-width: 1000px;
  width: 90%;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border-radius: 28px;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  animation: modalSlideIn 0.4s ease;
  border: 1px solid rgba(200, 168, 107, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(200, 168, 107, 0.3);
  color: white;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: rotate(90deg);
  border-color: transparent;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

/* Quick View Image */
.quick-view-image {
  position: relative;
  background: #0a0a0a;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border: 1px solid rgba(200, 168, 107, 0.2);
}

.quick-view-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.quick-view-image img:hover {
  transform: scale(1.02);
}

.view-gallery-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  z-index: 5;
  white-space: nowrap;
}

.view-gallery-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateX(-50%) translateY(-2px);
  gap: 12px;
}

/* Quick View Info */
.quick-view-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quick-view-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 5px;
  line-height: 1.3;
}

.product-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 14px;
  margin: 10px 0;
}

.feature-tag {
  background: rgba(200, 168, 107, 0.1);
  border: 1px solid rgba(200, 168, 107, 0.2);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(200, 168, 107, 0.2);
  transform: translateY(-2px);
}

.quick-view-actions {
  margin-top: 20px;
}

.quick-view-actions .btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.quick-view-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(200, 168, 107, 0.3);
  gap: 15px;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366, #20b859);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  text-decoration: none;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: floatPulse 2s infinite;
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); }
  50% { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--charcoal);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-5px);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--charcoal);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  border: 1px solid var(--gold);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-5px);
  color: var(--charcoal);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
  }
  
  .filter-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .filter-buttons {
    justify-content: center;
  }
  
  .filter-search {
    flex-direction: column;
    width: 100%;
  }
  
  .search-box {
    width: 100%;
  }
  
  .search-box input {
    width: 100%;
  }
  
  .page-hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-chip {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .contact-card h3 {
    font-size: 1.3rem;
  }
  
  .product-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .quick-view-btn, .inquiry-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  
  .quick-view-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .quick-view-image {
    min-height: 300px;
  }
  
  .quick-view-image img {
    max-height: 300px;
  }
  
  .quick-view-info h3 {
    font-size: 1.4rem;
  }
  
  .feature-tag {
    padding: 4px 10px;
    font-size: 10px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .filter-chip {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  
  .product-info h3 {
    font-size: 1.1rem;
  }
  
  .product-category {
    font-size: 0.65rem;
  }
  
  .quick-view-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .quick-view-grid {
    padding: 15px;
  }
  
  .quick-view-image {
    min-height: 250px;
  }
  
  .quick-view-image img {
    max-height: 250px;
  }
  
  .quick-view-info h3 {
    font-size: 1.2rem;
  }
  
  .quick-view-actions .btn-primary {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .view-gallery-btn {
    padding: 6px 12px;
    font-size: 10px;
    bottom: 10px;
  }
}

/* ========================================
   GOLDEN SPARKLE EFFECT
   ======================================== */

.product-card, .feature, .filter-chip {
  position: relative;
  overflow: hidden;
}

.product-card::after, .feature::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 168, 107, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.product-card:hover::after, .feature:hover::after {
  opacity: 1;
  animation: rotateSparkle 3s linear infinite;
}

@keyframes rotateSparkle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}