/*
Theme Name: HanadiBio Store
Theme URI: https://hanadibio.ma
Author: HanadiBio Development Team
Author URI: https://hanadibio.ma
Description: High-converting, modern WordPress & WooCommerce e-commerce theme designed specifically for online parapharmacies in Morocco. Features full Elementor editability, dynamic WooCommerce catalog support, WhatsApp integration, and sleek responsive design.
Version: 1.0.0
Text Domain: hanadibio-store
Tags: e-commerce, woocommerce, elementor, parapharmacy, morocco, responsive-layout, grid-layout, custom-menu, sticky-post, theme-options

Palette Color Specs:
- Navy Blue (Bleu Marine): #000080
- Turquoise: #0bd4ca
*/

:root {
  --hb-navy: #000080;
  --hb-navy-dark: #00005a;
  --hb-navy-light: #1a1a99;
  --hb-navy-trans: rgba(0, 0, 128, 0.08);
  
  --hb-turquoise: #0bd4ca;
  --hb-turquoise-hover: #08b8b0;
  --hb-turquoise-light: #e6faf9;
  --hb-turquoise-trans: rgba(11, 212, 202, 0.12);
  
  --hb-bg-light: #f8fafc;
  --hb-card-bg: #ffffff;
  --hb-text-main: #0f172a;
  --hb-text-muted: #334155;
  --hb-border: #e2e8f0;
  
  --hb-radius: 12px;
  --hb-radius-sm: 6px;
  --hb-radius-lg: 20px;
  --hb-shadow: 0 4px 20px -2px rgba(0, 0, 128, 0.08);
  --hb-shadow-hover: 0 12px 30px -4px rgba(11, 212, 202, 0.22);
  --hb-font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Global Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--hb-font-main);
  background-color: var(--hb-bg-light);
  color: var(--hb-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--hb-navy);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--hb-turquoise);
}

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

/* Layout Utilities */
.hb-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.hb-btn-primary {
  background-color: var(--hb-turquoise);
  color: var(--hb-navy);
  box-shadow: 0 4px 15px rgba(11, 212, 202, 0.35);
}

.hb-btn-primary:hover {
  background-color: var(--hb-turquoise-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--hb-shadow-hover);
}

.hb-btn-navy {
  background-color: var(--hb-navy);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 128, 0.25);
}

.hb-btn-navy:hover {
  background-color: var(--hb-navy-dark);
  color: var(--hb-turquoise);
  transform: translateY(-2px);
}

.hb-btn-outline {
  background: transparent;
  border: 2px solid var(--hb-navy);
  color: var(--hb-navy);
}

.hb-btn-outline:hover {
  background-color: var(--hb-navy);
  color: #ffffff;
}

.hb-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hb-badge-promo {
  background: var(--hb-turquoise);
  color: var(--hb-navy);
}

.hb-badge-new {
  background: var(--hb-navy);
  color: #ffffff;
}

.hb-badge-bestseller {
  background: linear-gradient(135deg, var(--hb-navy) 0%, var(--hb-turquoise) 100%);
  color: #ffffff;
}
