@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Amiri:wght@400;700&family=Google+Sans+Flex:wght@400;500;700&display=swap');
:root {
  --primary: #4caf7c;
  --primary-dark: #3a9466;
  --primary-light: #6cc99a;
  --accent: #d4af37;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #f0f0f0;
  --gray: #6c757d;
  --dark-gray: #495057;
  --dark: #1a1a2e;
  --black: #000000;
  --danger: #dc3545;
  --success: #28a745;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  animation: pageLoad 0.5s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button, .add-to-cart-btn, .cta-btn, .newsletter-form button {
  transition: all 0.2s ease;
}

button:active, .add-to-cart-btn:active, .cta-btn:active {
  transform: scale(0.96);
}

button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

img {
  max-width: 100%;
}

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

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.announcement-bar span {
  color: var(--accent);
  font-weight: 700;
}

/* HEADER / NAVBAR */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 10px 20px;
  width: 100%;
  border-top: 1px solid var(--light-gray);
}
.logo-center-row {
  display: flex;
  justify-content: center;
  padding: 14px 20px 6px;
}

.logo {

}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions button,
.nav-actions a {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--dark);
  position: relative;
  transition: var(--transition);
}

.nav-actions button:hover,
.nav-actions a:hover {
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--dark);
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  padding: 20px;
}

.hero-content h1 {
  font-family: 'Amiri', serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: var(--transition);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots span.active {
  background: var(--white);
  transform: scale(1.2);
}

/* FEATURES BAR */
.features-bar {
  background: var(--off-white);
  padding: 25px 0;
  border-bottom: 1px solid var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.feature-item .icon {
  font-size: 28px;
}

.feature-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-item p {
  font-size: 12px;
  color: var(--gray);
}

/* SECTION STYLES */
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: 'Amiri', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--gray);
  font-size: 15px;
}

.section-title .line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* ===== HOVER EFFECTS - DESKTOP ONLY ===== */
@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }

  .product-card:hover .hover-img {
    opacity: 1;
  }

  .product-card:hover .product-image img:first-child {
    transform: scale(1.08);
  }

  .product-card:hover .product-quick-actions {
    bottom: 0;
    background: rgba(0,0,0,0.5);
    pointer-events: auto;
  }

  .feature-item:hover {
    transform: translateY(-5px);
  }
  .feature-item:hover .icon {
    transform: scale(1.2) rotate(5deg);
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .category-card:hover img {
    transform: scale(1.1);
  }

  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }

  .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
  }

  .category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
  }
}

/* ===== MOBILE - NO HOVER, DIRECT CLICK ===== */
@media (max-width: 768px) {
  .product-card {
    -webkit-tap-highlight-color: transparent;
  }
  .product-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  .product-image .hover-img {
    display: none !important;
  }
  .product-image .product-quick-actions {
    display: none !important;
    pointer-events: none !important;
  }
  .product-image {
    pointer-events: none;
  }
}

.product-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--danger);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.product-card .badge.sale {
  background: var(--danger);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: var(--light-gray);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-image .hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-quick-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  transition: var(--transition);
  pointer-events: none;
}

.product-card:hover .product-quick-actions {
  bottom: 0;
  background: rgba(0,0,0,0.5);
  pointer-events: auto;
}

.product-quick-actions button {
  padding: 8px 16px;
  background: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.product-quick-actions button:hover {
  background: var(--primary);
  color: var(--white);
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.stars {
  color: var(--accent);
  font-size: 13px;
}

.rating-count {
  font-size: 12px;
  color: var(--gray);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-price .current {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.product-price .original {
  font-size: 14px;
  color: var(--gray);
  text-decoration: line-through;
}

.product-price .discount {
  font-size: 12px;
  font-weight: 700;
  color: var(--danger);
  background: #fff3f3;
  padding: 2px 8px;
  border-radius: 4px;
}

/* CATEGORY CARDS */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.category-card {
  position: relative;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.category-card h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

/* REVIEWS SECTION */
.reviews-section {
  background: var(--off-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-card .stars {
  color: var(--accent);
  margin-bottom: 12px;
}

.review-card p {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.reviewer .name {
  font-weight: 600;
  font-size: 14px;
}

.reviewer .date {
  font-size: 12px;
  color: var(--gray);
}

/* NEWSLETTER */
.newsletter {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.newsletter h2 {
  font-family: 'Amiri', serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.newsletter p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 450px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
  padding: 14px 30px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: #c4a230;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 15px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.payment-methods {
  display: flex;
  gap: 10px;
  font-size: 20px;
}

/* ============ SHOP PAGE ============ */
.shop-header {
  background: var(--off-white);
  padding: 40px 0;
}

.shop-header h1 {
  font-family: 'Amiri', serif;
  font-size: 36px;
}

.shop-header p {
  color: var(--gray);
  margin-top: 5px;
}

.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 30px;
}

.shop-controls .count {
  font-size: 14px;
  color: var(--gray);
}

.sort-select {
  padding: 10px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  cursor: pointer;
}

/* ============ PRODUCT DETAIL PAGE ============ */
.product-detail {
  padding: 40px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.main-image {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-gray);
  margin-bottom: 15px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-list {
  display: flex;
  gap: 10px;
}

.thumbnail-list img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumbnail-list img:hover,
.thumbnail-list img.active {
  border-color: var(--primary);
}

.product-detail-info h1 {
  font-family: 'Amiri', serif;
  font-size: 30px;
  margin-bottom: 10px;
}

.product-detail-info .detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.product-detail-info .detail-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.detail-price .current {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.detail-price .original {
  font-size: 20px;
  color: var(--gray);
  text-decoration: line-through;
}

.detail-price .off-badge {
  background: #fff3f3;
  color: var(--danger);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.product-options {
  margin-bottom: 25px;
}

.product-options h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.option-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.option-btn {
  padding: 10px 24px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.option-btn:hover,
.option-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0faf3;
}

.option-btn.color-gold {
  border-color: var(--accent);
}

.option-btn.color-gold.active {
  background: #fdf8e8;
  border-color: var(--accent);
  color: #8a7019;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 25px;
}

.quantity-selector button {
  width: 44px;
  height: 44px;
  border: 2px solid var(--light-gray);
  background: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.quantity-selector button:first-child {
  border-radius: 8px 0 0 8px;
}

.quantity-selector button:last-child {
  border-radius: 0 8px 8px 0;
}

.quantity-selector input {
  width: 60px;
  height: 44px;
  border: 2px solid var(--light-gray);
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.add-to-cart-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 15px;
}

.add-to-cart-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.whatsapp-btn {
  width: 100%;
  padding: 16px;
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.whatsapp-btn:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}

.product-features {
  margin: 25px 0;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
}

.product-features li {
  list-style: none;
  padding: 6px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features li .check {
  color: var(--primary);
  font-size: 18px;
}

.product-tabs {
  margin-top: 40px;
  border-top: 1px solid var(--light-gray);
}

.tabs-header {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--light-gray);
}

.tab-btn {
  padding: 15px 30px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.tab-content {
  padding: 25px 0;
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--dark-gray);
}

/* ============ CART PAGE ============ */
.cart-page {
  padding: 40px 0;
  min-height: 50vh;
}

.cart-page h1 {
  font-family: 'Amiri', serif;
  font-size: 32px;
  margin-bottom: 30px;
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
}

.cart-empty h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.cart-empty p {
  color: var(--gray);
  margin-bottom: 25px;
}

.cart-items {
  margin-bottom: 30px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}

.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.cart-item-info .variant {
  font-size: 13px;
  color: var(--gray);
}

.cart-item-info .item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 5px;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 13px;
  cursor: pointer;
}

.cart-summary {
  background: var(--off-white);
  padding: 30px;
  border-radius: var(--radius);
  max-width: 400px;
  margin-left: auto;
}

.cart-summary h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.summary-row.total {
  border-top: 2px solid var(--light-gray);
  margin-top: 10px;
  padding-top: 15px;
  font-size: 18px;
  font-weight: 700;
}

.summary-row.total .price {
  color: var(--primary);
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  margin-top: 20px;
  transition: var(--transition);
}

.checkout-btn:hover {
  background: var(--primary-dark);
}

/* ============ CHECKOUT PAGE ============ */
.checkout-page {
  padding: 40px 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.checkout-form h2 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.order-summary-card {
  background: var(--off-white);
  padding: 30px;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}

.order-summary-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
}

.order-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.order-item-info h4 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 3px;
}

.order-item-info .qty {
  font-size: 12px;
  color: var(--gray);
}

.order-item-info .price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.place-order-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  margin-top: 20px;
  transition: var(--transition);
}

.place-order-btn:hover {
  background: var(--primary-dark);
}

/* ============ CONTACT PAGE ============ */
.contact-page {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form h2 {
  font-family: 'Amiri', serif;
  font-size: 30px;
  margin-bottom: 25px;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-item .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 15px;
  margin-bottom: 3px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--gray);
}

/* ============ SEARCH OVERLAY ============ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}

.search-overlay.active {
  display: flex;
}

.search-box {
  width: 600px;
  max-width: 90vw;
}

.search-box input {
  width: 100%;
  padding: 18px 25px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}

.search-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
}

/* ============ TOAST NOTIFICATION ============ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@keyframes toastSlideIn {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes toastSlideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}

/* ============ MOBILE NAV ============ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 10001;
  padding: 30px;
  transition: var(--transition);
  box-shadow: 5px 0 30px rgba(0,0,0,0.2);
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav .close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.mobile-nav ul {
  list-style: none;
  margin-top: 40px;
}

.mobile-nav ul li {
  margin-bottom: 20px;
}

.mobile-nav ul li a {
  font-size: 16px;
  font-weight: 500;
}

/* REVIEW FORM */
.review-form-section { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 30px; }
.review-form-section h3 { font-family: 'Amiri', serif; font-size: 22px; margin-bottom: 20px; }
.star-rating-input { display: flex; gap: 5px; margin-bottom: 15px; }
.star-rating-input span { font-size: 28px; cursor: pointer; color: var(--light-gray); transition: color 0.2s; }
.star-rating-input span.active, .star-rating-input span:hover { color: var(--accent); }
.review-form-section textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--light-gray); border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 14px; resize: vertical; }
.review-form-section textarea:focus { outline: none; border-color: var(--primary); }
.review-submit-btn { padding: 12px 30px; background: var(--primary); color: var(--white); border: none; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.review-submit-btn:hover { background: var(--primary-dark); }

/* ============ MOBILE-READY BASE ============ */
.announcement-bar {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.announcement-bar p,
.announcement-bar span {
  display: inline;
}

.cart-item {
  transition: var(--transition);
}

.product-gallery {
  transition: var(--transition);
}

.product-gallery .main-image {
  width: 100%;
}

.product-gallery .thumbnail-list {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 5px;
}

.product-gallery .thumbnail-list::-webkit-scrollbar {
  display: none;
}

.product-gallery .thumbnail-list img {
  flex-shrink: 0;
}

.footer-col ul li {
  padding: 2px 0;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Admin tables: horizontal scroll on small screens */
.admin-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.admin-table-wrap table {
  min-width: 700px;
  width: 100%;
}

/* TEXT LOGO */
.logo-text {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo-text img {
  height: 36px;
  width: auto;
  display: block;
}
.logo-text:hover {
  background: var(--primary-dark);
}

/* EXIT INTENT POPUP */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.active {
  display: flex;
}
.popup-box {
  background: white;
  border-radius: 16px;
  padding: 35px;
  max-width: 420px;
  width: 100%;
  position: relative;
  animation: popupSlide 0.4s ease;
}
@keyframes popupSlide {
  from { transform: scale(0.8) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--gray);
  padding: 5px;
}
.popup-close:hover {
  color: var(--dark);
}

/* COUNTDOWN TIMER */
.deal-countdown {
  margin-bottom: 30px;
}
.countdown-inner {
  background: linear-gradient(135deg, #fff5f5, #fff0f0);
  border: 2px solid #ffe0e0;
  border-radius: 12px;
  padding: 20px 30px;
  text-align: center;
}
.countdown-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--danger);
  margin-bottom: 10px;
  display: block;
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.countdown-box {
  background: var(--danger);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  min-width: 60px;
  text-align: center;
}
.countdown-box span {
  font-size: 28px;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.countdown-box small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}
.countdown-sep {
  font-size: 28px;
  font-weight: 800;
  color: var(--danger);
}
.countdown-bar {
  height: 6px;
  background: #ffe0e0;
  border-radius: 3px;
  overflow: hidden;
}
.countdown-bar-fill {
  height: 100%;
  background: var(--danger);
  border-radius: 3px;
  transition: width 1s linear;
}

/* STATS COUNTER */
.stats-counter-section {
  background: var(--primary);
  padding: 50px 0;
}
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-counter-item {
  color: white;
}
.stat-counter-icon {
  font-size: 36px;
  margin-bottom: 8px;
}
.stat-counter-number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}
.stat-counter-label {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* LIVE VISITOR BADGE */
.live-visitor-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  margin: 0 auto 30px;
  width: fit-content;
  font-size: 13px;
  color: var(--dark-gray);
  box-shadow: var(--shadow);
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* WHY CHOOSE US */
.why-choose-us {
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.why-card {
  background: white;
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.why-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============ RESPONSIVE ============ */
/* ---------- TABLET / SMALL DESKTOP ---------- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-controls {
    flex-wrap: wrap;
    gap: 12px;
  }

  .shop-controls .count {
    width: 100%;
    margin-bottom: 4px;
  }

  .product-detail-grid {
    gap: 35px;
  }

  .checkout-grid {
    gap: 30px;
  }
}

/* ---------- MOBILE LANDSCAPE / TABLET PORTRAIT ---------- */
@media (max-width: 768px) {
  /* --- NAV --- */
  .nav-links {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block !important;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
    flex-shrink: 0;
  }
  .nav-actions {
    gap: 8px;
  }
  .mobile-nav {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: -300px !important;
    width: 280px !important;
    height: 100vh !important;
    background: var(--white) !important;
    z-index: 10001 !important;
    padding: 30px !important;
    transition: left 0.3s ease !important;
    box-shadow: 5px 0 30px rgba(0,0,0,0.2) !important;
    overflow-y: auto !important;
  }
  .mobile-nav.active {
    left: 0 !important;
  }
  .mobile-nav ul {
    list-style: none;
    margin-top: 40px;
    padding: 0;
  }
  .mobile-nav ul li {
    margin-bottom: 0;
  }
  .mobile-nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark);
  }
  .mobile-nav ul li a:hover {
    color: var(--primary);
  }
  .mobile-nav .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    padding: 5px;
  }
  .mobile-nav-overlay {
    display: none !important;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
  }
  .mobile-nav-overlay.active {
    display: block !important;
  }

  /* --- ANNOUNCEMENT --- */
  .announcement-bar {
    font-size: 12px;
    padding: 8px 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* --- HERO --- */
  .hero {
    height: 320px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  /* --- FEATURES --- */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .feature-item .icon {
    font-size: 24px;
  }

  .feature-item h4 {
    font-size: 12px;
  }

  /* --- SECTIONS --- */
  .section {
    padding: 40px 0;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 13px;
  }

  /* --- PRODUCT GRID --- */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-quick-actions {
    display: none;
  }

  /* --- NEW FEATURES --- */
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .countdown-box span { font-size: 22px; }
  .countdown-sep { font-size: 22px; }
  .countdown-box { min-width: 50px; padding: 6px 12px; }

  /* --- CATEGORIES --- */
  .category-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-card {
    height: 220px;
  }

  /* --- REVIEWS --- */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .review-card {
    padding: 20px;
  }

  /* --- PRODUCT DETAIL --- */
  .product-detail {
    padding: 25px 0;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-gallery {
    position: static;
  }

  .main-image {
    height: 380px;
  }

  .thumbnail-list img {
    width: 65px;
    height: 65px;
  }

  .product-detail-info h1 {
    font-size: 24px;
  }

  .detail-price .current {
    font-size: 24px;
  }

  .detail-price .original {
    font-size: 16px;
  }

  .tabs-header {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tabs-header::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
  }

  /* --- CART --- */
  .cart-page {
    padding: 25px 0;
  }

  .cart-page h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .cart-item {
    grid-template-columns: 90px 1fr;
    gap: 15px;
  }

  .cart-item img {
    width: 90px;
    height: 90px;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--light-gray);
  }

  .cart-summary {
    max-width: 100%;
    margin-left: 0;
  }

  /* --- CHECKOUT --- */
  .checkout-page {
    padding: 25px 0;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .checkout-form h2 {
    font-size: 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    font-size: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .order-summary-card {
    position: static;
    padding: 20px;
  }

  /* --- CONTACT --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-form h2 {
    font-size: 24px;
  }

  /* --- FOOTER --- */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col ul li {
    margin-bottom: 8px;
  }

  .footer-col h4 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 15px;
  }

  /* --- SHOP CONTROLS --- */
  .shop-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 15px 0;
  }

  .shop-controls .count {
    width: auto;
  }

  .sort-select {
    width: 100%;
  }

  /* --- TOAST --- */
  .toast {
    left: 15px;
    right: 15px;
    bottom: 20px;
    text-align: center;
    font-size: 13px;
    padding: 14px 20px;
  }

  /* --- NEWSLETTER --- */
  .newsletter {
    padding: 40px 0;
  }

  .newsletter h2 {
    font-size: 24px;
  }

  .newsletter p {
    font-size: 14px;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  /* --- ADMIN TABLE --- */
  .admin-table-wrap {
    margin: 0 -20px;
    padding: 0 20px;
  }

  /* --- SEARCH --- */
  .search-overlay {
    padding-top: 80px;
  }

  .search-box {
    width: 90vw;
  }

  .search-box input {
    padding: 15px 20px;
    font-size: 16px;
  }
}

/* ---------- MOBILE PORTRAIT / SMALL PHONES ---------- */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* --- ANNOUNCEMENT --- */
  .announcement-bar {
    font-size: 11px;
    padding: 6px 10px;
  }

  /* --- NAV --- */
  .logo {
    font-size: 22px;
  }

  .nav-actions {
    gap: 14px;
  }

  /* --- NEW FEATURES --- */
  .stats-counter-section { padding: 30px 0; }
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .stat-counter-number { font-size: 26px; }
  .stat-counter-icon { font-size: 28px; }
  .stat-counter-label { font-size: 11px; }
  .why-grid { grid-template-columns: 1fr; gap: 15px; }
  .why-card { padding: 20px 15px; }
  .why-icon { font-size: 32px; }
  .why-card h3 { font-size: 15px; }
  .why-card p { font-size: 12px; }
  .countdown-inner { padding: 15px; }
  .countdown-box span { font-size: 18px; }
  .countdown-sep { font-size: 18px; }
  .countdown-label { font-size: 13px; }
  .live-visitor-badge { font-size: 11px; padding: 8px 14px; }

  .nav-actions button,
  .nav-actions a {
    font-size: 18px;
  }

  .cart-count {
    width: 17px;
    height: 17px;
    font-size: 10px;
    top: -6px;
    right: -6px;
  }

  .mobile-nav {
    width: 240px;
    padding: 20px;
    padding-top: 65px;
  }

  .mobile-nav ul li a {
    font-size: 14px;
    padding: 10px 0;
  }

  /* --- HERO --- */
  .hero {
    height: 260px;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .hero-btn {
    padding: 10px 25px;
    font-size: 13px;
  }

  .hero-dots span {
    width: 10px;
    height: 10px;
  }

  /* --- FEATURES --- */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .feature-item h4 {
    font-size: 11px;
  }

  .feature-item p {
    font-size: 10px;
  }

  /* --- SECTIONS --- */
  .section {
    padding: 30px 0;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .section-title p {
    font-size: 12px;
  }

  /* --- PRODUCT GRID --- */
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-image {
    height: 170px;
  }

  .product-info {
    padding: 10px;
  }

  .product-info h3 {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .product-rating {
    margin-bottom: 5px;
  }

  .stars {
    font-size: 11px;
  }

  .rating-count {
    font-size: 10px;
  }

  .product-price .current {
    font-size: 15px;
  }

  .product-price .original {
    font-size: 12px;
  }

  .product-price .discount {
    font-size: 10px;
    padding: 2px 5px;
  }

  .product-card .badge {
    font-size: 10px;
    padding: 3px 8px;
    top: 8px;
    left: 8px;
  }

  /* --- PRODUCT DETAIL --- */
  .main-image {
    height: 300px;
    border-radius: 8px;
  }

  .thumbnail-list {
    gap: 8px;
  }

  .thumbnail-list img {
    width: 55px;
    height: 55px;
  }

  .product-detail-info h1 {
    font-size: 20px;
  }

  .detail-price .current {
    font-size: 22px;
  }

  .detail-price .original {
    font-size: 15px;
  }

  .option-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .quantity-selector button {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .quantity-selector input {
    width: 50px;
    height: 38px;
    font-size: 14px;
  }

  .add-to-cart-btn,
  .whatsapp-btn {
    padding: 14px;
    font-size: 14px;
  }

  .product-features li {
    font-size: 13px;
    padding: 5px 0;
  }

  .product-tabs {
    margin-top: 25px;
  }

  .tab-btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  /* --- CART --- */
  .cart-page h1 {
    font-size: 22px;
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .cart-item img {
    width: 70px;
    height: 70px;
  }

  .cart-item-info h3 {
    font-size: 13px;
  }

  .cart-item-info .variant {
    font-size: 12px;
  }

  .cart-item-info .item-price {
    font-size: 14px;
  }

  .remove-btn {
    font-size: 12px;
  }

  .cart-summary {
    padding: 20px;
    border-radius: 10px;
  }

  .cart-summary h3 {
    font-size: 16px;
  }

  /* --- CHECKOUT --- */
  .checkout-page h1,
  .checkout-page h2 {
    font-size: 20px;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 14px;
    font-size: 16px;
  }

  .place-order-btn {
    padding: 14px;
    font-size: 15px;
  }

  /* --- CONTACT --- */
  .contact-info-item {
    gap: 12px;
  }

  .contact-info-item .icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .contact-info-item h4 {
    font-size: 14px;
  }

  .contact-info-item p {
    font-size: 13px;
  }

  /* --- FOOTER --- */
  .footer {
    padding: 30px 0 15px;
  }

  .footer-grid {
    gap: 25px;
  }

  .footer-brand .logo {
    font-size: 22px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-col h4 {
    font-size: 14px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  .payment-methods {
    font-size: 17px;
  }

  /* --- TOAST --- */
  .toast {
    left: 10px;
    right: 10px;
    bottom: 15px;
    font-size: 12px;
    padding: 12px 16px;
    border-radius: 8px;
  }

  /* --- NEWSLETTER --- */
  .newsletter h2 {
    font-size: 20px;
  }

  .newsletter-form input,
  .newsletter-form button {
    padding: 12px 16px;
    font-size: 13px;
  }

  /* --- SHOP --- */
  .shop-header h1 {
    font-size: 26px;
  }

  .shop-header p {
    font-size: 13px;
  }
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.fade-in, .fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible, .fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SHIMMER LOADING ===== */
.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== SMOOTH IMAGE LOAD ===== */
.product-card img, .hero img {
  transition: opacity 0.3s ease;
}

/* ===== RIPPLE EFFECT ON BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  gap: 6px;
  line-height: 1;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76,175,124,0.3);
}
.btn-danger {
  background: var(--danger);
  color: white;
}
.btn-danger:hover {
  background: #c82333;
  transform: translateY(-2px);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 8px;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-primary, .add-to-cart-btn, .cta-btn {
  position: relative;
  overflow: hidden;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: shimmerBar 2s linear infinite;
  z-index: 99999;
  transition: width 0.1s ease;
  border-radius: 0 2px 2px 0;
}
@keyframes shimmerBar {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== MARQUEE PROMO BANNER ===== */
.marquee-bar {
  background: #000000;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}
.marquee-content {
  display: inline-block;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-content span {
  margin: 0 50px;
}
.marquee-content .highlight {
  color: var(--accent);
  font-weight: 800;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== STICKY HEADER SHRINK ===== */
.header.shrink {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.header.shrink .logo-center-row {
  padding: 6px 20px 2px;
}
.header.shrink .logo-text img {
  height: 28px;
}
.header.shrink .nav-links a {
  font-size: 12px;
}

/* ===== PARALLAX HERO ===== */
.hero {
  background-attachment: fixed;
}
.hero-slide {
  background-size: cover !important;
  background-position: center !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.hero-content {
  z-index: 2;
  position: relative;
}

/* ===== FLYING CART ANIMATION ===== */
.fly-to-cart {
  position: fixed;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* ===== CATEGORY CARD HOVER ===== */
.category-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* ===== IMAGE LAZY LOAD ===== */
.lazy-img {
  filter: blur(10px);
  transition: filter 0.5s ease;
}
.lazy-img.loaded {
  filter: blur(0);
}

/* ===== SMOOTH SELECTION ===== */
::selection {
  background: var(--primary);
  color: white;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ===== BACK TO TOP WITH PROGRESS ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 124, 0.4);
  border: none;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 124, 0.5);
}

/* ===== FLOATING WHATSAPP PULSE ===== */
/* ===== RATING STARS GLOW ===== */
.stars {
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}

/* ===== FEATURE CARD HOVER LIFT ===== */
.feature-item {
  transition: all 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-item:hover .icon {
  transform: scale(1.2) rotate(5deg);
  display: inline-block;
  transition: transform 0.3s ease;
}

/* ===== PAGE PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  font-family: 'Amiri', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  animation: preloaderPulse 1.2s ease infinite;
}
.preloader-bar {
  width: 120px;
  height: 4px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  animation: preloaderSlide 1s ease infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}
@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ===== PRODUCT CARD IMAGE ZOOM ===== */
.product-card .product-image img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
}
.product-card:hover .product-image img:first-child {
  transform: scale(1.08);
}

/* ===== PRODUCT CARD QUICK VIEW BADGE ===== */
.product-quick-actions {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.product-card:hover .product-quick-actions {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FLOATING SOCIAL SIDEBAR ===== */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.social-sidebar a:hover {
  width: 140px;
  justify-content: flex-start;
  padding-left: 12px;
  gap: 8px;
}
.social-sidebar a::after {
  content: attr(data-label);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.social-sidebar a:hover::after {
  opacity: 1;
}
.social-sidebar .fb { background: #1877f2; border-radius: 0 8px 8px 0; }
.social-sidebar .ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-radius: 0; }
.social-sidebar .wa { background: #25d366; border-radius: 0 8px 8px 0; }
.social-sidebar .tt { background: #000000; border-radius: 0; }

/* ===== WHATSAPP TOOLTIP ===== */
.whatsapp-tooltip {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: white;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  font-size: 13px;
  font-weight: 500;
  z-index: 998;
  animation: tooltipBounce 0.5s ease 2s both;
  max-width: 200px;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 30px;
  width: 16px;
  height: 16px;
  background: white;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}
@keyframes tooltipBounce {
  0% { opacity: 0; transform: translateY(10px); }
  50% { opacity: 1; transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== PREMIUM FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 100%);
  color: #ccc;
  padding-top: 60px;
}
.footer h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}
.footer ul li a {
  color: #aaa;
  transition: all 0.3s ease;
  font-size: 14px;
}
.footer ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.footer-brand .logo-text {
  color: white;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.social-links a {
  transition: all 0.3s ease;
}
.social-links a:hover {
  transform: translateY(-3px);
}

/* ===== NEWSLETTER ENHANCED ===== */
.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.newsletter::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.newsletter .container {
  position: relative;
  z-index: 2;
}

/* ===== SECTION TITLE PREMIUM ===== */
.section-title h2 {
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

/* ===== FLOATING BADGES ===== */
.product-card .badge {
  animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes badgePop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* ===== REVIEW CARD HOVER ===== */
.review-card {
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* ===== CATEGORY CARD PREMIUM ===== */
.category-card {
  overflow: hidden;
  border-radius: var(--radius);
}
.category-card img {
  transition: transform 0.5s ease;
}
.category-card:hover img {
  transform: scale(1.1);
}

/* ===== CTA BUTTON GLOW ===== */
.hero-btn {
  animation: ctaGlow 2s ease infinite alternate;
}
@keyframes ctaGlow {
  0% { box-shadow: 0 0 20px rgba(255,255,255,0.2); }
  100% { box-shadow: 0 0 30px rgba(255,255,255,0.4); }
}

/* ===== LIVE DOT PULSE ===== */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  margin-right: 6px;
  animation: livePulse 1.5s ease infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(231, 76, 60, 0); }
}

/* ===== SEARCH OVERLAY PREMIUM ===== */
.search-overlay {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.search-overlay.active {
  backdrop-filter: blur(8px);
}
.search-box input {
  transition: all 0.3s ease;
}
.search-box input:focus {
  transform: scale(1.02);
}

/* ===== MOBILE NAV ENHANCED ===== */
.mobile-nav {
  transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-nav li {
  opacity: 0;
  transform: translateX(-20px);
  animation: mobileNavSlide 0.3s ease forwards;
}
.mobile-nav.active li:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav.active li:nth-child(2) { animation-delay: 0.10s; }
.mobile-nav.active li:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav.active li:nth-child(4) { animation-delay: 0.20s; }
.mobile-nav.active li:nth-child(5) { animation-delay: 0.25s; }
.mobile-nav.active li:nth-child(6) { animation-delay: 0.30s; }
.mobile-nav.active li:nth-child(7) { animation-delay: 0.35s; }
.mobile-nav.active li:nth-child(8) { animation-delay: 0.40s; }
.mobile-nav.active li:nth-child(9) { animation-delay: 0.45s; }
.mobile-nav.active li:nth-child(10) { animation-delay: 0.50s; }
@keyframes mobileNavSlide {
  to { opacity: 1; transform: translateX(0); }
}

/* ===== QUANTITY BUTTON PREMIUM ===== */
.quantity-selector button {
  transition: all 0.2s ease;
}
.quantity-selector button:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}
.quantity-selector button:active {
  transform: scale(0.9);
}

/* ===== CART TABLE ROW HOVER ===== */
.cart-row:hover {
  background: var(--off-white);
}

/* ===== SMOOTH PAGE TRANSITION ===== */
main, .section, .hero {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== EMPTY STATE ILLUSTRATION ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-state .empty-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: emptyBounce 2s ease infinite;
}
@keyframes emptyBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== PAYMENT METHOD CARDS ===== */
.payment-option {
  transition: all 0.3s ease;
  cursor: pointer;
}
.payment-option:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.payment-option.selected {
  border-color: var(--primary);
  background: rgba(76, 175, 124, 0.05);
}

/* ===== COUNTDOWN TIMER PREMIUM ===== */
.countdown-box {
  transition: transform 0.3s ease;
}
.countdown-box span {
  font-variant-numeric: tabular-nums;
}

/* ===== SECTION DIVIDER ===== */
.section + .section {
  border-top: none;
}

/* ===== NAV LINK ACTIVE INDICATOR ===== */
.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-links a.active::after {
  width: 100%;
}

/* ===== BACK TO TOP CIRCLE ===== */
.back-to-top-progress {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 48px;
  height: 48px;
  z-index: 997;
}
.back-to-top-progress svg {
  transform: rotate(-90deg);
}
.back-to-top-progress circle {
  transition: stroke-dashoffset 0.1s ease;
}

@media (max-width: 768px) {
  .social-sidebar { display: none; }
  .marquee-bar { font-size: 11px; }
  .preloader-logo { font-size: 28px; }
}

/* ===== BOTTOM MOBILE NAV BAR ===== */
.bottom-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  z-index: 9999;
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .bottom-mobile-nav { display: flex; justify-content: space-around; align-items: center; }
  body { padding-bottom: 70px; }
}
.bmn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--gray);
  font-size: 10px;
  gap: 2px;
  position: relative;
  padding: 4px 12px;
  transition: all 0.2s;
}
.bmn-item.active,
.bmn-item:active {
  color: var(--primary);
}
.bmn-item.active .bmn-icon {
  transform: scale(1.15);
}
.bmn-icon {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s;
}
.bmn-label {
  font-weight: 500;
  letter-spacing: 0.3px;
}
.bmn-badge {
  position: absolute;
  top: 0;
  right: 4px;
  background: #e53935;
  color: white;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ===== WISHLIST HEART ===== */
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--white);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: all 0.3s;
  z-index: 5;
}
.wishlist-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.wishlist-btn.active {
  background: #fce4ec;
}
.wishlist-btn.active::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #e53935;
  animation: heartPop 0.4s ease;
}
@keyframes heartPop {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== QUICK VIEW MODAL ===== */
/* ===== QUICK VIEW MODAL PREMIUM ===== */
.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.quickview-overlay.active { display: flex; }
.quickview-card {
  background: var(--white);
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  animation: fadeUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}
.quickview-card::-webkit-scrollbar { width: 4px; }
.quickview-card::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }
@media (max-width: 640px) {
  .quickview-card { grid-template-columns: 1fr; max-height: 95vh; }
}
.quickview-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.quickview-close:hover { background: #e53935; color: white; transform: rotate(90deg); }
.qv-image-section {
  position: relative;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 640px) {
  .qv-image-section { border-radius: 20px 20px 0 0; }
}
.quickview-img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.quickview-card:hover .quickview-img { transform: scale(1.03); }
.qv-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #e53935;
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: none;
  animation: badgePop 0.4s ease;
}
@keyframes badgePop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.quickview-info {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qv-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(76,175,124,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}
.quickview-info h2 { font-size: 19px; font-weight: 700; line-height: 1.3; color: var(--dark); }
.qv-rating { display: flex; align-items: center; gap: 2px; }
.qv-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.qv-price .qv-current { font-size: 24px; font-weight: 800; color: var(--primary); }
.qv-price .original { text-decoration: line-through; color: var(--gray); font-size: 14px; font-weight: 400; }
.qv-price .qv-save {
  background: #fff3e0;
  color: #e65100;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}
.qv-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.qv-divider { height: 1px; background: var(--light-gray); margin: 4px 0; }
.qv-options-row { display: flex; gap: 10px; }
.qv-opt { flex: 1; }
.qv-opt-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); display: block; margin-bottom: 6px; }
.qv-colors { display: flex; gap: 8px; }
.qv-color-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.qv-color-dot:hover { transform: scale(1.15); }
.qv-color-dot.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76,175,124,0.2);
}
.qv-sizes { display: flex; gap: 6px; flex-wrap: wrap; }
.qv-size-chip {
  padding: 6px 14px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--dark-gray);
}
.qv-size-chip:hover { border-color: var(--primary); color: var(--primary); }
.qv-size-chip.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}
.qv-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qv-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
}
.qv-qty button {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--off-white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.qv-qty button:hover { background: var(--primary); color: white; }
.qv-qty span {
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}
.qv-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.qv-actions .btn {
  flex: 1;
  padding: 14px;
  text-align: center;
}
.qv-add-cart {
  flex: 1.5;
}
.qv-shipping {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 2px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  padding: 10px 0;
  font-size: 13px;
  color: var(--gray);
}
.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 6px; }
.breadcrumb .current { color: var(--dark); font-weight: 600; }

/* ===== SCHEMA / SEO ===== */
.schema-hidden { display: none; }

/* ===== TESTIMONIAL SLIDER ===== */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.testimonial-card .tc-content {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}
.testimonial-card .tc-stars { color: var(--accent); font-size: 20px; margin-bottom: 10px; }
.testimonial-card .tc-text { font-size: 15px; line-height: 1.7; color: #444; margin-bottom: 15px; font-style: italic; }
.testimonial-card .tc-author { font-weight: 700; color: var(--dark); }
.testimonial-card .tc-date { font-size: 12px; color: var(--gray); }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testimonial-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonial-dots span.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ===== SIZE GUIDE ===== */
.size-guide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.size-guide-overlay.active { display: flex; }
.size-guide-card {
  background: var(--white);
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  padding: 30px;
  position: relative;
  animation: fadeUp 0.3s ease;
}
.size-guide-card h3 { margin-bottom: 15px; font-size: 20px; }
.size-guide-card table { width: 100%; border-collapse: collapse; }
.size-guide-card th, .size-guide-card td { padding: 10px 15px; border-bottom: 1px solid var(--light-gray); text-align: center; font-size: 14px; }
.size-guide-card th { background: var(--off-white); font-weight: 600; }

/* ===== CHECKOUT STEPS ===== */
.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
}
.cs-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
}
.cs-step .cs-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e0e0e0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.cs-step.active .cs-num { background: var(--primary); }
.cs-step.active { color: var(--dark); }
.cs-step.done .cs-num { background: #4caf50; }
.cs-step.done { color: #4caf50; }
.cs-line {
  width: 40px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 8px;
}
.cs-line.active { background: var(--primary); }

/* ===== RECENTLY VIEWED ===== */
.recently-viewed-section {
  padding: 40px 0;
  background: var(--off-white);
}

/* ===== PARALLAX SECTIONS ===== */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .parallax-section { background-attachment: scroll; }
}

/* ===== PREMIUM PRODUCT CARD UPGRADES ===== */
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-img img {
    transform: scale(1.08);
  }
  .product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
  }
}
.quick-view-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(0,0,0,0.8);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
  z-index: 5;
  white-space: nowrap;
}

/* ===== ANIMATED GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(270deg, var(--primary), #4caf7c, var(--accent), var(--primary));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 4s ease infinite;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== PREMIUM WHATSAPP FLOATING ===== */
.wa-float-group {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.whatsapp-float {
  position: relative;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}
.wa-ripple {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waRipple 2s infinite;
}
@keyframes waRipple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wa-tooltip-box {
  background: white;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  animation: fadeInRight 0.4s ease;
  position: relative;
}
.wa-tooltip-box::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: white;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}
.wa-label {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(37,211,102,0.3);
  transition: all 0.3s;
}
.wa-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.5);
}

/* ===== MADE BY BADGE ===== */
.made-by-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  overflow: visible;
}
.made-by-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}
.made-by-badge .made-by-name {
  position: absolute;
  left: 54px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: fadeInLeft 0.3s ease;
}
.made-by-badge .made-by-name::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 768px) {
  .wa-float-group { bottom: 80px; right: 15px; }
  .made-by-badge { bottom: 20px; left: 15px; }
  .whatsapp-float { width: 52px; height: 52px; }
  .made-by-badge { width: 38px; height: 38px; }
}
