/* ================================================
   GlowQueen Beauty - Premium eCommerce Styles
   Luxury/Feminine/Modern Design
   ================================================ */

/* ================================
   CSS VARIABLES
   ================================ */
:root {
  /* Colors */
  --primary-color: #F8C8DC;
  --primary-light: #FDDDE6;
  --primary-dark: #F0B8C8;
  --secondary-color: #B76E79;
  --secondary-light: #D4A0A8;
  --accent-color: #E8D5C4;
  --accent-light: #F5EDE3;

  /* Neutrals */
  --white: #FFFFFF;
  --light-cream: #FFF8F2;
  --cream-warm: #FEF6F0;
  --dark-text: #2B2B2B;
  --text-color: #4A4A4A;
  --text-muted: #8A8A8A;
  --light-gray: #F5F5F5;
  --border-color: #E8E8E8;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 30px rgba(248, 200, 220, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   RESET & BASE
   ================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.accent-font {
  font-family: var(--font-accent);
  font-weight: 500;
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), #D4899A);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(183, 110, 121, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

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

.btn-ghost {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid transparent;
}

.btn-ghost:hover {
  background: var(--primary-light);
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.logo-text {
  display: none;
}

@media (min-width: 768px) {
  .logo-text {
    display: inline;
  }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  text-decoration: none;
}

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

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

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

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 576px) {
  .nav-actions {
    display: flex;
  }
}

.nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-cream);
  color: var(--secondary-color);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  text-decoration: none;
}

.nav-icon:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-icon .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: var(--secondary-color);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: flex;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: var(--light-cream);
  border: none;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--dark-text);
  transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu - Full Screen Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 9999;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

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

.mobile-menu-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--light-cream);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-text);
}

.mobile-menu-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.mobile-menu-content .nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 10px;
  transition: var(--transition-normal);
}

.mobile-menu-content .nav-link i {
  width: 24px;
  color: var(--secondary-color);
}

.mobile-menu-content .nav-link:hover,
.mobile-menu-content .nav-link.active {
  background: var(--light-cream);
  color: var(--secondary-color);
}

.mobile-menu-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--light-cream);
  border-radius: 12px;
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-normal);
}

.mobile-action-btn i {
  font-size: 1.25rem;
}

.mobile-action-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--cream-warm) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(248, 200, 220, 0.4) 0%, transparent 70%);
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, 30px) rotate(5deg); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
  color: var(--secondary-color);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
}

.hero-image-main {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-floating-card {
  position: absolute;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-floating-card.card-1 {
  bottom: 10%;
  left: -30px;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card.card-2 {
  top: 20%;
  right: -20px;
  animation: floatCard 4s ease-in-out infinite 0.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-floating-card .icon {
  width: 45px;
  height: 45px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
}

.hero-floating-card .text h5 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.hero-floating-card .text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ================================
   FEATURES SECTION
   ================================ */
.features {
  padding: var(--spacing-xl) 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--light-cream);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition-smooth);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

.feature-card h4 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ================================
   CATEGORIES SECTION
   ================================ */
.categories {
  padding: var(--spacing-xl) 0;
  background: var(--cream-warm);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--secondary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 43, 43, 0.7) 0%, transparent 60%);
  transition: var(--transition-smooth);
}

.category-card:hover::after {
  background: linear-gradient(to top, rgba(183, 110, 121, 0.8) 0%, transparent 60%);
}

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

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

.category-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
  color: var(--white);
}

.category-content h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.category-content p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* ================================
   PRODUCTS SECTION
   ================================ */
.products {
  padding: var(--spacing-xl) 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  background: var(--secondary-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.product-badge.sale {
  background: #E74C3C;
}

.product-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: var(--transition-normal);
}

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

.product-action-btn {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.product-action-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
  background: #fff9f5;
}

.product-category {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.product-title a:hover {
  color: var(--secondary-color);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.price-original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--light-cream), var(--accent-light));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-content .section-subtitle {
  text-align: left;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.about-feature h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
  padding: var(--spacing-xl) 0;
  background: var(--white);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--light-cream);
  padding: 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-info h5 {
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-rating {
  margin-top: 1rem;
  color: #FFD700;
  font-size: 1.25rem;
}

/* ================================
   BLOG SECTION
   ================================ */
.blog {
  padding: var(--spacing-xl) 0;
  background: var(--cream-warm);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.blog-image {
  height: 220px;
  overflow: hidden;
}

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.blog-title a:hover {
  color: var(--secondary-color);
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-read-more {
  color: var(--secondary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-read-more:hover {
  gap: 0.75rem;
}

/* ================================
   CTA SECTION
   ================================ */
.cta {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--secondary-color), #D4899A);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.1);
  transform: rotate(15deg);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  background: var(--white);
  color: var(--secondary-color);
}

.cta .btn:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* ================================
   NEWSLETTER SECTION
   ================================ */
.newsletter {
  padding: var(--spacing-xl) 0;
  background: var(--accent-light);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-content h2 {
  margin-bottom: 1rem;
}

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

.newsletter-form {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
}

.newsletter-form .btn {
  white-space: nowrap;
}

.newsletter-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* ================================
   FOOTER
   ================================ */
.footer {
  padding: var(--spacing-xl) 0 2rem;
  background: var(--dark-text);
  color: rgba(255,255,255,0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--spacing-lg);
}

.footer-about .logo {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  text-align: left;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.footer-column ul.footer-links {
    padding: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
}

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

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

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

/* ================================
   PAGE HEADER
   ================================ */
.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--light-cream), var(--cream-warm));
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

.breadcrumb span {
  color: var(--secondary-color);
}

/* ================================
   ABOUT PAGE
   ================================ */
.about-hero {
  padding: var(--spacing-xl) 0;
  background: var(--light-cream);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-hero-content h1 {
  margin-bottom: 1.5rem;
}

.about-hero-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.about-hero-image {
  position: relative;
}

.about-hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.stats-section {
  padding: var(--spacing-xl) 0;
  background: var(--secondary-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

.team-section {
  padding: var(--spacing-xl) 0;
  background: var(--cream-warm);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-smooth);
}

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

.team-image {
  height: 300px;
  overflow: hidden;
}

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

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

.team-info {
  padding: 1.5rem;
}

.team-info h4 {
  margin-bottom: 0.25rem;
}

.team-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ================================
   SHOP PAGE
   ================================ */
.shop-section {
  padding: var(--spacing-xl) 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

.shop-sidebar {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: var(--radius-xl);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-group h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.filter-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary-color);
}

.price-range {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.price-range input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.shop-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.shop-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}

.page-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-cream);
  color: var(--dark-text);
  cursor: pointer;
  transition: var(--transition-normal);
}

.page-btn:hover,
.page-btn.active {
  background: var(--secondary-color);
  color: var(--white);
}

/* ================================
   PRODUCT DETAIL PAGE
   ================================ */
.product-detail {
  padding: var(--spacing-xl) 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.product-main-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: 1rem;
}

.product-thumbnails {
  display: flex;
  gap: 1rem;
}

.product-thumb {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.product-thumb.active,
.product-thumb:hover {
  opacity: 1;
  border-color: var(--secondary-color);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info h1 {
  margin-bottom: 1rem;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-detail-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-detail-price .price-current {
  font-size: 2rem;
}

.product-detail-price .price-original {
  font-size: 1.25rem;
}

.product-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.product-options {
  margin-bottom: 2rem;
}

.option-group {
  margin-bottom: 1.5rem;
}

.option-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.color-options {
  display: flex;
  gap: 0.75rem;
}

.color-option {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-normal);
}

.color-option.active,
.color-option:hover {
  border-color: var(--secondary-color);
  transform: scale(1.1);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  border-radius: var(--radius-md);
  width: fit-content;
}

.quantity-btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark-text);
  transition: var(--transition-normal);
}

.quantity-btn:hover {
  color: var(--secondary-color);
}

.quantity-value {
  width: 40px;
  text-align: center;
  font-weight: 600;
}

.product-actions-detail {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.product-actions-detail .btn {
  flex: 1;
}

.product-meta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.meta-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.meta-item span:first-child {
  color: var(--text-muted);
  min-width: 100px;
}

/* ================================
   CONTACT PAGE
   ================================ */
.contact-section {
  padding: var(--spacing-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  padding: 3rem;
  background: var(--light-cream);
  border-radius: var(--radius-xl);
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-item-content h5 {
  margin-bottom: 0.25rem;
}

.contact-item-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

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

.map-section {
  height: 400px;
  background: var(--light-gray);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================
   BLOG PAGE
   ================================ */
.blog-page {
  padding: var(--spacing-xl) 0;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.blog-featured {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blog-featured-image {
  height: 400px;
  overflow: hidden;
}

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

.blog-featured-content {
  padding: 2rem;
}

.blog-featured-content .blog-title {
  font-size: 1.75rem;
}

.blog-sidebar {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: var(--radius-xl);
  height: fit-content;
}

.sidebar-widget {
  margin-bottom: 2rem;
}

.sidebar-widget h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.search-form button {
  padding: 0.75rem 1rem;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: var(--radius-md);
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.category-list a:hover {
  background: var(--primary-light);
  color: var(--secondary-color);
}

.category-list span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-post {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.recent-post-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

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

.recent-post-content h5 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.recent-post-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ================================
   BLOG DETAIL PAGE
   ================================ */
.blog-detail {
  padding: var(--spacing-xl) 0;
}

.blog-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-detail-image {
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
}

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

.blog-detail-content h1 {
  margin-bottom: 1.5rem;
}

.blog-detail-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.blog-detail-body {
  line-height: 1.9;
}

.blog-detail-body p {
  margin-bottom: 1.5rem;
}

.blog-detail-body h3 {
  margin: 2rem 0 1rem;
}

.blog-detail-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-detail-body li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.blog-share h5 {
  margin: 0;
}

/* ================================
   FAQ PAGE
   ================================ */
.faq-section {
  padding: var(--spacing-xl) 0;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light-cream);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

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

.faq-icon {
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 2rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ================================
   PRIVACY & TERMS PAGES
   ================================ */
.legal-section {
  padding: var(--spacing-xl) 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin: 2rem 0 1rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  list-style: disc;
  color: var(--text-muted);
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Large Desktop */
@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

  .hero-title {
    font-size: 3.5rem;
  }
}

/* Desktop & Laptop */
@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }

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

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

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

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

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

/* Tablet */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }

  .container {
    max-width: 768px;
  }

  .nav-menu {
    display: none;
  }

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

  .mobile-menu {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.75rem;
  }

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

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

  .about-grid,
  .contact-grid,
  .product-detail-grid,
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .blog-grid,
  .blog-page-grid,
  .blog-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .shop-sidebar {
    position: static;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .container {
    max-width: 100%;
    padding: 0 1rem;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

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

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-floating-card {
    display: none;
  }

  .features-grid,
  .categories-grid,
  .products-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 300px;
  }

  .product-image {
    height: 250px;
  }

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

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }

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

  .newsletter-form .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .product-actions-detail {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    padding: 2rem;
  }

  .blog-featured-image {
    height: 250px;
  }

  .blog-detail-image {
    height: 300px;
  }

  .blog-detail-meta {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .btn {
    padding: 0.875rem 1.5rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .product-info {
    padding: 1rem;
  }

  .blog-content {
    padding: 1rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  /* Fix spacing issues */
  .hero {
    padding: 100px 15px 50px;
  }

  .features {
    padding: 3rem 0;
  }

  .categories {
    padding: 3rem 0;
  }

  .products {
    padding: 3rem 0;
  }

  .about {
    padding: 3rem 0;
  }

  .testimonials {
    padding: 3rem 0;
  }

  .blog {
    padding: 3rem 0;
  }

  .cta {
    padding: 3rem 0;
  }

  .newsletter {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  /* Fix category card height */
  .category-card {
    height: 250px;
  }

  /* Fix product grid spacing */
  .products-grid {
    gap: 1rem;
  }

  .product-image {
    height: 200px;
  }

  /* Fix about section */
  .about-grid {
    gap: 2rem;
  }

  /* Fix newsletter */
  .newsletter-grid {
    gap: 2rem;
  }

  .newsletter-content h2 {
    font-size: 1.5rem;
  }

  /* Fix footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }

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

  /* Fix page header */
  .page-header {
    padding: 120px 0 50px;
  }

  /* Fix product detail */
  .product-detail {
    padding: 3rem 0;
  }

  .product-detail-grid {
    gap: 2rem;
  }

  /* Fix contact form */
  .contact-grid {
    gap: 2rem;
  }

  /* Fix shop sidebar */
  .shop-sidebar {
    padding: 1.5rem;
  }

  /* Fix cart item */
  .cart-item {
    padding: 1rem;
  }

  /* Fix cart summary */
  .cart-summary {
    padding: 1.5rem;
  }

  /* Fix checkout */
  .checkout-section {
    padding: 3rem 0;
  }
}

/* Extra Fixes for Better Mobile Experience */
@media (max-width: 360px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .product-actions {
    gap: 0.25rem;
  }

  .product-action-btn {
    width: 38px;
    height: 38px;
  }
}

/* Improved Navigation for Mobile */
@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar .container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.35rem;
    order: 1;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .mobile-menu-btn {
    order: 3;
  }

  .nav-actions {
    order: 2;
    gap: 0.35rem;
    margin-left: auto;
  }

  .nav-icon {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .nav-icon .badge {
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
  }

  /* Mobile menu improvements */
  .mobile-menu {
    padding: 1.5rem;
    overflow-y: auto;
  }

  .mobile-menu .nav-link {
    font-size: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
  }

  .mobile-menu-close {
    top: 1rem;
    right: 1rem;
    font-size: 2.35rem;
  }

  /* Add mobile-only actions in menu */
  .mobile-menu-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
  }

  .mobile-menu-actions a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
  }

  .mobile-menu-actions .mobile-cart {
    background: var(--secondary-color);
    color: white;
  }

  .mobile-menu-actions .mobile-wishlist {
    background: var(--primary-light);
    color: var(--secondary-color);
  }

  .mobile-menu-actions .mobile-account {
    background: var(--accent-light);
    color: var(--dark-text);
  }
}

/* Even smaller screens */
@media (max-width: 400px) {
  .logo {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .nav-actions {
    gap: 0.25rem;
  }

  .nav-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* FAQ Page Improvements */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light-cream);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--dark-text);
}

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

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer-content {
  padding: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Mobile FAQ improvements */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 1.1rem;
  }
}

/* Better Touch Targets */
@media (max-width: 576px) {
  .btn,
  .product-action-btn,
  .nav-icon,
  .mobile-menu-btn {
    min-height: 44px;
    min-width: 44px;
  }

  input,
  select,
  textarea {
    min-height: 44px;
  }
}

/* Fix for horizontal scroll prevention */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* Fix spacing consistency */
section {
  overflow: hidden;
}

/* Better images */
img {
  max-width: 100%;
  height: auto;
}

/* Fix form inputs on mobile */
@media (max-width: 576px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
  }
}

/* Improved section spacing */
.section-header {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

/* Fix for sticky elements on mobile */
@media (max-width: 992px) {
  .shop-sidebar,
  .cart-summary,
  .checkout-summary {
    position: static;
  }
}

/* Better category cards */
.category-card {
  min-height: 300px;
}

@media (max-width: 768px) {
  .category-card {
    min-height: 250px;
  }
}

/* Fix product card images */
.product-image {
  aspect-ratio: 4/5;
  height: auto;
}

/* Better spacing for mobile grids */
.features-grid,
.categories-grid,
.products-grid,
.blog-grid,
.stats-grid,
.team-grid {
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .features-grid,
  .categories-grid,
  .products-grid,
  .blog-grid,
  .stats-grid,
  .team-grid {
    gap: 1rem;
  }
}

/* ================================
   UTILITY CLASSES
   ================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }
.pt-4 { padding-top: 4rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }
.pb-4 { padding-bottom: 4rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

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

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }

.z-index-1 { z-index: 1; }
.z-index-2 { z-index: 2; }
.z-index-3 { z-index: 3; }