:root {
  --bg: #f7f2ec;
  --bg-soft: #fcf9f5;
  --card: #ffffff;
  --text: #1f1a17;
  --muted: #776c63;
  --line: #eadfd4;
  --primary: #2b221c;
  --primary-soft: #4c3b31;
  --accent: #c5a27b;
  --gold-light: #efe1cf;
  --glass: rgba(255, 255, 255, 0.55);
  --whatsapp: #25d366;
  --shadow: 0 18px 45px rgba(43, 34, 28, 0.08);
  --shadow-strong: 0 22px 50px rgba(43, 34, 28, 0.15);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: linear-gradient(180deg, #fbf8f4 0%, #f5eee7 100%);
  color: var(--text);
  line-height: 1.8;
}

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

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

button {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   Header
   ========================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.35s ease;
}

.topbar-premium {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 223, 212, 0.92);
}

.topbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(234, 223, 212, 0.95);
  box-shadow: 0 10px 30px rgba(43, 34, 28, 0.05);
}

.topbar-inner {
  min-height: 84px;
}

.clean-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  margin-inline-start: auto;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text h1 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.brand-text p {
  display: none;
}

/* =========================
   Desktop Nav
   ========================= */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.clean-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.nav a,
.clean-nav > a,
.nav-more-btn {
  color: #4b4139;
  font-size: 0.92rem;
  font-weight: 800;
  transition: 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.clean-nav > a,
.nav-more-btn {
  padding: 8px 2px;
}

.nav a::after,
.clean-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: 0.25s ease;
}

.nav a:hover,
.clean-nav > a:hover {
  color: var(--primary);
}

.nav a:hover::after,
.clean-nav > a:hover::after {
  width: 100%;
}

/* =========================
   More dropdown
   ========================= */
.nav-more {
  position: relative;
}

.nav-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav-more-arrow {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.nav-more.open .nav-more-arrow {
  transform: rotate(180deg);
}

.nav-more-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(234, 223, 212, 0.95);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(43, 34, 28, 0.08);
  padding: 10px;
  display: none;
  z-index: 1200;
}

.nav-more.open .nav-more-menu {
  display: grid;
  gap: 6px;
}

.nav-more-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-more-menu a:hover {
  background: #f8f3ed;
}

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  border-radius: 18px;
  padding: 14px 22px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: 0.3s ease;
}

.clean-cta {
  padding: 11px 16px;
  font-size: 0.9rem;
  border-radius: 14px;
  min-width: 60px;
  max-width: 167px;

}
.desktop-cta.clean-cta {
  justify-self: end;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(43, 34, 28, 0.18);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  color: var(--primary);
}

.glass-btn {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
}

.btn-primary:hover,
.btn-outline:hover,
.glass-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   Mobile menu button
   ========================= */
.mobile-menu-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(43, 34, 28, 0.06);
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: 0.3s ease;
  display: block;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   Mobile dropdown menu
   ========================= */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 16px 18px;
}

.mobile-menu.active {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--primary);
}

.mobile-menu a:hover {
  background: #f8f3ed;
}

.mobile-menu-whatsapp {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: #fff !important;
  text-align: center;
}

/* =========================
   Hero
   ========================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 46px;
}

.hero-premium {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(197, 162, 123, 0.22), transparent 30%),
    radial-gradient(circle at bottom left, rgba(76, 59, 49, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  z-index: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero::before {
  width: 340px;
  height: 340px;
  top: -70px;
  right: -70px;
  background: rgba(197, 162, 123, 0.18);
}

.hero::after {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: -60px;
  background: rgba(76, 59, 49, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-grid-premium {
  gap: 48px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(43, 34, 28, 0.05);
  color: #5f554d;
  font-size: 0.92rem;
  font-weight: 700;
}

.eyebrow-premium {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
}

.hero h2 {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero h2 span {
  display: block;
  color: #87796d;
}

.lead {
  margin: 0 auto;
  max-width: 670px;
  color: #5d534c;
  font-size: 1.06rem;
  text-align: right;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  justify-content: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stats-premium .stat-card {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.stat-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(43, 34, 28, 0.05);
  text-align: center;
}

.stat-card small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.stat-card strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: center;
}

.showcase-side {
  display: grid;
  gap: 18px;
}

.showcase-card {
  background: var(--card);
  border: 1px solid rgba(234, 223, 212, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-main {
  min-height: 580px;
}

.showcase-main img {
  height: 580px;
}

.showcase-small {
  min-height: 250px;
}

.showcase-small img {
  height: 250px;
}

.premium-note {
  min-height: 250px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.48) 100%);
  backdrop-filter: blur(14px);
  text-align: center;
}

.premium-note small,
.section-head small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.premium-note h3,
.section-head h3 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  line-height: 1.25;
  font-weight: 900;
}

.premium-note p {
  color: #625850;
  text-align: right;
}

/* =========================
   Sections
   ========================= */
section {
  padding: 28px 0;
}

.section-shell {
  padding: 34px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(234, 223, 212, 0.92);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

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

.section-head.row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 24px;
}

.section-note {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #625850;
  text-align: center;
}

.about-grid,
.cta-grid {
  display: grid;
  gap: 22px;
}

.about-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.text-block p {
  margin: 18px 0 0;
  font-size: 1.02rem;
  color: #625850;
  text-align: right;
}

.feature-grid,
.category-grid,
.product-grid,
.premium-highlight-grid,
.premium-masonry {
  display: grid;
  gap: 18px;
}

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

.category-grid,
.product-grid,
.premium-masonry {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.category-card,
.highlight-card {
  padding: 24px;
  text-align: center;
}

.feature-card h4,
.category-card h4,
.product-body h4,
.highlight-card h4,
.gallery-caption h4 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 900;
}

.feature-card p,
.category-card p,
.highlight-card p {
  color: #625850;
}

.premium-surface,
.highlight-card,
.premium-gallery-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 249, 245, 0.82) 100%);
  border: 1px solid rgba(234, 223, 212, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.mt-20 {
  margin-top: 20px;
}

/* =========================
   Products / Gallery
   ========================= */
.product-card {
  background: var(--card);
  border: 1px solid rgba(234, 223, 212, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: 0.35s ease;
}

.premium-product:hover,
.premium-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.product-media {
  position: relative;
  min-height: 330px;
  background: #efe5db;
}

.product-media img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(43, 34, 28, 0.08);
}

.product-body,
.gallery-caption {
  padding: 22px;
  text-align: right;
}

.product-body p,
.gallery-caption p {
  color: #625850;
}

.premium-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.premium-masonry .tall img {
  height: 520px;
}

/* =========================
   CTA / Footer
   ========================= */
.cta-grid {
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}

.premium-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 242, 236, 0.92) 100%);
  text-align: center;
}

.cta-text {
  color: #625850;
  text-align: right;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  align-items: center;
  justify-content: center;
}

.footer {
  padding: 22px 0 34px;
  color: #7b7067;
}

.footer-inner {
  border-top: 1px solid rgba(234, 223, 212, 0.95);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.94rem;
}

/* =========================
   FAQ
   ========================= */
.faq-list {
  display: grid;
  gap: 16px;
  text-align: right;
}

.faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf8 100%);
  border: 1px solid rgba(234, 223, 212, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: right;
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f2e9df;
  color: var(--primary);
  flex-shrink: 0;
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  text-align: right;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: #625850;
}

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

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

/* =========================
   Floating WhatsApp
   ========================= */
.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1100;
  width: 58px;
  min-width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
  transition: 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
}

/* =========================
   Social Icons
   ========================= */
.social-icon-links {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.social-icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(234, 223, 212, 0.95);
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(43, 34, 28, 0.06);
  transition: 0.3s ease;
}

.social-icon-btn:hover {
  transform: translateY(-3px);
  background: #fff;
}

.social-icon {
  width: 22px;
  height: 22px;
}

/* =========================
   Motion
   ========================= */
.floating-card {
  animation: floatY 6s ease-in-out infinite;
}

.delay-float {
  animation-delay: 1.2s;
}

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

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .category-grid,
  .product-grid,
  .premium-masonry,
  .hero-showcase {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: start;
  }

  .clean-header {
    grid-template-columns: auto auto 1fr;
    gap: 14px;
  }

  .clean-nav {
    gap: 12px;
  }

  .clean-nav > a,
  .nav-more-btn {
    font-size: 0.86rem;
  }

  .clean-cta {
    min-width: 104px;
    padding: 10px 14px;
    font-size: 0.84rem;
  }
}

@media (max-width: 820px) {
  .nav,
  .clean-nav,
  .desktop-cta,
  .clean-cta {
    display: none;
  }

  .clean-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 12px;
  }

  .mobile-menu-btn {
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    order: 1;
    flex-shrink: 0;
  }

  .brand {
    order: 2;
    margin-inline-start: auto;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-text h1 {
    font-size: 0.92rem;
  }

  .hero-premium {
    min-height: auto;
    padding: 48px 0 40px;
  }

  .hero h2 {
    font-size: 1.85rem;
    line-height: 1.15;
  }

  .stats,
  .feature-grid,
  .premium-highlight-grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 24px;
    border-radius: 26px;
  }

  .showcase-main,
  .showcase-main img,
  .premium-masonry .tall img,
  .premium-masonry .premium-gallery-item img {
    height: 320px;
    min-height: 320px;
  }

  .topbar-inner {
    min-height: 74px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .btn,
  .cta-actions {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-text h1 {
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-premium {
    min-height: auto;
    padding: 42px 0 36px;
  }

  .eyebrow {
    font-size: 0.82rem;
    padding: 8px 14px;
    line-height: 1.7;
  }

  .hero h2 {
    font-size: 1.85rem;
    line-height: 1.15;
  }

  .premium-note,
  .feature-card,
  .category-card,
  .product-body,
  .gallery-caption,
  .highlight-card {
    padding: 20px;
  }

  .floating-whatsapp {
    left: 14px;
    bottom: 14px;
    width: 54px;
    min-width: 54px;
    height: 54px;
  }

  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }

  .social-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .social-icon {
    width: 20px;
    height: 20px;
  }

  .hero-actions .btn {
    min-height: 58px;
    border-radius: 20px;
    font-size: 1rem;
  }
}

/* =========================
   Lookbook Refinement
   ========================= */
.premium-lookbook {
  padding: 40px;
}

.lookbook-head {
  margin-bottom: 30px;
}

.lookbook-note {
  max-width: 620px;
}

.premium-lookbook-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.featured-look,
.secondary-look {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-look img {
  height: 520px;
}

.secondary-look img {
  height: 260px;
}

.featured-look .gallery-caption,
.secondary-look .gallery-caption {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 150px;
}

.gallery-caption h4 {
  margin-bottom: 10px;
}

.gallery-caption p {
  margin: 0;
  line-height: 1.5;
}

.premium-gallery-item img {
  transition: transform 0.4s ease;
}

.premium-gallery-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 1100px) {
  .premium-lookbook-grid {
    grid-template-columns: 1fr;
  }

  .featured-look img,
  .secondary-look img {
    height: 340px;
  }

  .featured-look .gallery-caption,
  .secondary-look .gallery-caption {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .premium-lookbook {
    padding: 24px;
  }

  .featured-look img,
  .secondary-look img {
    height: 280px;
  }

  .gallery-caption h4 {
    font-size: 1.05rem;
  }

  .gallery-caption p {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

.footer-credit {
  font-size: 0.9rem;
  color: #8a7d72;
}

.footer-credit a {
  color: var(--primary);
  font-weight: 800;
  transition: 0.25s ease;
}

.footer-credit a:hover {
  color: var(--accent);
}

/* =========================
   About Section Redesign
   ========================= */

.about-section {
  padding: 40px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.about-main-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(252,249,245,0.92) 100%);
  border: 1px solid rgba(234, 223, 212, 0.95);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 16px 38px rgba(43, 34, 28, 0.06);
}

.about-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.about-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(234, 223, 212, 0.95);
  padding: 8px;
  box-shadow: 0 10px 24px rgba(43, 34, 28, 0.05);
}

.about-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-main-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 900;
  color: var(--primary);
}

.about-main-card p {
  margin: 18px 0 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #625850;
  text-align: justify;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-mini-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(250,246,241,0.92) 100%);
  border: 1px solid rgba(234, 223, 212, 0.95);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 14px 28px rgba(43, 34, 28, 0.05);
  transition: 0.3s ease;
  text-align: center;
}

.about-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(43, 34, 28, 0.09);
}

.about-mini-card h4 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--primary);
}

.about-mini-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
  color: #6a5f56;
}

/* تابلت */
@media (max-width: 1100px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-main-card h3 {
    font-size: 2.2rem;
  }
}

/* جوال */
@media (max-width: 560px) {
  .about-section {
    padding: 24px;
  }

  .about-brand {
    align-items: center;
    gap: 12px;
  }

  .about-logo {
    width: 88px;
    height: 88px;
    border-radius: 14px;
  }

  .about-main-card {
    padding: 24px;
  }

  .about-main-card h3 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

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

  .about-mini-card {
    padding: 20px 18px;
  }
}