/* Base & Typography */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

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

.section-padding {
  padding: 100px 0;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-subheading {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.4s ease;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 0.7rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text) !important;
}

.brand-icon {
  color: var(--gold);
  font-size: 1.5rem;
}

.brand-arabic {
  font-family: 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-left: 4px;
}

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.btn-whatsapp-nav {
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-whatsapp-nav:hover {
  background-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  color: white;
}

/* Mobile nav toggler */
.navbar-toggler-icon-custom {
  width: 24px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler-icon-custom span {
  display: block;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.offcanvas {
  background-color: var(--surface);
  color: var(--text);
}

.btn-close-custom {
  filter: invert(0);
}

[data-theme="dark"] .btn-close-custom {
  filter: invert(1);
}

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn-primary-hero {
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-primary-hero:hover {
  background-color: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(193,90,132,0.2);
}

.btn-outline-hero {
  border: 1.5px solid var(--text);
  color: var(--text);
  background: transparent;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-outline-hero:hover {
  background-color: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp-product {
  background-color: var(--surface);
  border: 1px solid var(--border);
  color: var(--secondary);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  width: 100%;
  transition: all 0.3s;
}

.btn-whatsapp-product:hover {
  background-color: #25D366;
  border-color: #25D366;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37,211,102,0.2);
}

/* Hero */
.hero-section {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background-color: var(--bg);
}

.hero-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(60px);
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -100px;
  left: -100px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.trust-badge i {
  color: var(--secondary);
  margin-right: 4px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary-soft), var(--gold-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.hero-image-inner {
  text-align: center;
}

.hero-image-icon {
  font-size: 5rem;
}

.hero-image-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  margin-top: 10px;
}

.hero-floating-element {
  position: absolute;
  color: var(--gold);
  font-size: 2rem;
  opacity: 0.6;
}

.hero-float-1 { top: 10%; left: 10%; }
.hero-float-2 { bottom: 20%; right: 15%; }
.hero-float-3 { top: 50%; right: 5%; }

/* Social Proof */
.social-proof-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  background: var(--surface);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.sp-stars { color: var(--gold); }
.sp-icon { color: var(--secondary); font-size: 1.2rem; }

/* Collections */
.collection-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  transition: all 0.4s ease;
  border: 1px solid var(--border);
}

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

.collection-card-image {
  height: 250px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.collection-card-body {
  padding: 1.5rem;
}

.collection-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.collection-arrow {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary);
}

/* About */
.about-image-wrapper {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--primary-soft), var(--gold-soft));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.about-highlight i {
  color: var(--secondary);
}

/* Why Us */
.why-us-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.why-us-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

/* Process */
.process-timeline {
  padding: 2rem 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.process-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
}

.process-step-icon {
  font-size: 2rem;
  margin: 0.5rem 0;
  color: var(--gold);
}

.process-connector {
  flex: 0.5;
  display: flex;
  align-items: center;
  padding-top: 30px;
}

.process-connector span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--border);
  position: relative;
}

/* Products */
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.product-card-image {
  height: 260px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 3rem;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-card-body {
  padding: 1.5rem;
}

/* Testimonials */
.testimonials-carousel-wrapper {
  position: relative;
  padding: 0 40px;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--border);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.testimonial-avatar {
  width: 45px;
  height: 45px;
  background: var(--primary-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--secondary);
}

.swiper-button-prev, .swiper-button-next {
  color: var(--secondary);
}

/* Instagram */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.instagram-grid-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}

.insta-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.5s ease;
}

.instagram-grid-item:hover .insta-img-placeholder {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

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

/* CTA */
.final-cta-wrapper {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.final-cta-decoration {
  position: absolute;
  font-size: 4rem;
  opacity: 0.1;
}

.final-cta-deco-left { top: 10px; left: 20px; }
.final-cta-deco-right { bottom: 10px; right: 20px; }

.btn-cta-large {
  background: #25D366;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-large:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37,211,102,0.3);
  color: white;
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

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

.footer-links li a {
  color: var(--muted);
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Floating WA */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: transform 0.3s;
}

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

.testimonials-prev,
.testimonials-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.testimonials-prev:hover,
.testimonials-next:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.testimonials-prev {
  left: 0;
}
.testimonials-next {
  right: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--border);
  opacity: 1;
  transition: 0.3s;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--secondary);
  width: 24px;
  border-radius: 20px;
}

.product-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: var(--primary-soft); /* fallback while loading */
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img {
  transform: scale(1.05);
}