/* ============================================================
   HABESHA THEME — Inspired by habeshadress.net
   Warm Ivory · Gold Accents · Serif Headings · Clean Cards
   ============================================================ */

/* Google Fonts loaded via <link> in HTML head for non-blocking load.
   Fallback stack works even if Fonts CDN is unavailable on server. */

/* ===== CSS VARIABLES — HABESHA PALETTE ===== */
:root {
  /* Backgrounds */
  --bg-primary: #faf8f4;
  --bg-secondary: #f4f0e8;
  --bg-tertiary: #ede7d9;
  --bg-card: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-dark2: #2a2218;

  /* Accent — Warm Gold */
  --accent-primary: #c9a96e;
  --accent-dark: #8b6b34;
  --accent-light: #e8c98a;
  --accent-gradient: linear-gradient(135deg, #c9a96e, #e8c98a);
  --accent-gradient-hover: linear-gradient(135deg, #b8923a, #d4a855);
  --accent-glow: rgba(201, 169, 110, 0.35);

  /* Announcement bar */
  --announce-bg: #1a1a1a;
  --announce-text: #f4f0e8;

  /* Text */
  --text-primary: #1a1a1a;
  --text-secondary: #5a5040;
  --text-muted: #9a8f80;
  --text-light: #ffffff;

  /* Borders & Shadows */
  --border-color: #e0d8cc;
  --border-hover: #c9a96e;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 6px 24px rgba(201, 169, 110, 0.3);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
  --transition-slow: 0.6s ease;
  --transition-short: 0.2s ease;
}

/* ===== GLOBAL RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Override body — remove dark glassmorphism */
body {
  font-family: "Inter", "Lato", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary) !important;
  background-image: none !important;
  background-attachment: initial !important;
  color: var(--text-primary) !important;
  -webkit-font-smoothing: antialiased;
}

/* ===== HOMEPAGE WHEAT-STROKE BACKGROUND ===== */
/* Fixed positioned canvas behind all content with a real SVG wheat pattern */
.wheat-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* SVG: diagonal wheat stalk + grain branches pattern */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg stroke='%23c9a96e' fill='none' stroke-linecap='round'%3E%3C!-- Main stalk --%3E%3Cline x1='15' y1='85' x2='85' y2='15' stroke-width='1.4' stroke-opacity='0.18'/%3E%3C!-- Grain heads (short branches off stalk) --%3E%3Cline x1='45' y1='55' x2='55' y2='42' stroke-width='0.9' stroke-opacity='0.14'/%3E%3Cline x1='55' y1='45' x2='65' y2='32' stroke-width='0.9' stroke-opacity='0.14'/%3E%3Cline x1='65' y1='35' x2='75' y2='22' stroke-width='0.9' stroke-opacity='0.12'/%3E%3Cline x1='35' y1='65' x2='45' y2='52' stroke-width='0.9' stroke-opacity='0.12'/%3E%3C!-- Left branch tips (grain seeds) --%3E%3Cline x1='45' y1='55' x2='38' y2='46' stroke-width='0.7' stroke-opacity='0.10'/%3E%3Cline x1='55' y1='45' x2='48' y2='36' stroke-width='0.7' stroke-opacity='0.10'/%3E%3Cline x1='65' y1='35' x2='58' y2='26' stroke-width='0.7' stroke-opacity='0.09'/%3E%3C!-- Secondary offset stalk (top-right corner) --%3E%3Cline x1='60' y1='100' x2='100' y2='60' stroke-width='1.0' stroke-opacity='0.09'/%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke-width='1.0' stroke-opacity='0.09'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 100px 100px;
  background-color: #fdf9f0;
}

/* Warm radial glows over the wheat canvas */
.wheat-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 40%, rgba(232, 201, 138, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(201, 169, 110, 0.09) 0%, transparent 70%),
    radial-gradient(ellipse 70% 30% at 50% 5%, rgba(245, 228, 180, 0.07) 0%, transparent 70%);
}

/* Make sections semi-transparent so wheat canvas shows through */
body.home-page .shop_section {
  background: rgba(250, 248, 244, 0.88) !important;
  position: relative;
  z-index: 1;
}

body.home-page .about_section {
  background: rgba(244, 240, 232, 0.92) !important;
  position: relative;
  z-index: 1;
}

body.home-page .blog_section {
  background: rgba(250, 248, 244, 0.88) !important;
  position: relative;
  z-index: 1;
}

body.home-page .client_section {
  background: rgba(244, 240, 232, 0.90) !important;
  position: relative;
  z-index: 1;
}

body.home-page .category-tiles-section {
  background: rgba(244, 240, 232, 0.80) !important;
  position: relative;
  z-index: 1;
}

body.home-page .offer_section {
  background: rgba(250, 248, 244, 0.85) !important;
  position: relative;
  z-index: 1;
}

body.home-page .info_section {
  position: relative;
  z-index: 1;
}

body.home-page .footer_section {
  position: relative;
  z-index: 1;
}

body.home-page .header_section {
  z-index: 1000 !important;
}

/* Remove animated mesh overlay */
body::before,
body::after {
  display: none !important;
}

/* Remove floating shapes */
.floating-shapes,
.shape,
.hero-orb {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif !important;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

section,
header,
footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--announce-bg);
  color: var(--announce-text);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.announcement-bar a {
  color: var(--accent-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== HEADER / NAVIGATION ===== */
.header_section {
  position: sticky !important;
  top: 0 !important;
  width: 100%;
  z-index: 1000;
  padding: 0 !important;
  background: #ffffff !important;
  border-bottom: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow-sm) !important;
  backdrop-filter: none !important;
  transition: box-shadow 0.3s ease;
}

.header_section.scrolled {
  box-shadow: var(--shadow-md) !important;
}

/* Top nav row */
.habesha-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand span {
  font-family: "Playfair Display", serif !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: var(--text-primary) !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
}

.navbar-brand span::after {
  display: none !important;
}

/* Horizontal nav links */
.habesha-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.habesha-nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.habesha-nav-links a:hover,
.habesha-nav-links a.active {
  color: var(--text-primary);
  border-bottom-color: var(--accent-primary);
}

/* Nav right actions */
.habesha-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== UTILITY: hide on extra-small (mobile) ===== */
@media (max-width: 767px) {
  .d-none-xs {
    display: none !important;
  }
}

/* ===== BOOTSTRAP HAMBURGER TOGGLER ===== */
.zala-toggler {
  display: none;
  /* hidden on desktop */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  outline: none;
}

.zala-toggler .s-1,
.zala-toggler .s-2,
.zala-toggler .s-3 {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .zala-toggler {
    display: flex;
  }
}

/* ===== BOOTSTRAP COLLAPSE MOBILE NAV ===== */
.zala-nav-collapse {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.zala-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.zala-mobile-nav li a {
  display: block;
  padding: 12px 24px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: none !important;
  transition: background 0.2s, color 0.2s;
}

.zala-mobile-nav li a:hover {
  background: var(--bg-secondary);
  color: var(--text-primary) !important;
}

.zala-mobile-nav .divider-li {
  border-top: 1px solid var(--border-color);
  margin-top: 8px;
  padding-top: 4px;
}

.zala-mobile-nav .divider-li a {
  color: var(--accent-dark) !important;
}

/* Admin / employee nav links (keep subtle on white bg) */
.admin-nav-link {
  font-size: 0.75rem !important;
}


/* ===== HERO / SLIDER SECTION ===== */
.slider_section {
  min-height: 80vh !important;
  overflow: hidden;
  position: relative;
}

.slider_section .slider_bg_box img {
  filter: brightness(0.42) saturate(0.9) !important;
  animation: none !important;
  transform: none !important;
}

/* Remove purple grid lines from hero */
.slider_section::before {
  display: none !important;
}

/* Override hero overlay to warm dark */
.slider_section .slider_bg_box::after {
  background:
    linear-gradient(180deg, rgba(26, 18, 8, 0.6) 0%, rgba(26, 18, 8, 0.3) 40%, rgba(26, 18, 8, 0.75) 100%),
    linear-gradient(90deg, rgba(201, 169, 110, 0.08) 0%, transparent 60%) !important;
}

.slider_section .detail-box {
  padding: 80px 0 60px !important;
}

.slider_section .detail-box h1 {
  font-family: "Playfair Display", serif !important;
  font-size: 4rem !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  animation: habeshaFadeUp 1s ease-out !important;
}

.slider_section .detail-box h1 span.highlight {
  background: linear-gradient(135deg, #e8c98a, #c9a96e) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.slider_section .detail-box p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
}

.slider_section .detail-box .slider-link {
  background: var(--accent-primary) !important;
  background-image: none !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  border-radius: 4px !important;
  box-shadow: var(--shadow-gold) !important;
  border: none !important;
  padding: 16px 42px !important;
}

.slider_section .detail-box .slider-link::before {
  background: var(--accent-light) !important;
  border-radius: 4px !important;
}

.slider_section .detail-box .slider-link:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.45) !important;
}

@keyframes habeshaFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTION HEADINGS ===== */
.heading_container h2 {
  font-family: "Playfair Display", serif !important;
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.heading_container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-primary);
  border-radius: 2px;
}

.heading_center h2::after {
  left: 50%;
  transform: translateX(-50%) !important;
}

/* ===== SHOP / PRODUCTS SECTION ===== */
.shop_section {
  background: var(--bg-primary) !important;
  padding: 80px 0;
}

.shop_section .box {
  background: var(--bg-card) !important;
  backdrop-filter: none !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden;
  margin-bottom: 28px;
  transition: all 0.3s ease !important;
  position: relative;
}

.shop_section .box::before {
  display: none !important;
}

/* Remove "View Details" pseudo-element from dark theme */
.shop_section .box::after {
  content: "" !important;
  display: none !important;
}

.shop_section .box:hover {
  transform: translateY(-6px) !important;
  border-color: var(--border-hover) !important;
  box-shadow: var(--shadow-gold) !important;
}

.shop_section .box .img-box {
  padding: 0 !important;
  height: 280px !important;
  background: var(--bg-secondary) !important;
  overflow: hidden;
}

.shop_section .box .img-box img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
  filter: none !important;
}

.shop_section .box:hover .img-box img {
  transform: scale(1.06) !important;
  filter: none !important;
}

.shop_section .box .detail-box {
  padding: 18px 20px 16px !important;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  gap: 4px !important;
}

.shop_section .box .detail-box h6 {
  font-family: "Inter", sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  letter-spacing: 0 !important;
  text-transform: capitalize !important;
}

.shop_section .box .detail-box h6 span {
  color: var(--accent-dark) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

/* Badge "New" */
.shop_section .box .new span {
  background: var(--accent-primary) !important;
  background-image: none !important;
  color: #1a1a1a !important;
  border-radius: 3px !important;
  font-size: 0.65rem !important;
  box-shadow: none !important;
}

/* Buy btn */
.buy-btn {
  background: var(--text-primary) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  width: 100%;
  padding: 14px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}

.buy-btn:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== SERVICES SECTION REFINEMENT ===== */
.offer_section .box {
  position: relative;
  overflow: hidden;
}

.offer_section .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.offer_section .box .detail-box {
  position: relative;
  z-index: 2;
}

.offer_section .box h2 {
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Payment badge */
.payment-badge {
  background: var(--bg-secondary) !important;
  color: var(--text-secondary) !important;
  font-size: 0.72rem !important;
  padding: 6px 14px !important;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.telebirr-dot {
  background: var(--accent-primary) !important;
}

/* View all collections button */
.shop_section .btn-box a {
  background: transparent !important;
  border: 2px solid var(--text-primary) !important;
  color: var(--text-primary) !important;
  border-radius: 4px !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  padding: 13px 48px !important;
  transition: all 0.3s ease !important;
}

.shop_section .btn-box a::before {
  display: none !important;
}

.shop_section .btn-box a:hover {
  background: var(--text-primary) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
}

/* ===== CATEGORY TILES SECTION ===== */
.category-tiles-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.category-tiles-section .heading_container {
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}

.category-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 3/4;
}

.category-tile.wide {
  aspect-ratio: 4/3;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-tile:hover img {
  transform: scale(1.07);
}

.category-tile .tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 8, 0.1) 0%, rgba(26, 18, 8, 0.65) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
  transition: background 0.3s ease;
}

.category-tile:hover .tile-overlay {
  background: linear-gradient(180deg, rgba(26, 18, 8, 0.15) 0%, rgba(26, 18, 8, 0.78) 100%);
}

.category-tile .tile-label {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.category-tile .tile-cta {
  display: block;
  margin-top: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.category-tile:hover .tile-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BESPOKE / CUSTOM REQUEST SECTION ===== */
.offer_section {
  background: var(--bg-primary) !important;
}

.offer_section>.container {
  text-align: center;
}

.offer_section .heading_container h2 {
  color: var(--text-primary) !important;
}

.offer_section .heading_container p {
  color: var(--text-secondary) !important;
}

.offer_section .btn.btn-primary {
  background: var(--text-primary) !important;
  background-image: none !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  border: none !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  padding: 15px 40px !important;
  box-shadow: var(--shadow-md) !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
}

.offer_section .btn.btn-primary:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-gold) !important;
}

/* ===== SERVICES "OFFER" SECTION (IMAGE TILES) ===== */
.offer_section .box {
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  position: relative;
}

.offer_section .box img {
  filter: brightness(0.45) saturate(0.85) !important;
}

.offer_section .box:hover img {
  filter: brightness(0.32) saturate(0.7) !important;
}

.offer_section .box .detail-box {
  background: none !important;
}

.offer_section .box .detail-box h2 {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 1.5rem !important;
}

.offer_section .box .detail-box a {
  border-color: var(--accent-light) !important;
  color: var(--accent-light) !important;
}

.offer_section .box .detail-box a:hover {
  background: var(--accent-primary) !important;
  border-color: transparent !important;
  color: #1a1a1a !important;
  box-shadow: none !important;
}

/* ===== ABOUT SECTION ===== */
.about_section {
  background: var(--bg-secondary) !important;
}

.about_section::before {
  display: none !important;
}

.about_section .img-box {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md);
}

.about_section .img-box img {
  border-radius: var(--radius-md) !important;
}

/* Corner accent brackets — change to gold */
.about_section .img-box::before {
  border-top-color: var(--accent-primary) !important;
  border-left-color: var(--accent-primary) !important;
}

.about_section .img-box::after {
  border-bottom-color: var(--accent-primary) !important;
  border-right-color: var(--accent-primary) !important;
}

.about_section .detail-box p {
  color: var(--text-secondary) !important;
  line-height: 1.85;
}

.about_section .detail-box a {
  background: var(--text-primary) !important;
  background-image: none !important;
  border-radius: 4px !important;
  box-shadow: var(--shadow-md) !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
}

.about_section .detail-box a:hover {
  background: var(--accent-dark) !important;
  box-shadow: var(--shadow-gold) !important;
}

/* ===== BLOG SECTION ===== */
.blog_section {
  background: var(--bg-primary) !important;
}

.blog_section .box {
  background: var(--bg-card) !important;
  backdrop-filter: none !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-sm) !important;
}

.blog_section .box:hover {
  border-color: var(--border-hover) !important;
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-5px) !important;
}

.blog_section .box .img-box img {
  filter: none !important;
}

.blog_section .box:hover .img-box img {
  transform: scale(1.04);
  filter: brightness(0.9) !important;
}

.blog_section .box .blog_date {
  background: var(--accent-primary) !important;
  background-image: none !important;
  color: #1a1a1a !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  border-color: #ffffff !important;
}

.blog_section .box .detail-box h5 {
  color: var(--text-primary) !important;
  font-family: "Playfair Display", serif !important;
}

.blog_section .box .detail-box p {
  color: var(--text-secondary) !important;
}

.blog_section .box .detail-box a {
  color: var(--accent-dark) !important;
}

.blog_section .box .detail-box a:hover {
  color: var(--text-primary) !important;
}

/* ===== TESTIMONIALS SECTION ===== */
.client_section {
  background: var(--bg-secondary) !important;
}

.client_section::before {
  display: none !important;
}

.client_section .box {
  background: var(--bg-card) !important;
  backdrop-filter: none !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-sm) !important;
}

.client_section .box .img-box img {
  border: 2px solid var(--accent-primary) !important;
  background-image: none !important;
  box-shadow: none !important;
}

.client_section .box .detail-box .name h6 {
  color: var(--accent-dark) !important;
}

.client_section .box .detail-box p {
  color: var(--text-secondary) !important;
}

.client_section .box .detail-box i.fa-quote-left {
  color: var(--accent-primary) !important;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  background: var(--text-primary) !important;
  background-image: none !important;
  border-color: var(--text-primary) !important;
  color: #ffffff !important;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background: var(--accent-primary) !important;
  border-color: var(--accent-primary) !important;
  color: #1a1a1a !important;
}

/* ===== INFO / NEWSLETTER SECTION ===== */
.info_section {
  background: #2a2218 !important;
  color: #f4f0e8 !important;
}

.info_section h4 {
  color: var(--accent-light) !important;
  font-family: "Playfair Display", serif !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 18px !important;
}

.info_section p,
.info_section a {
  color: rgba(244, 240, 232, 0.75) !important;
}

.info_section a:hover {
  color: var(--accent-light) !important;
}

/* Newsletter form */
.info_section .info_form form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 4px;
  overflow: hidden;
}

.info_section .info_form input {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #f4f0e8 !important;
  border: none !important;
  padding: 14px 20px !important;
  border-radius: 0 !important;
  font-size: 0.9rem !important;
}

.info_section .info_form input::placeholder {
  color: rgba(244, 240, 232, 0.45);
}

.info_section .info_form button {
  background: var(--accent-primary) !important;
  border: none !important;
  color: #1a1a1a !important;
  padding: 14px 22px !important;
  border-radius: 0 !important;
  transition: background 0.25s ease !important;
}

.info_section .info_form button:hover {
  background: var(--accent-light) !important;
}

/* Social icons */
.info_section .social_box a {
  background: rgba(201, 169, 110, 0.15) !important;
  color: var(--accent-light) !important;
  border: 1px solid rgba(201, 169, 110, 0.25) !important;
  transition: background 0.25s ease !important;
}

.info_section .social_box a:hover {
  background: var(--accent-primary) !important;
  color: #1a1a1a !important;
}

/* Contact icons */
.info_section .info_contact a i {
  color: var(--accent-primary) !important;
}

/* Insta/collection thumbs */
.info_section .insta_box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.info_section .insta_box .img-box {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}

.info_section .insta_box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info_section .insta_box p {
  font-size: 0.85rem !important;
}

/* ===== FOOTER ===== */
.footer_section {
  background: #1a1202 !important;
  color: rgba(244, 240, 232, 0.5) !important;
  border-top: 1px solid rgba(201, 169, 110, 0.2) !important;
}

.footer_section p {
  color: rgba(244, 240, 232, 0.5) !important;
  font-size: 0.82rem !important;
}

/* ===== FLOATING ADMIN BUTTON ===== */
.admin-floating-link {
  background: var(--text-primary) !important;
  background-image: none !important;
  box-shadow: var(--shadow-md) !important;
  color: #ffffff !important;
}

.admin-floating-link:hover {
  background: var(--accent-dark) !important;
  transform: scale(1.1) !important;
}

/* ===== CART ICON FAB ===== */
.cart-btn-fab {
  background: var(--text-primary) !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-md) !important;
}

.cart-btn-fab:hover {
  background: var(--accent-dark) !important;
}

.cart-badge {
  background: var(--accent-primary) !important;
  color: #1a1a1a !important;
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
  background: #ffffff !important;
  color: var(--text-primary) !important;
}

.cart-header {
  background: var(--text-primary) !important;
  color: #ffffff !important;
  border-bottom: none !important;
}

.cart-header button {
  color: #ffffff !important;
}

.cart-item {
  border-bottom: 1px solid var(--border-color) !important;
}

.cart-item-name {
  color: var(--text-primary) !important;
}

.cart-item-price {
  color: var(--accent-dark) !important;
}

.cart-total {
  color: var(--text-primary) !important;
}

.checkout-btn {
  background: var(--text-primary) !important;
  background-image: none !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  border: none;
  transition: background 0.25s ease !important;
}

.checkout-btn:hover {
  background: var(--accent-dark) !important;
}

/* ===== PAYMENT / CHECKOUT MODALS ===== */
.payment-overlay {
  background: rgba(26, 18, 8, 0.75) !important;
}

.payment-modal,
.checkout-modal-content {
  background: #ffffff !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-md) !important;
}

.telebirr-header h3,
.telebirr-header p {
  color: var(--text-primary) !important;
}

.payment-tab.active {
  background: var(--text-primary) !important;
  color: #ffffff !important;
}

.payment-tab {
  background: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
}

.payment-submit-btn {
  background: var(--text-primary) !important;
  background-image: none !important;
  border-radius: 4px !important;
  transition: background 0.25s ease !important;
}

.payment-submit-btn:hover {
  background: var(--accent-dark) !important;
}

.payment-form label {
  color: var(--text-primary) !important;
}

.payment-form input,
.payment-form textarea,
.payment-form select {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
  border-radius: 4px !important;
}

.step-number {
  background: var(--accent-primary) !important;
  color: #1a1a1a !important;
}

.account-number {
  color: var(--text-primary) !important;
}

.copy-btn {
  background: var(--text-primary) !important;
  color: #ffffff !important;
}

.success-icon {
  background: var(--accent-primary) !important;
  color: #1a1a1a !important;
}

/* ===== CHATBOT ===== */
.chat-custom-icon {
  background: var(--text-primary) !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-md) !important;
}

.chat-custom-icon:hover {
  background: var(--accent-dark) !important;
  transform: scale(1.06) !important;
}

.chat-widget {
  background: #ffffff !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow-lg) !important;
  border-radius: var(--radius-md) !important;
}

.chat-header {
  background: var(--text-primary) !important;
  background-image: none !important;
}

.chat-header h4,
.chat-header p {
  color: #ffffff !important;
}

.bot-message {
  background: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
}

.user-message {
  background: var(--text-primary) !important;
  color: #ffffff !important;
}

.quick-replies button {
  background: transparent !important;
  border: 1px solid var(--accent-primary) !important;
  color: var(--accent-dark) !important;
  border-radius: 20px !important;
}

.quick-replies button:hover {
  background: var(--accent-primary) !important;
  color: #1a1a1a !important;
}

.chat-footer button {
  background: var(--accent-primary) !important;
  color: #1a1a1a !important;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease;
  pointer-events: none;
  filter: none !important;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal-left {
  transform: translateX(-25px);
}

.reveal.reveal-left.visible,
.reveal.reveal-right.visible {
  transform: translate(0);
}

/* ===== LANGUAGE/EMPLOYEE BUTTON RESTYLE ===== */
button[onclick="toggleLanguage()"] {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
  border-radius: 4px !important;
}

a[href="employee.html"].admin-nav-link {
  color: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
}

a[href="admin.html"].admin-nav-link {
  color: var(--text-primary) !important;
  border-color: var(--text-primary) !important;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .habesha-nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .slider_section .detail-box h1 {
    font-size: 2.6rem !important;
    letter-spacing: 2px !important;
  }

  .category-grid,
  .category-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-tile {
    aspect-ratio: 1/1;
  }
}

@media (max-width: 480px) {
  .slider_section .detail-box h1 {
    font-size: 2rem !important;
  }

  .category-grid,
  .category-grid.two-col {
    grid-template-columns: 1fr;
  }
}