/* ==========================================================================
   HanadiBio Store - Main Design System & UI Components
   Colors: #000080 (Navy Blue) & #0bd4ca (Turquoise)
   ========================================================================== */

: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: #1e293b;
  --hb-text-muted: #64748b;
  --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;
  overflow-x: hidden;
}

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;
}

/* Top Announcement Bar */
.hb-announcement-bar {
  background: linear-gradient(90deg, #000080 0%, #00005a 100%);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(11, 212, 202, 0.2);
}

.hb-announcement-bar .hb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hb-announcement-bar a {
  color: #0bd4ca;
  text-decoration: underline;
  font-weight: 600;
}

.hb-announcement-bar .top-meta-links {
  display: flex;
  gap: 20px;
}

.hb-announcement-bar .top-meta-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  opacity: 0.9;
}

.hb-announcement-bar .top-meta-links a:hover {
  color: #0bd4ca;
  opacity: 1;
}

/* Header Main */
.hb-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 128, 0.06);
  transition: all 0.3s ease;
}

.hb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.hb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #000080;
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.hb-logo span {
  color: #0bd4ca;
}

.hb-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #000080 0%, #0bd4ca 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(11, 212, 202, 0.3);
}

/* Header Search Bar */
.hb-header-search {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.hb-header-search form {
  display: flex;
  align-items: center;
  background-color: #f1f5f9;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 4px 6px 4px 18px;
  transition: all 0.3s ease;
}

.hb-header-search form:focus-within {
  border-color: #0bd4ca;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(11, 212, 202, 0.15);
}

.hb-header-search input[type="text"] {
  border: none;
  background: transparent;
  width: 100%;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #1e293b;
  outline: none;
}

.hb-header-search button {
  background-color: #000080;
  color: #0bd4ca;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.hb-header-search button:hover {
  background-color: #0bd4ca;
  color: #000080;
}

.hb-mobile-search-wrap {
  display: none;
  padding: 0 20px 12px 20px;
}

.hb-mobile-search-wrap form {
  display: flex;
  align-items: center;
  background-color: #f1f5f9;
  border-radius: 50px;
  padding: 4px 6px 4px 16px;
}

.hb-mobile-search-wrap input {
  border: none;
  background: transparent;
  width: 100%;
  padding: 8px 0;
  font-size: 0.85rem;
  outline: none;
}

.hb-mobile-search-wrap button {
  background-color: #000080;
  color: #0bd4ca;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* Header Action Icons */
.hb-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.hb-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000080;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  position: relative;
  transition: all 0.25s ease;
}

.hb-action-btn i {
  font-size: 1.35rem;
  margin-bottom: 2px;
  color: #000080;
}

.hb-action-btn:hover, .hb-action-btn:hover i {
  color: #0bd4ca;
}

.hb-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #0bd4ca;
  color: #000080;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.hb-mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #000080;
  cursor: pointer;
}

/* Header Navigation Bar (Desktop) */
.hb-nav-bar,
.hb-navbar {
  background-color: #000080 !important;
  color: #ffffff !important;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 128, 0.08);
}

.hb-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hb-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.hb-nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  border-radius: 6px;
}

.hb-nav-menu > li > a:hover,
.hb-nav-menu > li.current-menu-item > a {
  background-color: rgba(11, 212, 202, 0.2) !important;
  color: #0bd4ca !important;
}

.hb-nav-menu > li.hb-promo-nav-item > a {
  background-color: #0bd4ca !important;
  color: #000080 !important;
  font-weight: 800 !important;
  margin-left: 6px;
  padding: 8px 14px;
}

.hb-nav-menu > li.hb-promo-nav-item > a:hover {
  background-color: #ffffff !important;
  color: #000080 !important;
}

/* Mobile Drawer Navigation (iPhone & Android) */
.hb-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 128, 0.5);
  backdrop-filter: blur(4px);
  z-index: 99998;
  transition: opacity 0.3s ease;
}

.hb-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 290px;
  max-width: 82vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  box-shadow: 4px 0 25px rgba(0, 0, 128, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.hb-mobile-drawer.active {
  transform: translateX(0);
}

.hb-drawer-header {
  background: #000080;
  color: #ffffff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hb-drawer-logo {
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.hb-mobile-drawer-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.hb-mobile-drawer-close:hover {
  background: #0bd4ca;
  color: #000080;
}

.hb-drawer-body {
  padding: 16px 12px;
  flex: 1;
  overflow-y: auto;
}

.hb-drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hb-drawer-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #000080;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.hb-drawer-menu li a i {
  color: #0bd4ca;
  width: 22px;
  font-size: 1.1rem;
  text-align: center;
}

.hb-drawer-menu li a:hover,
.hb-drawer-menu li a.active {
  background-color: #e6faf9;
  color: #000080;
  transform: translateX(4px);
}

.hb-drawer-footer {
  padding: 16px 18px 24px 18px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
}

/* Hero Section */
.hb-hero {
  background: linear-gradient(135deg, #000080 0%, #00004d 60%, #0bd4ca 100%);
  color: #ffffff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.hb-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hb-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 212, 202, 0.2);
  border: 1px solid #0bd4ca;
  color: #0bd4ca;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hb-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hb-hero-title span {
  color: #0bd4ca;
  display: inline-block;
}

.hb-hero-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.6;
}

.hb-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hb-hero-img-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.hb-hero-img-box img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-height: 480px;
  object-fit: cover;
}

.hb-hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  color: #000080;
  padding: 14px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(10px);
  border-left: 5px solid #0bd4ca;
}

/* Trust Bar */
.hb-trust-bar {
  background-color: #ffffff;
  padding: 30px 0;
  border-bottom: 1px solid #e2e8f0;
}

.hb-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.hb-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background-color: #f8fafc;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.hb-trust-item:hover {
  transform: translateY(-3px);
  border-color: #0bd4ca;
  background-color: #e6faf9;
}

.hb-trust-icon {
  width: 50px;
  height: 50px;
  background: #000080;
  color: #0bd4ca;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hb-trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #000080;
  margin-bottom: 2px;
}

.hb-trust-text p {
  font-size: 0.8rem;
  color: #64748b;
}

/* Section Header */
.hb-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.hb-section-subtitle {
  color: #0bd4ca;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.hb-section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #000080;
  letter-spacing: -0.5px;
}

/* Categories Grid */
.hb-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.hb-category-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 128, 0.05);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hb-category-card:hover {
  border-color: #0bd4ca;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(11, 212, 202, 0.2);
}

.hb-category-thumb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #e6faf9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  border: 3px solid #0bd4ca;
}

.hb-category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hb-category-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #000080;
  margin-bottom: 4px;
}

.hb-category-card span {
  font-size: 0.8rem;
  color: #0bd4ca;
  font-weight: 600;
}

/* Product Cards & Grid */
.hb-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.hb-product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 128, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hb-product-card:hover {
  transform: translateY(-5px);
  border-color: #0bd4ca;
  box-shadow: 0 12px 30px rgba(0, 0, 128, 0.12);
}

.hb-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.hb-product-wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: all 0.25s ease;
}

.hb-product-wishlist-btn:hover, .hb-product-wishlist-btn.active {
  color: #e11d48;
  background: #ffe4e6;
}

.hb-product-img-wrap {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
}

.hb-product-img-wrap img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.hb-product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0bd4ca;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.hb-product-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #000080;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.hb-product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.hb-product-rating span {
  color: #64748b;
  font-size: 0.75rem;
  margin-left: 4px;
}

.hb-product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.hb-price-current {
  font-size: 1.2rem;
  font-weight: 800;
  color: #000080;
}

.hb-price-old {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.hb-product-actions {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 8px;
}

.hb-add-cart-btn {
  background-color: #0bd4ca;
  color: #000080;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hb-add-cart-btn:hover {
  background-color: #000080;
  color: #0bd4ca;
}

.hb-quick-view-btn {
  background: #f1f5f9;
  color: #000080;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.hb-quick-view-btn:hover {
  background: #000080;
  color: #ffffff;
}

/* Strictly Hidden Mobile Drawer by Default */
.hb-drawer-overlay {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

.hb-mobile-drawer {
  display: none !important;
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  flex-direction: column;
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

body.menu-open .hb-drawer-overlay {
  display: block !important;
}

body.menu-open .hb-mobile-drawer {
  display: flex !important;
  left: 0;
}

.hb-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #000080;
  color: #ffffff;
}

.hb-drawer-header .hb-logo {
  color: #ffffff;
}

.hb-mobile-drawer-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

.hb-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}

.hb-mobile-nav-list {
  list-style: none;
}

.hb-mobile-nav-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #000080;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid #f1f5f9;
}

.hb-mobile-nav-list li a i {
  color: #0bd4ca;
  width: 20px;
}

.hb-drawer-footer {
  padding: 16px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

/* Strictly Hidden Mobile Bottom Nav by Default */
.hb-mobile-bottom-nav {
  display: none !important;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 15px rgba(0, 0, 128, 0.08);
  z-index: 998;
  padding: 8px 0;
}

.hb-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  flex: 1;
}

.hb-bottom-nav-item i {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.hb-bottom-nav-item.active, .hb-bottom-nav-item:hover {
  color: #000080;
}

/* Footer Section */
.hb-footer {
  background-color: #000080;
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 4px solid #0bd4ca;
}

.hb-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.hb-footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0bd4ca;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.hb-footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #0bd4ca;
}

.hb-footer-col p {
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

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

.hb-footer-links a {
  color: #ffffff;
  opacity: 0.85;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.hb-footer-links a:hover {
  color: #0bd4ca;
  opacity: 1;
  padding-left: 4px;
}

.hb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.8;
  flex-wrap: wrap;
  gap: 16px;
}

/* WhatsApp Floating Button */
.hb-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 997;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Shop & Boutique Layout */
.hb-boutique-banner {
  background: linear-gradient(135deg, var(--hb-navy) 0%, var(--hb-turquoise) 100%);
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  margin: 24px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 128, 0.15);
}

.hb-boutique-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.hb-boutique-desc {
  opacity: 0.95;
  max-width: 650px;
  font-size: 0.95rem;
}

.hb-shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.hb-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--hb-border);
  flex-wrap: wrap;
  gap: 10px;
}

.hb-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
}

/* Strict Mobile / Desktop visibility rules */
.hb-mobile-only,
.hb-mobile-search-wrap,
.hb-mobile-bottom-nav,
.hb-mobile-drawer,
.hb-drawer-overlay,
.hb-mobile-menu-toggle {
  display: none !important;
}

/* Responsive Media Queries */
@media (min-width: 993px) {
  .hb-mobile-only,
  .hb-mobile-search-wrap,
  .hb-mobile-bottom-nav,
  .hb-mobile-drawer,
  .hb-drawer-overlay,
  .hb-mobile-menu-toggle {
    display: none !important;
  }
  .hb-desktop-only {
    display: flex !important;
  }
}

@media (max-width: 992px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  .hb-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hb-header-inner {
    padding: 8px 10px !important;
    gap: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hb-logo {
    font-size: 1.05rem !important;
    gap: 6px !important;
    max-width: 160px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .hb-logo-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }

  .hb-header-actions {
    gap: 8px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .hb-action-btn {
    padding: 6px 8px !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hb-action-btn span:not(.hb-count-badge) {
    display: none !important;
  }

  .hb-action-btn .hb-count-badge {
    position: absolute !important;
    top: -2px !important;
    right: -2px !important;
    font-size: 0.65rem !important;
    padding: 1px 5px !important;
    min-width: 16px !important;
    height: 16px !important;
    line-height: 14px !important;
    border-radius: 10px !important;
  }

  .hb-action-btn i {
    font-size: 1.2rem !important;
  }

  .hb-mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border: none !important;
    font-size: 1.3rem !important;
    color: var(--hb-navy) !important;
    cursor: pointer !important;
    padding: 6px 8px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  .hb-announcement-bar {
    font-size: 0.72rem !important;
    padding: 6px 8px !important;
    text-align: center !important;
  }

  .top-meta-links {
    display: none !important;
  }

  .hb-boutique-banner {
    padding: 22px 16px;
    margin: 12px 0 16px 0;
    border-radius: 14px;
  }

  .hb-boutique-title {
    font-size: 1.4rem;
  }

  .hb-boutique-desc {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .hb-shop-layout {
    display: block !important;
    width: 100% !important;
  }

  .hb-sidebar-filter {
    display: none;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--hb-border);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,128,0.05);
  }

  .hb-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hb-hero-desc {
    margin: 0 auto 30px auto;
  }

  .hb-hero-ctas {
    justify-content: center;
  }

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

  .hb-desktop-only {
    display: none !important;
  }

  .hb-mobile-menu-toggle {
    display: block !important;
  }

  .hb-mobile-search-wrap {
    display: block !important;
    padding: 10px 14px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--hb-border);
  }

  .hb-mobile-search-wrap form {
    display: flex;
    position: relative;
    width: 100%;
  }

  .hb-mobile-search-wrap input {
    width: 100%;
    padding: 10px 42px 10px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 0.88rem;
    outline: none;
  }

  .hb-mobile-search-wrap button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--hb-navy);
    font-size: 1rem;
    cursor: pointer;
  }

  .hb-mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 56px !important;
    background: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
    align-items: center !important;
    justify-content: space-around !important;
    z-index: 9999 !important;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08) !important;
  }

  .hb-bottom-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.72rem !important;
    color: var(--hb-text-muted) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
  }

  .hb-bottom-nav-item.active,
  .hb-bottom-nav-item:hover {
    color: var(--hb-turquoise) !important;
  }

  .hb-bottom-nav-item i {
    font-size: 1.1rem !important;
    margin-bottom: 2px !important;
  }

  .hb-whatsapp-btn {
    bottom: 68px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hb-hero-title {
    font-size: 1.8rem;
  }

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

  .hb-product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .hb-product-card {
    padding: 10px 8px;
    border-radius: 12px;
  }

  .hb-product-img-wrap {
    height: 130px;
    margin-bottom: 8px;
  }

  .hb-product-brand {
    font-size: 0.72rem;
  }

  .hb-product-title {
    font-size: 0.78rem;
    line-height: 1.3;
    height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
  }

  .hb-product-rating {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .hb-product-rating span {
    display: none;
  }

  .hb-price-current {
    font-size: 0.92rem;
    font-weight: 800;
  }

  .hb-price-old {
    font-size: 0.72rem;
  }

  .hb-product-actions {
    margin-top: 8px;
    gap: 4px;
  }

  .hb-add-cart-btn {
    font-size: 0.72rem;
    padding: 7px 6px;
    border-radius: 8px;
    gap: 4px;
  }

  .hb-add-cart-btn i {
    font-size: 0.85rem;
  }

  .hb-quick-view-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
  }
}


