/* =====================================================
   ANSHU COLLECTIONS - Premium Indian Women's Fashion
   Complete Stylesheet
   ===================================================== */

/* 1. CSS Variables */
:root {
  --primary: #722F37;
  --primary-dark: #5A1F25;
  --primary-light: #8B3A42;
  --secondary: #C5A55A;
  --secondary-light: #D4BC7C;
  --bg: #FDF8F3;
  --bg-alt: #F5EDE4;
  --text: #2D1F1F;
  --text-light: #6B5B5B;
  --text-muted: #9A8A8A;
  --white: #FFFFFF;
  --blush: #F0D5D0;
  --champagne: #F5E6CC;
  --border: #E8DDD2;
  --success: #2E7D32;
  --shadow-sm: 0 2px 8px rgba(45, 31, 31, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 31, 31, 0.08);
  --shadow-lg: 0 8px 40px rgba(45, 31, 31, 0.12);
  --shadow-xl: 0 12px 60px rgba(45, 31, 31, 0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
}

/* 2. Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2.5vw, 24px); }
h5 { font-size: clamp(16px, 2vw, 20px); }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  font-size: inherit;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 15px;
}

::selection {
  background-color: var(--primary);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

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

.section {
  padding: 100px 0;
}

/* 3. Announcement Bar */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1001;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  transition: transform var(--transition), opacity var(--transition);
}

.announcement-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.announcement-bar p,
.announcement-bar span {
  color: var(--white);
  margin: 0;
  font-size: 13px;
}

.announcement-bar .close-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 18px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity var(--transition);
  background: none;
  border: none;
  line-height: 1;
}

.announcement-bar .close-btn:hover {
  opacity: 0.7;
}

body.announcement-hidden {
  padding-top: 0;
}

body:not(.announcement-hidden) {
  padding-top: 40px;
}

/* 4. Header */
.header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

body.announcement-hidden .header {
  top: 0;
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  line-height: 1.1;
}

.header-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

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

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

.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  width: 100%;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background-color: var(--white);
  min-width: 200px;
  padding: 12px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--text-light);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.dropdown-menu a:hover {
  background-color: var(--bg);
  color: var(--primary);
  padding-left: 28px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 16px;
  transition: all var(--transition);
  background: transparent;
  position: relative;
}

.header-icon-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.wishlist-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.whatsapp-header-btn {
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.whatsapp-header-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1003;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text);
  transition: all var(--transition);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 5. Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background-color: var(--white);
  z-index: 1003;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--primary);
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text);
  transition: all var(--transition);
  background: none;
  border: none;
}

.mobile-menu-close:hover {
  background-color: var(--bg-alt);
}

.mobile-menu-nav {
  flex: 1;
  padding: 16px 0;
}

.mobile-menu-nav a {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
  font-weight: 500;
}

.mobile-menu-nav a:hover {
  background-color: var(--bg);
  color: var(--primary);
  padding-left: 32px;
}

.mobile-menu-nav .sub-link {
  padding-left: 48px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.mobile-menu-footer .whatsapp-btn {
  width: 100%;
  padding: 14px;
  background-color: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.mobile-menu-footer .whatsapp-btn:hover {
  background-color: #128C7E;
}

/* 6. Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  max-width: 700px;
  width: 100%;
  padding: 0 24px;
  text-align: center;
}

.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text);
  transition: all var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}

.search-close:hover {
  background-color: var(--bg-alt);
  color: var(--primary);
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.search-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 16px 0;
  font-size: 18px;
  font-family: var(--font-body);
  color: var(--text);
  background: transparent;
  outline: none;
  transition: border-color var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.search-tag {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}

.search-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(114, 47, 55, 0.05);
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.search-result-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
}

.search-result-item:hover {
  transform: translateY(-4px);
}

.search-result-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

.search-result-info {
  padding: 12px 0;
}

.search-result-info h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.search-result-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* 7. Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 16px;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  max-width: 550px;
  margin: 0 auto;
  opacity: 0.9;
  color: var(--white);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  padding: 16px 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 16px 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* 8. Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--text);
  margin: 16px 0;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
}

.section-header .underline {
  width: 60px;
  height: 2px;
  background-color: var(--secondary);
  margin: 16px auto 0;
}

/* 9. Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-card-info {
  padding: 24px;
}

.category-card-info h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 8px;
}

.category-card-info p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 12px;
  transition: all var(--transition);
}

.category-card-link .arrow {
  transition: transform 0.3s ease;
}

.category-card:hover .category-card-link .arrow {
  transform: translateX(4px);
}

/* 10. Product Grid & Cards */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background-color: var(--white);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  z-index: 2;
}

.badge-new {
  background-color: var(--secondary);
  color: var(--white);
}

.badge-trending {
  background-color: var(--primary);
  color: var(--white);
}

.badge-bestseller {
  background-color: #2C3E50;
  color: var(--white);
}

.badge-festive {
  background-color: #046A38;
  color: var(--white);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  gap: 8px;
  justify-content: center;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.product-card:hover .product-actions {
  transform: translateY(0);
}

.product-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 16px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.product-action-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  font-weight: 600;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 20px;
  margin: 8px 0;
  color: var(--text);
  line-height: 1.3;
}

.product-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.product-colors {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.color-dot:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 1px var(--primary);
}

.product-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn-view-details {
  flex: 1;
  background-color: var(--primary);
  color: var(--white);
  padding: 10px;
  border-radius: var(--radius);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-view-details:hover {
  background-color: var(--primary-dark);
}

.btn-whatsapp-small {
  width: 42px;
  background-color: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-whatsapp-small:hover {
  background-color: #128C7E;
}

/* 11. Product Detail Modal */
.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-modal-overlay.active {
  display: flex;
}

.product-modal {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text);
  z-index: 10;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.modal-close:hover {
  background-color: var(--primary);
  color: var(--white);
}

.modal-left {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-main-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.modal-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.modal-thumbnails::-webkit-scrollbar {
  height: 4px;
}

.modal-thumbnails img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all var(--transition);
  flex-shrink: 0;
}

.modal-thumbnails img:hover {
  opacity: 0.8;
}

.modal-thumbnails img.active {
  border-color: var(--primary);
  opacity: 1;
}

.modal-right {
  padding: 32px;
  overflow-y: auto;
}

.modal-right .product-category {
  margin-bottom: 8px;
}

.modal-right .product-name {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 16px;
}

.modal-description {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-info-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}

.modal-info-row .label {
  font-weight: 600;
  color: var(--text);
  min-width: 100px;
}

.modal-info-row .value {
  color: var(--text-light);
}

.modal-section {
  margin: 24px 0;
}

.modal-section-label {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn {
  min-width: 48px;
  height: 48px;
  border: 2px solid var(--border);
  background-color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.size-btn:hover {
  border-color: var(--primary);
}

.size-btn.selected {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.size-note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 8px;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.color-swatch:hover {
  border-color: var(--primary-light);
}

.color-swatch.selected {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.swatch-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border);
}

.color-swatch .color-name {
  font-size: 13px;
  color: var(--text);
}

.btn-whatsapp-modal {
  width: 100%;
  padding: 16px;
  background-color: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-whatsapp-modal:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.size-validation {
  color: #C62828;
  font-size: 13px;
  display: none;
  margin-top: 8px;
}

.related-products {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  margin-top: 0;
}

.related-products h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  text-align: center;
  margin-bottom: 24px;
}

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

/* 12. New Arrivals Section */
.new-arrivals .section-tag {
  color: var(--primary);
}

/* 13. Shop by Occasion */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

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

.occasion-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.occasion-card:hover .occasion-card-bg {
  transform: scale(1.08);
}

.occasion-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  transition: background var(--transition);
}

.occasion-card:hover .occasion-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.occasion-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--white);
  padding: 24px;
}

.occasion-card-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}

.occasion-card-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* 14. Why Anshu Collections */
.why-section {
  background-color: var(--bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(114, 47, 55, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* 15. Promotional Banner */
.promo-banner {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.promo-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.promo-banner-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 24px;
}

.promo-banner-content h2 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  margin-bottom: 16px;
}

.promo-banner-content p {
  color: var(--white);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  padding: 16px 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white:hover {
  background-color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* 16. Style Inspiration (Instagram Grid) */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.instagram-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-item:hover img {
  transform: scale(1.05);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(114, 47, 55, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay i {
  color: var(--white);
  font-size: 28px;
}

.follow-btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-follow {
  background-color: transparent;
  color: var(--primary);
  padding: 14px 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-follow:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* 17. Customer Reviews */
.reviews-section {
  background-color: var(--bg-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.review-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.review-stars {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-quote {
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0;
}

.review-author {
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author .review-avatar {
  margin-bottom: 0;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
}

.review-author .review-badge {
  margin-left: 0;
}

.review-badge {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

/* 18. FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color var(--transition);
  font-family: var(--font-body);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-chevron {
  transition: transform 0.3s ease;
  font-size: 12px;
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* 19. Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.whatsapp-number {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  display: block;
}

.btn-whatsapp-contact {
  background-color: #25D366;
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-whatsapp-contact:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 12px 0;
  font-size: 15px;
  color: var(--text);
  background: transparent;
  outline: none;
  transition: border-color var(--transition);
  font-family: var(--font-body);
}

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

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  padding: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

/* 20. Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background-color: var(--text);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* 21. Footer */
.footer {
  background-color: #1A0F0F;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo-section .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer-logo-section .footer-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-logo-section .footer-logo .logo-sub {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  margin-top: 2px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding: 6px 0;
  display: block;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact-number {
  margin-top: 0;
}

.footer-contact-number a {
  color: var(--secondary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer-contact-number a:hover {
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: all var(--transition);
}

.social-icon:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-top: 60px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* 22. Toast Notifications */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background-color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  transition: transform var(--transition);
  min-width: 280px;
  max-width: 400px;
}

.toast.show {
  transform: translateX(0);
}

.toast-icon {
  font-size: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.toast-text {
  font-size: 14px;
  color: var(--text);
  flex: 1;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 14px;
  transition: color var(--transition);
}

.toast-close:hover {
  color: var(--text);
}

/* 23. Scroll Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
}

[data-animate="fade-up"].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-in"] {
  opacity: 0;
}

[data-animate="fade-in"].visible {
  opacity: 1;
}

[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(-30px);
}

[data-animate="fade-left"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(30px);
}

[data-animate="fade-right"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="scale"] {
  opacity: 0;
  transform: scale(0.95);
}

[data-animate="scale"].visible {
  opacity: 1;
  transform: scale(1);
}

/* 24. Body Scroll Lock */
body.menu-open,
body.modal-open {
  overflow: hidden;
}

/* 25. Utility Classes */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-light {
  color: var(--text-light);
}

.text-muted {
  color: var(--text-muted);
}

.text-white {
  color: var(--white);
}

.bg-white {
  background-color: var(--white);
}

.bg-alt {
  background-color: var(--bg-alt);
}

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--border) 25%,
    var(--bg-alt) 50%,
    var(--border) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: var(--radius);
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
  width: 80%;
}

.skeleton-title {
  height: 24px;
  margin-bottom: 16px;
  width: 60%;
}

.skeleton-image {
  aspect-ratio: 3/4;
  width: 100%;
}

.skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

/* 26. Responsive Breakpoints */

/* Tablet */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .whatsapp-header-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .product-modal {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }

  .modal-left {
    padding: 24px;
  }

  .modal-right {
    padding: 24px;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-grid {
    gap: 40px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-info {
    padding: 12px;
  }

  .product-name {
    font-size: 16px;
  }

  .product-price {
    font-size: 14px;
  }

  .product-buttons {
    flex-direction: column;
  }

  .btn-view-details {
    padding: 8px;
    font-size: 10px;
  }

  .btn-whatsapp-small {
    width: 100%;
    height: 36px;
    border-radius: var(--radius);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-card-image {
    height: 160px;
  }

  .category-card-info {
    padding: 16px;
  }

  .category-card-info h3 {
    font-size: 18px;
  }

  .category-card-info p {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .occasion-card {
    height: 220px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

  .promo-banner {
    height: 400px;
  }

  .promo-banner-content h2 {
    font-size: clamp(28px, 6vw, 40px);
  }

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

  .contact-form {
    padding: 24px;
  }

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

  .footer {
    padding: 60px 0 0;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: clamp(26px, 6vw, 36px);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card {
    padding: 24px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-card {
    padding: 24px 16px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .search-results {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-scroll {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-actions {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
  }

  .product-modal {
    width: 95%;
    max-height: 95vh;
    border-radius: var(--radius);
  }

  .modal-left {
    padding: 16px;
  }

  .modal-right {
    padding: 16px;
  }

  .modal-main-image {
    aspect-ratio: 1/1;
  }

  .modal-thumbnails img {
    width: 56px;
    height: 56px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .categories-grid {
    gap: 10px;
  }

  .category-card-info h3 {
    font-size: 16px;
  }

  .occasions-grid {
    gap: 10px;
  }

  .occasion-card {
    height: 180px;
  }

  .occasion-card-content {
    padding: 16px;
  }

  .occasion-card-content h3 {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    height: 320px;
  }

  .promo-banner-content h2 {
    font-size: 28px;
  }

  .promo-banner-content p {
    font-size: 14px;
  }

  .btn-white {
    padding: 12px 28px;
    font-size: 12px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .whatsapp-number {
    font-size: 22px;
  }

  .search-results {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .announcement-bar {
    font-size: 11px;
    padding: 0 40px 0 16px;
  }
}

/* Print Styles */
@media print {
  .header,
  .announcement-bar,
  .whatsapp-float,
  .footer,
  .mobile-menu,
  .mobile-menu-overlay,
  .search-overlay,
  .product-modal-overlay,
  .toast-container {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding: 20px 0;
  }
}
