/* ============================================================
   Deltawood (دلتاوود) — Premium RTL Design System
   Persian Furniture E-Commerce
   ============================================================ */

/* ------------------------------------------------------------
   1. FONT FACES (Self-Hosted Vazirmatn)
   ------------------------------------------------------------ */
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------
   2. DESIGN TOKENS (CSS Custom Properties)
   ------------------------------------------------------------ */
:root {
  /* Colors */
  --brown:        #2B1B0E;
  --brown-mid:    #3D2A19;
  --amber:        #D4A373;
  --amber-dark:   #B8864D;
  --amber-light:  #EDD9B8;
  --cream:        #FAF8F5;
  --cream-dark:   #F0EBE4;
  --white:        #FFFFFF;
  --text:         #2B1B0E;
  --text-body:    #4A3220;
  --text-muted:   #7A6250;
  --border:       #E8DDD4;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(43, 27, 14, .08);
  --shadow-md:    0 4px 24px rgba(43, 27, 14, .13);
  --shadow-lg:    0 8px 48px rgba(43, 27, 14, .20);

  /* Radii */
  --radius:       12px;
  --radius-sm:    8px;

  /* Transition */
  --transition:   .22s ease;

  /* Type Scale */
  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-lg:    1.125rem;   /* 18px */
  --text-xl:    1.25rem;    /* 20px */
  --text-2xl:   1.5rem;     /* 24px */
  --text-3xl:   1.875rem;   /* 30px */
  --text-4xl:   2.5rem;     /* 40px */
  --text-5xl:   3rem;       /* 48px */
}

/* ------------------------------------------------------------
   3. RESET + BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
  font-weight: 400;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

button {
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
}

input,
textarea,
select {
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--brown);
}

p {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   4. LAYOUT — CONTAINER
   ------------------------------------------------------------ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ------------------------------------------------------------
   5. SECTION SPACING
   ------------------------------------------------------------ */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

/* ------------------------------------------------------------
   6. SECTION TITLES
   ------------------------------------------------------------ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header.right {
  text-align: right;
}

.section-header.right .section-title-line {
  margin: 0;
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

.section-header.right .section-subtitle {
  margin: 0 0 16px;
}

.section-title-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--amber);
  margin: 0 auto;
  border-radius: 2px;
}

/* ------------------------------------------------------------
   7. STICKY HEADER
   ------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(43, 27, 14, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-lat {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: .05em;
}

.logo-fa {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber-dark);
}

.logo-accent {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  margin-top: 3px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--transition);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--brown);
  border-color: var(--amber);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  font-size: var(--text-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  direction: ltr;
  text-decoration: none;
  transition: color var(--transition);
}

.header-phone:hover {
  color: var(--brown);
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.cart-btn:hover {
  color: var(--amber-dark);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--amber);
  color: var(--brown);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown);
  padding: 8px;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.menu-toggle:hover {
  color: var(--amber-dark);
}

/* ------------------------------------------------------------
   8. HERO SECTION
   ------------------------------------------------------------ */
.hero {
  background: var(--cream);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 0;
  min-height: 600px;
}

.hero-image {
  height: 600px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  padding: 64px 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-light);
  color: var(--amber-dark);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--brown);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-body);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--amber-dark);
  display: block;
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ------------------------------------------------------------
   9. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--amber);
  color: var(--brown);
  border-color: var(--amber);
}

.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}

.btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: var(--text-sm);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ------------------------------------------------------------
   10. TRUST STRIP
   ------------------------------------------------------------ */
.trust-strip {
  background: var(--brown);
  padding: 56px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 163, 115, .15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.trust-body {
  flex: 1;
}

.trust-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.trust-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   11. PRODUCTS SECTION
   ------------------------------------------------------------ */
.products-section {
  background: var(--cream);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

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

.product-cat {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--amber);
  color: var(--brown);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brown);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-body {
  padding: 20px;
}

.product-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.5;
}

.product-price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--amber-dark);
  margin-bottom: 16px;
}

.product-price-old {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 8px;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.add-to-cart {
  flex: 1;
}

.view-product {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-product:hover {
  border-color: var(--brown);
  color: var(--brown);
}

/* Products filter tabs */
.products-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--amber);
  color: var(--brown);
  border-color: var(--amber);
  font-weight: 600;
}

/* ------------------------------------------------------------
   12. CTA / CUSTOM ORDER BANNER
   ------------------------------------------------------------ */
.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 27, 14, .72);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 60px 20px;
}

.cta-banner-title {
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-banner-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, .8);
  margin-bottom: 36px;
}

.cta-banner .btn-primary {
  background: var(--amber);
  font-size: var(--text-lg);
  padding: 16px 40px;
}

.cta-banner .btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
}

/* ------------------------------------------------------------
   13. GALLERY SECTION
   ------------------------------------------------------------ */
.gallery-section {
  background: var(--cream-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

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

.gallery-item-wide {
  grid-column: span 2;
}

/* ------------------------------------------------------------
   14. ABOUT SECTION
   ------------------------------------------------------------ */
.about-section {
  background: var(--cream-dark);
}

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

.about-content {
  order: 2;
}

.about-media {
  order: 1;
}

.about-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
  display: block;
}

.about-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-text {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-stat {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.about-stat-num {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--amber-dark);
  display: block;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.about-photos {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 480px;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------------------------------------------------------------
   15. BLOG / ARTICLES SECTION
   ------------------------------------------------------------ */
.blog-section {
  background: var(--cream);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

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

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.blog-date {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.blog-category {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--amber-dark);
  background: var(--amber-light);
  padding: 2px 8px;
  border-radius: 100px;
}

.blog-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  transition: color var(--transition);
}

.blog-title:hover {
  color: var(--amber-dark);
}

.blog-excerpt {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.7;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--amber-dark);
  text-decoration: none;
  margin-top: 16px;
  transition: gap var(--transition), color var(--transition);
}

.blog-read-more:hover {
  color: var(--brown);
  gap: 10px;
}

/* ------------------------------------------------------------
   16. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--brown);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Footer brand column */
.footer-logo-lat {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  display: block;
}

.footer-logo-fa {
  font-size: 0.875rem;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: all var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--amber);
  color: var(--brown);
}

/* Footer columns */
.footer-heading {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* Contact column */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .65);
}

.footer-contact-item svg {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-phone {
  direction: ltr;
  display: inline-block;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-text {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ------------------------------------------------------------
   17. MOBILE MENU OVERLAY
   ------------------------------------------------------------ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.mobile-menu-close:hover {
  color: var(--amber-dark);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  display: block;
}

.mobile-nav a:hover {
  color: var(--amber-dark);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 32px;
}

.mobile-menu-phone {
  font-size: var(--text-base);
  color: var(--text-muted);
  direction: ltr;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  text-decoration: none;
}

/* ------------------------------------------------------------
   18. FORMS
   ------------------------------------------------------------ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
  font-size: var(--text-base);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  direction: rtl;
}

.form-control:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 163, 115, .15);
}

.form-control::placeholder {
  color: var(--text-muted);
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237A6250' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  padding-left: 36px;
}

/* ------------------------------------------------------------
   19. BREADCRUMB
   ------------------------------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: 16px 0;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.breadcrumb-sep {
  color: var(--border);
}

/* ------------------------------------------------------------
   20. PAGINATION
   ------------------------------------------------------------ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-body);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
  text-decoration: none;
}

.page-btn:hover,
.page-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--brown);
  font-weight: 700;
}

.page-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

/* ------------------------------------------------------------
   21. BADGES & CHIPS
   ------------------------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.5;
}

.badge-amber {
  background: var(--amber-light);
  color: var(--amber-dark);
}

.badge-brown {
  background: var(--brown);
  color: var(--white);
}

.badge-green {
  background: #e6f4ea;
  color: #2d6a4f;
}

/* ------------------------------------------------------------
   22. ALERT / NOTIFICATION
   ------------------------------------------------------------ */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  border: 1.5px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-success {
  background: #f0faf4;
  border-color: #b7dfc8;
  color: #1e5c3a;
}

.alert-warning {
  background: #fefaf0;
  border-color: #f5d68a;
  color: #7a4f00;
}

.alert-error {
  background: #fef2f2;
  border-color: #f5c6c6;
  color: #7a1919;
}

/* ------------------------------------------------------------
   23. TESTIMONIALS / REVIEWS
   ------------------------------------------------------------ */
.testimonials-section {
  background: var(--cream-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--amber);
}

.testimonial-text {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  font-weight: 700;
  font-size: var(--text-base);
  overflow: hidden;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brown);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ------------------------------------------------------------
   24. PRODUCT DETAIL PAGE
   ------------------------------------------------------------ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.product-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 12px;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: border-color var(--transition);
}

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

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

.product-detail-info .product-cat {
  position: static;
  display: inline-flex;
  margin-bottom: 12px;
}

.product-detail-name {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.3;
}

.product-detail-price {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--amber-dark);
  margin-bottom: 24px;
}

.product-detail-price sup {
  font-size: var(--text-lg);
  vertical-align: super;
}

.product-detail-desc {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 28px;
}

.product-options {
  margin-bottom: 24px;
}

.product-options-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
  display: block;
}

.color-options,
.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.color-opt {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}

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

.size-opt {
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  background: var(--white);
  transition: all var(--transition);
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
}

.size-opt.active,
.size-opt:hover {
  border-color: var(--amber);
  background: var(--amber-light);
  color: var(--brown);
  font-weight: 700;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 24px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border: none;
  cursor: pointer;
  color: var(--brown);
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.qty-btn:hover {
  background: var(--amber-light);
}

.qty-input {
  width: 56px;
  height: 40px;
  border: none;
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  text-align: center;
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--brown);
  outline: none;
  background: var(--white);
}

/* ------------------------------------------------------------
   25. CART PAGE
   ------------------------------------------------------------ */
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: flex-start;
}

.cart-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-price {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--amber-dark);
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 4px;
  display: flex;
}

.cart-item-remove:hover {
  color: #c0392b;
}

.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.cart-summary-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--text-body);
  margin-bottom: 12px;
}

.cart-summary-row.total {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--brown);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

.cart-summary-row.total .price {
  color: var(--amber-dark);
}

.coupon-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.coupon-form .form-control {
  flex: 1;
}

/* ------------------------------------------------------------
   26. TABS (Product detail, etc.)
   ------------------------------------------------------------ */
.tabs {
  border-bottom: 1.5px solid var(--border);
  display: flex;
  gap: 0;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1.5px;
}

.tab-btn:hover {
  color: var(--brown);
}

.tab-btn.active {
  color: var(--brown);
  border-bottom-color: var(--amber);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ------------------------------------------------------------
   27. CARD COMPONENT (Generic)
   ------------------------------------------------------------ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--brown);
}

.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

/* ------------------------------------------------------------
   28. SKELETON / LOADING
   ------------------------------------------------------------ */
.skeleton {
  background: linear-gradient(90deg, var(--cream-dark) 25%, var(--border) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ------------------------------------------------------------
   29. DIVIDER
   ------------------------------------------------------------ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.divider-amber {
  background: var(--amber-light);
}

/* ------------------------------------------------------------
   30. SCROLL-TO-TOP BUTTON
   ------------------------------------------------------------ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   31. WHATSAPP / FLOAT BUTTON
   ------------------------------------------------------------ */
.float-whatsapp {
  position: fixed;
  bottom: 88px;
  left: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  text-decoration: none;
  z-index: 50;
}

.float-whatsapp:hover {
  background: #128c5e;
  transform: scale(1.1);
}

/* ------------------------------------------------------------
   32. PAGE HERO (Inner Pages)
   ------------------------------------------------------------ */
.page-hero {
  background: var(--cream-dark);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.page-hero-title {
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 8px;
}

.page-hero-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
}

/* ------------------------------------------------------------
   33. SIDEBAR / FILTERS
   ------------------------------------------------------------ */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.sidebar-section {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.sidebar-section:last-child {
  border-bottom: none;
}

.sidebar-heading {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--text-body);
  padding: 5px 0;
  transition: color var(--transition);
}

.filter-check:hover {
  color: var(--brown);
}

.filter-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--amber);
  cursor: pointer;
}

/* Price range */
.price-range {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-range input {
  flex: 1;
  padding: 8px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--text);
}

.price-range input:focus {
  border-color: var(--amber);
}

/* ------------------------------------------------------------
   34. CONTACT PAGE
   ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  flex-shrink: 0;
}

.contact-info-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.7;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* Map embed */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* ------------------------------------------------------------
   35. RESPONSIVE — 768px BREAKPOINT
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  /* Header */
  .nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 280px;
    order: -1;
  }

  .hero-content {
    padding: 36px 20px;
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  /* Trust strip */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* CTA banner */
  .cta-banner-title {
    font-size: var(--text-3xl);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photos {
    height: 280px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
  }

  .about-photo:last-child {
    display: none;
  }

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

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Layout */
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 48px 0;
  }

  /* Product detail */
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Cart */
  .cart-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  /* Shop */
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Section titles */
  .section-title {
    font-size: var(--text-3xl);
  }
}

/* ------------------------------------------------------------
   36. RESPONSIVE — 480px BREAKPOINT
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .hero-title {
    font-size: var(--text-2xl);
  }

  .section-title {
    font-size: var(--text-2xl);
  }

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .contact-form-card {
    padding: 24px 16px;
  }

  .cart-item {
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    padding: 16px;
  }

  .cart-item-image {
    width: 64px;
    height: 64px;
  }

  .footer-bottom {
    text-align: center;
  }

  .scroll-top,
  .float-whatsapp {
    left: 16px;
    bottom: 16px;
  }

  .float-whatsapp {
    bottom: 72px;
  }
}

/* ------------------------------------------------------------
   37. UTILITY CLASSES
   ------------------------------------------------------------ */

/* Text alignment */
.text-center  { text-align: center !important; }
.text-right   { text-align: right !important; }
.text-left    { text-align: left !important; }

/* Display */
.d-flex       { display: flex !important; }
.d-grid       { display: grid !important; }
.d-block      { display: block !important; }
.d-none       { display: none !important; }
.d-inline     { display: inline !important; }
.d-inline-flex { display: inline-flex !important; }

/* Flex helpers */
.align-center   { align-items: center !important; }
.align-start    { align-items: flex-start !important; }
.align-end      { align-items: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-end    { justify-content: flex-end !important; }
.flex-wrap      { flex-wrap: wrap !important; }
.flex-col       { flex-direction: column !important; }
.flex-1         { flex: 1 !important; }

/* Gaps */
.gap-1  { gap: 0.25rem !important; }
.gap-2  { gap: 0.5rem !important; }
.gap-3  { gap: 0.75rem !important; }
.gap-4  { gap: 1rem !important; }
.gap-6  { gap: 1.5rem !important; }
.gap-8  { gap: 2rem !important; }

/* Margin top */
.mt-1  { margin-top: 0.25rem !important; }
.mt-2  { margin-top: 0.5rem !important; }
.mt-3  { margin-top: 0.75rem !important; }
.mt-4  { margin-top: 1rem !important; }
.mt-6  { margin-top: 1.5rem !important; }
.mt-8  { margin-top: 2rem !important; }
.mt-12 { margin-top: 3rem !important; }
.mt-auto { margin-top: auto !important; }

/* Margin bottom */
.mb-1  { margin-bottom: 0.25rem !important; }
.mb-2  { margin-bottom: 0.5rem !important; }
.mb-3  { margin-bottom: 0.75rem !important; }
.mb-4  { margin-bottom: 1rem !important; }
.mb-6  { margin-bottom: 1.5rem !important; }
.mb-8  { margin-bottom: 2rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mb-auto { margin-bottom: auto !important; }

/* Margin horizontal */
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Padding */
.p-4   { padding: 1rem !important; }
.p-6   { padding: 1.5rem !important; }
.p-8   { padding: 2rem !important; }
.px-4  { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-4  { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-8  { padding-top: 2rem !important; padding-bottom: 2rem !important; }

/* Width */
.w-full   { width: 100% !important; }
.max-w-lg { max-width: 640px !important; }
.max-w-xl { max-width: 800px !important; }

/* Border radius */
.rounded    { border-radius: var(--radius-sm) !important; }
.rounded-lg { border-radius: var(--radius) !important; }
.rounded-full { border-radius: 9999px !important; }

/* Text sizes */
.text-xs   { font-size: var(--text-xs) !important; }
.text-sm   { font-size: var(--text-sm) !important; }
.text-base { font-size: var(--text-base) !important; }
.text-lg   { font-size: var(--text-lg) !important; }
.text-xl   { font-size: var(--text-xl) !important; }
.text-2xl  { font-size: var(--text-2xl) !important; }
.text-3xl  { font-size: var(--text-3xl) !important; }

/* Font weights */
.font-normal  { font-weight: 400 !important; }
.font-medium  { font-weight: 500 !important; }
.font-bold    { font-weight: 700 !important; }
.font-black   { font-weight: 900 !important; }

/* Colors */
.text-brown   { color: var(--brown) !important; }
.text-amber   { color: var(--amber) !important; }
.text-amber-dark { color: var(--amber-dark) !important; }
.text-muted   { color: var(--text-muted) !important; }
.text-white   { color: var(--white) !important; }

/* Background */
.bg-cream     { background-color: var(--cream) !important; }
.bg-cream-dark { background-color: var(--cream-dark) !important; }
.bg-white     { background-color: var(--white) !important; }
.bg-brown     { background-color: var(--brown) !important; }
.bg-amber     { background-color: var(--amber) !important; }
.bg-amber-light { background-color: var(--amber-light) !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }

/* Position */
.relative { position: relative !important; }
.absolute { position: absolute !important; }

/* Object fit */
.object-cover { object-fit: cover !important; }

/* Opacity */
.opacity-0  { opacity: 0 !important; }
.opacity-50 { opacity: .5 !important; }

/* Shadow */
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* Border */
.border       { border: 1px solid var(--border) !important; }
.border-top   { border-top: 1px solid var(--border) !important; }
.border-bottom { border-bottom: 1px solid var(--border) !important; }

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

/* ------------------------------------------------------------
   38. PRINT STYLES
   ------------------------------------------------------------ */
@media print {
  .header,
  .mobile-menu,
  .scroll-top,
  .float-whatsapp,
  .footer-socials,
  .hero-actions,
  .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding: 24px 0;
  }

  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
