/* ============================================
   ذات بهجة - Dhat Bahja
   Arabic RTL E-commerce Accessories Website
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary-pink: #F06292;
  --primary-pink-dark: #E91E63;
  --light-blush: #FCE4EC;
  --accent-gold: #D4AF37;
  --accent-gold-dark: #C19B2F;
  --warm-beige: #F5EFE6;
  --dark-plum: #4A2C3A;
  --white: #ffffff;
  --font-arabic: 'Cairo', sans-serif;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 1.75rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-arabic);
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-plum);
  background-color: var(--warm-beige);
  direction: rtl;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('../images/bow-pattern.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-arabic);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}

input {
  font-family: var(--font-arabic);
  font-size: 1rem;
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.3;
}

/* ---------- Utility ---------- */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f8f4ee;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.navbar__logo-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-pink);
  margin: 0;
  line-height: 1.2;
}

.navbar__logo-subtitle {
  font-size: 0.75rem;
  color: rgba(74, 44, 58, 0.7);
  margin: 0;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  color: var(--dark-plum);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary-pink);
  transition: width var(--transition-normal);
  border-radius: 1px;
}

.navbar__link:hover {
  color: var(--primary-pink);
}

.navbar__link:hover::after {
  width: 100%;
}

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

.navbar__icon-btn {
  padding: 0.5rem;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__icon-btn:hover {
  background: var(--light-blush);
}

.navbar__icon-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-pink);
  stroke: var(--primary-pink);
}

.navbar__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: var(--radius-full);
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.navbar__mobile-toggle {
  display: none;
  padding: 0.5rem;
}

.navbar__mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-pink);
  stroke: var(--primary-pink);
}

.navbar__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--light-blush);
}

.navbar__mobile-menu.active {
  display: flex;
}

.navbar__mobile-link {
  color: var(--dark-plum);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

/* Floating blobs */
.hero__blob {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(48px);
  opacity: 0.3;
}

.hero__blob--1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: var(--light-blush);
}

.hero__blob--2 {
  bottom: 5rem;
  right: 5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(240, 98, 146, 0.2);
}

.hero__blob--3 {
  top: 50%;
  left: 33%;
  width: 6rem;
  height: 6rem;
  background: rgba(212, 175, 55, 0.1);
  filter: blur(32px);
}

.hero__content {
  padding: 3rem 0 5rem;
  position: relative;
  z-index: 10;
}

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

.hero__text {
  text-align: right;
  order: 1;
}

.hero__sparkles-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark-plum);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero__title span {
  color: var(--primary-pink);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(74, 44, 58, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-pink);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.hero__cta:hover {
  background: var(--primary-pink-dark);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.hero__cta svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero__bottom-sparkles {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 2rem;
}

/* Hero Image */
.hero__image-wrap {
  order: 2;
  display: flex;
  justify-content: center;
}

.hero__image-container {
  position: relative;
}

.hero__bag-image {
  max-width: 28rem;
  width: 100%;
  height: auto;
}

.hero__float-sparkle {
  position: absolute;
  animation: pulse 2s ease-in-out infinite;
}

.hero__float-sparkle--top {
  top: -1rem;
  right: -1rem;
}

.hero__float-sparkle--bottom {
  bottom: -1rem;
  left: -1rem;
  animation-delay: 0.5s;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background: transparent;
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-plum);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: rgba(74, 44, 58, 0.7);
  font-size: 1rem;
}

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

.category-card {
  cursor: pointer;
}

.category-card__inner {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-blush);
  transition: all var(--transition-normal);
  text-align: center;
}

.category-card__inner:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-0.5rem);
}

.category-card__icon-wrap {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--light-blush), rgba(240, 98, 146, 0.2));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.category-card__inner:hover .category-card__icon-wrap {
  transform: scale(1.1);
}

.category-card__icon-wrap svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--primary-pink);
  stroke-width: 1.5;
  fill: none;
}

.category-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-plum);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background: transparent;
}

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

.product-card {
  cursor: pointer;
}

.product-card__inner {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.product-card__inner:hover {
  box-shadow: var(--shadow-2xl);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--light-blush), var(--warm-beige));
}

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

.product-card__inner:hover .product-card__image-wrap img {
  transform: scale(1.1);
}

.product-card__fav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.product-card__inner:hover .product-card__fav {
  opacity: 1;
}

.product-card__fav:hover {
  background: var(--white);
}

.product-card__fav svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--primary-pink);
  fill: none;
}

.product-card__info {
  padding: 1.5rem;
}

.product-card__name {
  font-weight: 600;
  color: var(--dark-plum);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

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

.product-card__price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent-gold);
}

.product-card__cart-btn {
  background: var(--primary-pink);
  color: var(--white);
  padding: 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.product-card__cart-btn:hover {
  background: var(--primary-pink-dark);
  transform: scale(1.1);
}

.product-card__cart-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.products__more-wrap {
  text-align: center;
  margin-top: 3rem;
}

.products__more-btn {
  background: transparent;
  border: 2px solid var(--primary-pink);
  color: var(--primary-pink);
  padding: 0.75rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
}

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

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 5rem 0;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.about__bg-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Illustration side */
.about__illustration {
  display: flex;
  justify-content: center;
  order: 1;
}

.about__circle {
  position: relative;
}

.about__circle-inner {
  width: 20rem;
  height: 20rem;
  background: linear-gradient(135deg, var(--light-blush), rgba(240, 98, 146, 0.2));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-2xl);
}

.about__circle-content {
  text-align: center;
  padding: 2rem;
}

.about__circle-content .icon-heart {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1rem;
  stroke: var(--primary-pink);
  fill: var(--primary-pink);
}

.about__circle-content .icon-star {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  stroke: var(--accent-gold);
  fill: var(--accent-gold);
}

.about__float {
  position: absolute;
  animation: bounce 2s ease-in-out infinite;
}

.about__float--top {
  top: -1.5rem;
  right: -1.5rem;
}

.about__float--bottom {
  bottom: -1.5rem;
  left: -1.5rem;
  animation-delay: 0.3s;
}

.about__float svg {
  fill: currentColor;
}

.about__float--top svg {
  width: 3rem;
  height: 3rem;
  color: var(--accent-gold);
  fill: var(--accent-gold);
  stroke: var(--accent-gold);
}

.about__float--bottom svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary-pink);
  fill: var(--primary-pink);
  stroke: var(--primary-pink);
}

/* Text side */
.about__text {
  text-align: right;
  order: 2;
}

.about__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-plum);
  margin-bottom: 1.5rem;
}

.about__desc {
  font-size: 1.125rem;
  color: rgba(74, 44, 58, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about__desc-detail {
  color: rgba(74, 44, 58, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about__desc-detail .highlight {
  color: var(--primary-pink);
  font-weight: 600;
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-pink);
  line-height: 1.2;
}

.about__stat-label {
  color: rgba(74, 44, 58, 0.7);
  font-size: 0.875rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background: transparent;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-blush);
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
}

.testimonial-card__quote {
  margin-bottom: 1rem;
}

.testimonial-card__quote svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: rgba(240, 98, 146, 0.3);
  fill: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-card__stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--accent-gold);
  stroke: var(--accent-gold);
}

.testimonial-card__text {
  color: rgba(74, 44, 58, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-card__name {
  color: var(--primary-pink);
  font-weight: 600;
  font-size: 1rem;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-pink), var(--light-blush));
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.newsletter__decor {
  position: absolute;
  opacity: 0.2;
}

.newsletter__decor--top {
  top: 2.5rem;
  right: 2.5rem;
}

.newsletter__decor--bottom {
  bottom: 2.5rem;
  left: 2.5rem;
}

.newsletter__decor svg {
  stroke: var(--white);
  fill: none;
}

.newsletter__decor--top svg {
  width: 5rem;
  height: 5rem;
}

.newsletter__decor--bottom svg {
  width: 4rem;
  height: 4rem;
}

.newsletter__content {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.newsletter__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter__desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
}

.newsletter__input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--dark-plum);
  text-align: right;
  font-size: 1rem;
}

.newsletter__input::placeholder {
  color: rgba(74, 44, 58, 0.5);
}

.newsletter__input:focus {
  box-shadow: 0 0 0 2px var(--accent-gold);
}

.newsletter__submit {
  background: var(--accent-gold);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.newsletter__submit:hover {
  background: var(--accent-gold-dark);
  box-shadow: var(--shadow-xl);
}

.newsletter__submit svg {
  width: 1.25rem;
  height: 1.25rem;
}

.newsletter__privacy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
  background: var(--dark-plum);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-pink);
  margin-bottom: 0.5rem;
}

.footer__brand-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer__brand-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer__col-title {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  font-size: 0.9375rem;
}

.footer__link:hover {
  color: var(--primary-pink);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  justify-content: flex-start;
}

.footer__contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--primary-pink);
  fill: none;
  flex-shrink: 0;
  order: 2;
}

.footer__contact-item span {
  order: 1;
}

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

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-normal);
}

.footer__social-link:hover {
  background: var(--primary-pink);
}

.footer__social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--white);
  fill: none;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.checkout-modal.active {
  display: block;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(74, 44, 58, 0.45);
}

.checkout-modal__content {
  position: relative;
  z-index: 1;
  width: min(760px, 92%);
  max-height: 88vh;
  overflow-y: auto;
  margin: 5vh auto;
  background: var(--white);
  border: 1px solid var(--light-blush);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-2xl);
}

.checkout-modal__close {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background: var(--light-blush);
  color: var(--dark-plum);
  font-size: 1.25rem;
}

.cart-items {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid var(--light-blush);
  border-radius: 0.75rem;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.65rem;
}

.cart-item__info h4 {
  margin: 0;
  font-size: 1rem;
}

.cart-item__info p {
  margin: 0.25rem 0;
  color: var(--accent-gold-dark);
  font-weight: 700;
}

.cart-item__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-qty-btn {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: var(--radius-full);
  background: var(--light-blush);
  color: var(--dark-plum);
}

.cart-summary {
  margin: 1rem 0;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  background: #fff7fb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-summary strong {
  color: var(--accent-gold-dark);
  font-size: 1.2rem;
}

.cart-empty {
  padding: 1rem;
  border-radius: 0.75rem;
  background: #fff7fb;
  color: rgba(74, 44, 58, 0.75);
}

.checkout-form {
  display: grid;
  gap: 0.85rem;
}

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

.checkout-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  border: 1px solid rgba(74, 44, 58, 0.2);
  border-radius: 0.75rem;
  padding: 0.65rem 0.8rem;
  font-family: var(--font-arabic);
}

.checkout-submit {
  background: var(--primary-pink);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 0.8rem 1rem;
  font-weight: 700;
}

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

.checkout-message {
  margin: 0;
  min-height: 1.5rem;
  font-weight: 700;
}

.checkout-message.success {
  color: #2e7d32;
}

.checkout-message.error {
  color: #b71c1c;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInUp-delay-1 {
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.animate-fadeInUp-delay-2 {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.animate-fadeInUp-delay-3 {
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE - Tablet (768px)
   ============================================ */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

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

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

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

  .newsletter__form {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__bottom {
    flex-direction: row-reverse;
  }

  .footer__col {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

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

  .hero__text {
    text-align: right;
    order: 1;
  }

  .hero__image-wrap {
    order: 2;
  }

  .hero__bottom-sparkles {
    justify-content: flex-end;
  }

  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .about__illustration {
    order: 1;
  }

  .about__text {
    order: 2;
    text-align: right;
  }
}

/* ============================================
   RESPONSIVE - Mobile (<768px)
   ============================================ */
@media (max-width: 767px) {
  .navbar__links {
    display: none;
  }

  .navbar__mobile-toggle {
    display: block;
  }

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

  .hero__text {
    text-align: center;
    order: 2;
  }

  .hero__image-wrap {
    order: 1;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__subtitle {
    font-size: 1.125rem;
  }

  .hero__bottom-sparkles {
    justify-content: center;
  }

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

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

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

  .about__text {
    text-align: center;
    order: 1;
  }

  .about__illustration {
    order: 2;
  }

  .about__stats {
    justify-content: center;
  }

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

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__title {
    font-size: 1.75rem;
  }

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

  .footer__contact-item {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__col {
    text-align: center;
  }

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

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-pink-dark);
}

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

/* ============================================
   INTRO VIDEO
   ============================================ */
.intro-video-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}