/* ===========================
   NATUREO MAIN STYLES
   =========================== */

/* ----- HEADER / NAVBAR ----- */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1440px;
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(25px) saturate(120%);
  -webkit-backdrop-filter: blur(25px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.5s var(--ease-out-expo);
}

.site-header.scrolled {
  height: var(--navbar-scrolled);
  top: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(35px) saturate(150%);
  -webkit-backdrop-filter: blur(35px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #33312E;
  line-height: 1;
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: rgba(51, 49, 46, 0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
}

.site-logo:hover .logo-icon {
  transform: scale(1.05);
  border-color: var(--glass-border-hover);
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-menu li a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(51, 49, 46, 0.75);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  color: #33312E;
  background: rgba(0, 0, 0, 0.04);
}

.nav-menu li.current-menu-item a {
  font-weight: 500;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #33312E;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-icon:hover {
  background: rgba(205,164,106,0.1);
  transform: scale(1.08);
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(205,164,106,0.3);
}

/* Menu Toggle (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 180px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--bg-primary);
  background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.05);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(255,255,255,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(205,164,106,0.05) 0%, transparent 50%);
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scene-layer {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.layer-deep {
  background: radial-gradient(ellipse at 80% 50%, rgba(85,98,76,0.06) 0%, transparent 50%);
}

.layer-mid {
  background: radial-gradient(ellipse at 20% 30%, rgba(205,164,106,0.04) 0%, transparent 40%);
}

.layer-front {
  background: radial-gradient(ellipse at 50% 90%, rgba(85,98,76,0.03) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.hero-text {
  flex: 1;
  max-width: 680px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-description {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Benefits Bar */
.benefits-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  max-width: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
}

.benefit-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  align-self: center;
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.benefit-title {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.benefit-desc {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

/* Offer Card */
.hero-offer-card {
  flex-shrink: 0;
  width: 340px;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 3;
}

.offer-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(205,164,106,0.3);
}

.offer-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.offer-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.offer-current {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent-dark);
}

.offer-old {
  font-size: 16px;
  color: rgba(47,43,40,0.4);
  text-decoration: line-through;
}

.offer-countdown {
  margin-bottom: 24px;
}

.countdown-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(47,43,40,0.6);
  display: block;
  margin-bottom: 10px;
}

.countdown-timer {
  display: flex;
  gap: 12px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.countdown-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.countdown-unit-label {
  font-size: 10px;
  font-weight: 400;
  color: rgba(47,43,40,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.offer-cta {
  width: 100%;
  justify-content: center;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(47,43,40,0.4);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceFloat 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes bounceFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   CATEGORY GRID
   =========================== */
.category-grid-section {
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.category-grid-section {
  position: relative;
  z-index: 10;
  margin-top: 40px;
  padding-top: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.category-card {
  background: #FFFFFF;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  cursor: pointer;
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
}

.category-card:hover {
  transform: perspective(1200px) rotateX(2deg) rotateY(3deg) translateY(-8px);
  box-shadow: var(--shadow-float);
  border-color: var(--glass-border-hover);
}

.category-visual {
  margin-bottom: 24px;
  position: relative;
}

.category-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(85,98,76,0.06) 0%, rgba(205,164,106,0.04) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.category-card:hover .category-placeholder {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(85,98,76,0.1) 0%, rgba(205,164,106,0.08) 100%);
}

.category-icon {
  color: var(--accent);
  transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
  transform: scale(1.1);
  color: var(--gold);
}

.category-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.category-desc {
  font-size: 12px;
  color: rgba(47,43,40,0.5);
  display: block;
  margin-bottom: 16px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  transition: var(--transition-smooth);
}

.category-link svg {
  transition: transform 0.3s ease;
}

.category-card:hover .category-link {
  color: var(--gold);
}

.category-card:hover .category-link svg {
  transform: translateX(4px);
}

/* ===========================
   FEATURED PRODUCTS
   =========================== */
.featured-section {
  position: relative;
  overflow: hidden;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.featured-header-left .btn {
  margin-top: 24px;
}

.featured-carousel {
  position: relative;
  overflow: visible;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  background: #FFFFFF;
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4/5;
  background: var(--bg-secondary);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-image-reflection {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.product-card:hover .product-image-reflection {
  left: 150%;
}

.product-card-info {
  padding: 4px 0;
}

.product-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.product-rating .star-rating {
  display: flex;
  gap: 2px;
  font-size: 13px;
  color: var(--gold);
}

.rating-count {
  font-size: 12px;
  color: rgba(47,43,40,0.45);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--accent-dark);
}

.product-price ins {
  text-decoration: none;
  background: none;
}

.product-price del {
  font-size: 14px;
  color: rgba(47,43,40,0.35);
  font-weight: 300;
  margin-right: 8px;
}

.btn-add-cart {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-dark);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 20a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm7 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-9-3h10a2 2 0 0 0 1.9-1.5L21 6H6'/%3E%3Cpath d='M6 6H3v-2h4l.5 1.5M16 11H9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border: none;
  cursor: pointer;
  color: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(57,67,54,0.2);
  z-index: 2;
  overflow: hidden;
}

.btn-add-cart * {
  display: none !important;
}

.btn-add-cart.added::after {
  content: '';
  display: none;
}

.btn-add-cart:hover {
  background: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(205,164,106,0.3);
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: scale(1.05);
}

/* ===========================
   TRUST SECTION
   =========================== */
.trust-section {
  padding: 80px 0;
}

.trust-strip {
  background: #FFFFFF;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  position: relative;
}

.trust-divider {
  width: 1px;
  height: 80px;
  background: var(--glass-border);
  align-self: center;
}

.trust-icon svg {
  transition: var(--transition-smooth);
}

.trust-item:hover .trust-icon svg {
  transform: scale(1.15);
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.trust-desc {
  font-size: 13px;
  color: rgba(47,43,40,0.55);
}

/* ===========================
   INSPIRATION SECTION
   =========================== */
.inspiration-section {
  position: relative;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.inspiration-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.inspiration-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
}

.inspiration-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.inspiration-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s var(--ease-out-expo);
}

.inspiration-card:hover .inspiration-placeholder {
  transform: scale(1.06);
}

.inspiration-pattern {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.inspiration-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(47,43,40,0.7) 100%);
  transition: opacity 0.4s ease;
}

.inspiration-card:hover .inspiration-overlay {
  opacity: 0.85;
}

.inspiration-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 40px 32px;
  color: #fff;
}

.inspiration-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 8px;
}

.inspiration-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
}

.inspiration-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.inspiration-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.inspiration-cta {
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: var(--transition-smooth);
}

.inspiration-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.inspiration-link:hover .inspiration-arrow {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

.inspiration-link:hover .inspiration-cta {
  border-color: var(--gold);
}

/* ===========================
   NEWSLETTER / FOOTER
   =========================== */
.newsletter-section {
  padding: 100px 0 60px;
}

.newsletter-container {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #2a3028 100%);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(205,164,106,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-logo {
  margin-bottom: 16px;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.newsletter-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 4px;
  transition: var(--transition-smooth);
}

.newsletter-input-wrap:focus-within {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.newsletter-input {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-submit {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.newsletter-submit:hover {
  background: #bf935a;
  transform: scale(1.05);
}

.newsletter-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--accent);
  color: #ffffff;
}

.footer-bottom {
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-brand .logo-icon {
  margin-bottom: 16px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-smooth);
}

.footer-menu li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-legal {
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-legal p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   ANIMATIONS
   =========================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s var(--ease-out-expo);
}

.animate-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.animate-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s var(--ease-out-expo);
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* GSAP pin spacer */
.gsap-pin-spacer {
  pointer-events: none;
}

/* ===========================
   WOOCOMMERCE OVERRIDES
   =========================== */
.woocommerce-natureo .page-title {
  display: none;
}

.woocommerce-natureo .shop-content {
  padding: 140px 0 60px;
}

.woocommerce-natureo .shop-header {
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.woocommerce-natureo .shop-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
}

.woocommerce-natureo ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
}

.woocommerce-natureo ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  padding: 20px;
  background: var(--glass-alt);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.woocommerce-natureo ul.products li.product:hover {
  box-shadow: var(--shadow-float);
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
}

.product-actions-wrapper {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-actions-wrapper .button {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: var(--accent-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-actions-wrapper .button:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-wishlist,
.btn-quick-view {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.btn-wishlist:hover,
.btn-quick-view:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.sale {
  background: var(--gold);
  color: #fff;
}

.product-badge.out-of-stock {
  background: rgba(47,43,40,0.6);
  color: #fff;
}

/* ===========================
   BLOG / CONTENT
   =========================== */
.site-main {
  min-height: 60vh;
}

.singular .site-main {
  padding-top: 0px;
}

/* Footer Newsletter styles */
.footer-newsletter { padding-right: 40px; }
.footer-newsletter .newsletter-form { margin-top: 20px; }
.footer-newsletter .newsletter-input-wrap { display: flex; background: rgba(255,255,255,0.1); border-radius: 30px; padding: 4px; border: 1px solid rgba(255,255,255,0.2); }
.footer-newsletter .newsletter-input { flex: 1; background: transparent; border: none; padding: 10px 16px; color: #fff; outline: none; font-size: 14px; }
.footer-newsletter .newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter .newsletter-submit { background: #fff; color: var(--accent); border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.3s ease; }
.footer-newsletter .newsletter-submit:hover { transform: scale(1.05); }
.contact-info-menu li { margin-bottom: 16px !important; }


/* ===========================
   RTL STYLES FOR ARABIC
   =========================== */
html[dir='rtl'] {
    --font-heading: 'Almarai', 'Cormorant Garamond', serif;
    --font-body: 'Almarai', 'Inter', sans-serif;
}

html[dir='rtl'] body {
    font-family: var(--font-body);
}

html[dir='rtl'] h1, html[dir='rtl'] h2, html[dir='rtl'] h3, html[dir='rtl'] h4, html[dir='rtl'] h5, html[dir='rtl'] h6, html[dir='rtl'] .hero-title, html[dir='rtl'] .offer-title, html[dir='rtl'] .section-title, html[dir='rtl'] .logo-wordmark {
    font-family: var(--font-heading);
}

html[dir='rtl'] .featured-header {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

html[dir='rtl'] .featured-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Flip icons that indicate direction */
html[dir='rtl'] .btn svg.icon-arrow,
html[dir='rtl'] .category-link svg,
html[dir='rtl'] .carousel-prev svg,
html[dir='rtl'] .carousel-next svg {
    transform: scaleX(-1);
}

/* Fix product card buttons */
html[dir='rtl'] .btn-add-cart {
    left: auto;
    right: auto;
    margin: 0;
}

/* Fix cart button hiding price */
html[dir='rtl'] .product-card-info {
    padding-left: 0;
}

html[dir='rtl'] .offer-badge {
    right: auto;
    left: 24px;
}

/* Adjust logo text margin */
html[dir='rtl'] .logo-icon {
    margin-left: 12px;
    margin-right: 0;
}

/* Navbar items spacing */
html[dir='rtl'] .nav-menu {
    padding-right: 0;
}

/* Fix carousel controls positioning */
html[dir='rtl'] .carousel-controls {
    justify-content: flex-start;
}

/* Fix inspiration section link arrow */
html[dir='rtl'] .inspiration-arrow svg {
    transform: scaleX(-1);
}

/* ===========================
   RTL MOBILE FIXES
   =========================== */
@media (max-width: 768px) {
    html[dir=''rtl''] .hero-content {
        text-align: right;
        align-items: flex-start;
    }
    
    html[dir=''rtl''] .hero-text {
        text-align: right;
    }
    
    html[dir=''rtl''] .hero-actions {
        align-items: flex-start;
    }
    
    html[dir=''rtl''] .benefit-text {
        text-align: right;
    }
    
    html[dir=''rtl''] .nav-menu li a {
        text-align: right;
    }
    
    html[dir=''rtl''] .menu-toggle {
        margin-right: auto;
        margin-left: 0;
    }
    
    html[dir=''rtl''] .site-header .container {
        flex-direction: row;
    }
    
    html[dir=''rtl''] .footer-col, 
    html[dir=''rtl''] .footer-brand {
        text-align: right;
    }
    
    html[dir=''rtl''] .newsletter-container {
        text-align: right;
    }
}




/* Fix single product quick checkout RTL */
html[dir=''rtl''] .quick-checkout-layout {
    direction: rtl;
}

html[dir=''rtl''] .quick-checkout-layout input {
    text-align: right;
}


/* Fix shop page buttons layout */
.product-actions-wrapper .btn-add-cart {
  position: relative;
  bottom: auto;
  right: auto;
}
.product-actions-wrapper .btn-wishlist,
.product-actions-wrapper .btn-quick-view {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.product-actions-wrapper .btn-wishlist:hover,
.product-actions-wrapper .btn-quick-view:hover {
  background: rgba(205,164,106,0.1);
}


/* Ensure product cards align right in RTL */
html[dir="rtl"] .product-card {
  text-align: right;
}
html[dir="rtl"] .product-actions-wrapper {
  justify-content: flex-start;
}






/* ===========================
   SAFE MOBILE OVERRIDES
   =========================== */
@media (max-width: 768px) {
  /* Fix header toggle visibility */
  .menu-toggle {
    color: #ffffff;
  }
  
  /* Fix hero section stacking */
  .hero-actions {
    gap: 15px !important;
  }
  .hero-offer-card {
    margin-top: 30px !important;
  }
  
  /* Fix trust strip alignment */
  .trust-strip .trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* Fix newsletter input form overlap */
  .newsletter-input-wrap {
    flex-direction: column;
    gap: 15px;
  }
  .newsletter-submit {
    width: 100%;
    margin-top: 10px;
    height: 48px;
  }
  .newsletter-input {
    padding: 14px 20px;
  }
  
  /* Fix Inspiration Grid */
  .inspiration-grid .inspiration-card {
    min-height: 250px;
  }
}


@media (max-width: 768px) {
  .menu-toggle span {
    background: #ffffff !important;
  }
}


@media (max-width: 768px) {
  /* Fix invisible white links on white background */
  .nav-menu li a {
    color: #333333 !important;
  }
  
  /* Fix navigation showing initially by using opacity/visibility instead of just transform */
  .main-navigation {
    transform: translateY(-20px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .main-navigation.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}


/* WooCommerce Order Received RTL Fixes */
.woocommerce-order {
    text-align: right;
    direction: rtl;
    background: transparent;
}
.woocommerce-table--order-details {
    width: 100%;
    text-align: right;
    border-collapse: collapse;
}
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    text-align: right !important;
    padding: 12px;
    border: 1px solid var(--glass-border);
}
.woocommerce-table--order-details thead th {
    background: rgba(255, 255, 255, 0.05);
}
.woocommerce-order ul.order_details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.woocommerce-order ul.order_details li {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--radius-md);
    flex: 1 1 200px;
}
.woocommerce-order h2, .woocommerce-order h3 {
    text-align: right;
    margin-top: 30px;
}
.woocommerce-customer-details address {
    text-align: right;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

html[dir='rtl'] .offer-badge { right: auto; left: 24px; top: auto; }
