/* ==========================================================================
   عسل الخصاونة - ملف التصميم الشامل
   Khasawneh Honey - Premium Modern Styling System (RTL)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Tajawal:wght@300;400;500;700;900&display=swap');

:root {
  /* Brand Honey Colors */
  --honey-primary: #D97706;
  --honey-primary-hover: #B45309;
  --honey-light: #FDE68A;
  --honey-glow: #F59E0B;
  --honey-amber: #92400E;
  --honey-dark: #451A03;
  --honey-gold: #FBBF24;
  --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #B45309 100%);
  --gold-gradient-shine: linear-gradient(135deg, #FDE68A 0%, #F59E0B 50%, #D97706 100%);
  --dark-gradient: linear-gradient(180deg, #1C1917 0%, #0C0A09 100%);
  --card-gradient: linear-gradient(145deg, #FFFFFF 0%, #FFFDF7 100%);

  /* Neutrals & Surfaces */
  --bg-main: #FAF7F2;
  --bg-warm: #FFFBEB;
  --bg-card: #FFFFFF;
  --bg-dark: #1C1917;
  --text-main: #292524;
  --text-muted: #78716C;
  --text-light: #A8A29E;
  --text-white: #FFFFFF;
  --border-light: #F3E8D6;
  --border-gold: rgba(217, 119, 6, 0.35);

  /* Functional Colors */
  --whatsapp-color: #25D366;
  --whatsapp-hover: #1EBE5D;
  --success: #10B981;
  --danger: #EF4444;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(180, 83, 9, 0.06);
  --shadow-md: 0 8px 24px rgba(180, 83, 9, 0.10);
  --shadow-lg: 0 16px 40px rgba(180, 83, 9, 0.15);
  --shadow-gold: 0 8px 25px rgba(245, 158, 11, 0.35);
  --shadow-card: 0 10px 30px -5px rgba(69, 26, 3, 0.08);

  /* Typography */
  --font-heading: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--honey-dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Badges & Tags */
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-gradient-shine);
  color: var(--honey-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.badge-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--honey-primary);
  color: var(--honey-primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(253, 230, 138, 0.25);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-header .sub-title {
  color: var(--honey-primary);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-header .main-title {
  font-size: 2.3rem;
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.section-header .main-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
}

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

/* ==========================================================================
   Top Announcement Bar & Navbar
   ========================================================================== */
.announcement-bar {
  background: var(--dark-gradient);
  color: var(--honey-light);
  font-size: 0.88rem;
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.announcement-bar .contact-quick {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.announcement-bar a {
  color: var(--honey-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.announcement-bar a:hover {
  color: #FFFFFF;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(69, 26, 3, 0.05);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--honey-gold);
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.25);
  object-fit: cover;
}

.brand-logo .brand-text h1 {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--honey-dark);
  line-height: 1.1;
}

.brand-logo .brand-text span {
  font-size: 0.8rem;
  color: var(--honey-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--honey-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--honey-primary);
  transition: var(--transition-fast);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

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

.cart-btn {
  position: relative;
  background: var(--bg-warm);
  border: 1px solid var(--border-gold);
  color: var(--honey-dark);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.cart-btn:hover {
  background: var(--honey-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.cart-count {
  position: absolute;
  top: -4px;
  left: -4px;
  background: var(--danger);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  font-size: 0.95rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.45);
  background: linear-gradient(135deg, #F59E0B 0%, #B45309 100%);
}

.btn-whatsapp-outline {
  background: transparent;
  color: var(--whatsapp-color);
  border: 2px solid var(--whatsapp-color);
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-whatsapp-outline:hover {
  background: var(--whatsapp-color);
  color: #FFFFFF;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--honey-dark);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 50%, #FDE68A 100%);
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(217, 119, 6, 0.08) 2px, transparent 2px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  color: var(--honey-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3.2rem;
  color: var(--honey-dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 900;
}

.hero-content h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-content .hero-lead {
  font-size: 1.25rem;
  color: #57534E;
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.1rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(217, 119, 6, 0.2);
  padding-top: 2rem;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-feat-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--honey-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-feat-item .text h4 {
  font-size: 0.95rem;
  color: var(--honey-dark);
}

.hero-feat-item .text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
  text-align: center;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
  transform: perspective(1000px) rotateY(-3deg);
  transition: var(--transition-slow);
}

.hero-image-card:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.floating-guarantee-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #FFFFFF;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid var(--border-gold);
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.floating-guarantee-badge .badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

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

/* ==========================================================================
   Trust Strip Section
   ========================================================================== */
.trust-strip {
  background: #FFFFFF;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-main);
  transition: var(--transition-fast);
}

.trust-card:hover {
  background: var(--bg-warm);
  transform: translateY(-3px);
}

.trust-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Interactive Quiz Wizard (مستشار العسل)
   ========================================================================== */
.quiz-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, #FFFBEB 100%);
}

.quiz-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-gold);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 6px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--gold-gradient);
  transition: width 0.4s ease;
}

.quiz-question-title {
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
  text-align: center;
  color: var(--honey-dark);
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quiz-option-btn {
  background: var(--bg-main);
  border: 2px solid var(--border-light);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: right;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quiz-option-btn:hover {
  border-color: var(--honey-primary);
  background: #FFFBEB;
  transform: translateX(-4px);
}

.quiz-result-card {
  text-align: center;
  display: none;
  animation: fadeIn 0.4s ease;
}

.quiz-result-card .result-icon {
  font-size: 3rem;
  color: var(--honey-primary);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Product Catalog Section
   ========================================================================== */
.products-section {
  padding: 5.5rem 0;
  background: var(--bg-main);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--honey-dark);
  color: #FFFFFF;
  border-color: var(--honey-dark);
  box-shadow: var(--shadow-sm);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.2rem;
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.product-badge-float {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.product-img-wrap {
  position: relative;
  height: 270px;
  background: #F5EFEB;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.product-tag {
  color: var(--honey-primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #F59E0B;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--honey-dark);
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  flex-grow: 1;
}

.product-weights-selector {
  margin-bottom: 1.2rem;
}

.weights-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  display: block;
}

.weights-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.weight-chip {
  background: var(--bg-main);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.weight-chip:hover {
  border-color: var(--honey-primary);
}

.weight-chip.active {
  background: var(--honey-dark);
  color: #FFFFFF;
  border-color: var(--honey-dark);
}

.product-pricing-box {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.current-price {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--honey-primary);
  font-family: var(--font-heading);
}

.current-price .currency {
  font-size: 0.95rem;
  font-weight: 700;
  margin-right: 0.2rem;
}

.original-price {
  font-size: 1.05rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.btn-add-cart {
  background: var(--bg-warm);
  border: 1.5px solid var(--honey-primary);
  color: var(--honey-primary);
  font-weight: 700;
  padding: 0.75rem 0.6rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.btn-add-cart:hover {
  background: var(--honey-primary);
  color: #FFFFFF;
}

.btn-buy-now {
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.75rem 0.6rem;
  border-radius: var(--radius-md);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.btn-buy-now:hover {
  background: var(--honey-amber);
}

/* ==========================================================================
   Quality & Lab Guarantee Section
   ========================================================================== */
.guarantee-section {
  padding: 5.5rem 0;
  background: var(--dark-gradient);
  color: #FFFFFF;
  position: relative;
}

.guarantee-section .section-header .main-title {
  color: #FFFFFF;
}

.guarantee-section .section-header .desc {
  color: var(--text-light);
}

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

.guarantee-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: var(--transition-normal);
}

.guarantee-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
  border-color: var(--honey-gold);
}

.guarantee-card .icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.4rem;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
}

.guarantee-card h3 {
  color: var(--honey-light);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.guarantee-card p {
  color: #D6D3D1;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Customer Reviews Section
   ========================================================================== */
.reviews-section {
  padding: 5.5rem 0;
  background: #FFFFFF;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

.review-card {
  background: var(--bg-main);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.98rem;
  color: #44403C;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  color: var(--honey-dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 5.5rem 0;
  background: var(--bg-warm);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--honey-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.4rem 1.6rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--honey-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: var(--honey-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.6rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 1.6rem 1.4rem 1.6rem;
  max-height: 300px;
}

/* ==========================================================================
   Shopping Cart Drawer (Slide-out)
   ========================================================================== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  left: -480px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #FFFFFF;
  z-index: 2001;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-overlay.active .cart-drawer {
  left: 0;
}

.cart-header {
  padding: 1.5rem;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.close-cart-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-empty-state i {
  font-size: 3.5rem;
  color: var(--honey-light);
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--honey-dark);
}

.cart-item-weight {
  font-size: 0.8rem;
  color: var(--honey-primary);
  margin-bottom: 0.4rem;
}

.cart-item-price {
  font-weight: 800;
  color: var(--text-main);
  font-size: 0.95rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  background: var(--bg-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.qty-btn:hover {
  background: var(--honey-primary);
  color: #FFFFFF;
}

.item-qty {
  font-size: 0.88rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.cart-remove-item {
  background: transparent;
  border: none;
  color: var(--danger);
  cursor: pointer;
  margin-right: auto;
  font-size: 0.85rem;
}

.cart-footer {
  padding: 1.5rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--honey-dark);
  padding-top: 0.6rem;
  border-top: 1px dashed var(--border-gold);
  margin-bottom: 1.2rem;
}

.cart-checkout-btn {
  width: 100%;
  padding: 0.9rem;
  font-size: 1.05rem;
  justify-content: center;
}

/* ==========================================================================
   Checkout & Order Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--bg-main);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
}

.form-group {
  margin-bottom: 1.2rem;
  text-align: right;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--honey-dark);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  background: var(--bg-main);
}

.form-control:focus {
  outline: none;
  border-color: var(--honey-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

/* ==========================================================================
   Floating Action Buttons & Quick CTAs
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: var(--transition-normal);
  color: #FFFFFF;
  position: relative;
}

.float-whatsapp {
  background: var(--whatsapp-color);
  animation: pulseGreen 2.5s infinite;
}

.float-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.1);
}

.float-phone {
  background: var(--gold-gradient);
}

.float-phone:hover {
  transform: scale(1.1);
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--honey-dark);
  color: #FFFFFF;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-right: 4px solid var(--honey-gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  animation: toastSlide 0.3s ease;
}

@keyframes toastSlide {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #141210;
  color: #D6D3D1;
  padding: 4.5rem 0 2rem;
  border-top: 3px solid var(--honey-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--honey-gold);
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

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

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #A8A29E;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--honey-gold);
  padding-right: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--honey-gold);
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #78716C;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content .hero-lead {
    margin: 0 auto 2rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guarantee-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .announcement-bar .contact-quick {
    display: none;
  }
  .announcement-bar {
    justify-content: center;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-features {
    grid-template-columns: 1fr;
    text-align: right;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .floating-actions {
    bottom: 18px;
    right: 18px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}
