/* Knotera - Glossy Glassmorphic Handmade E-Commerce Styling */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  --brand-dark: #211D19;
  --brand-rose: #A65B54;
  --brand-rose-dark: #84423C;
  --brand-yellow-light: #FFFDF2;
  --brand-yellow-soft: #FDF3D6;
  --brand-gold: #C89B48;
  --text-dark: #241F1B;
  --text-muted: #6E635A;
  --bg-body: #FFFDF2;
  --bg-card: #FFFFFF;
  --border-color: #EFE4D2;
  --radius-lg: 18px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --shadow-subtle: 0 8px 25px rgba(33, 29, 25, 0.04);
  --shadow-glossy: 0 16px 40px rgba(33, 29, 25, 0.1);
  --glass-bg: rgba(255, 253, 242, 0.88);
  --glass-border: rgba(239, 228, 210, 0.8);
  --transition: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.2px;
}

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

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

/* Announcement Top Bar */
.announcement-bar {
  background: var(--brand-dark);
  color: #FDF7EA;
  text-align: center;
  padding: 9px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-bar .bar-badge {
  background: var(--brand-gold);
  color: var(--brand-dark);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Glossy Glassmorphic Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-color);
}

.brand-text h1 {
  font-size: 1.4rem;
  color: var(--brand-dark);
  font-weight: 700;
  line-height: 1.0;
}

.brand-text p {
  font-size: 0.68rem;
  color: var(--brand-rose);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-dark);
  position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--brand-rose);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--brand-rose);
  transition: var(--transition);
}

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

.mobile-nav-toggle {
  display: none;
  background: white;
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  min-height: 40px;
  min-width: 40px;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-whatsapp-nav {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: white !important;
  padding: 9px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(18, 140, 126, 0.25);
  transition: var(--transition);
}

.btn-whatsapp-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.35);
}

/* Floating Bottom Right Actions Bar */
.floating-actions-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.floating-btn-wa {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.floating-btn-wa:hover {
  transform: scale(1.08);
  background: #20BA5A;
}

.floating-btn-wa svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.floating-btn-drawer {
  background: rgba(33, 29, 25, 0.92);
  backdrop-filter: blur(8px);
  color: #FFFDF2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(33, 29, 25, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.floating-btn-drawer:hover {
  background: var(--brand-rose);
}

/* Sliding Side Drawer */
.side-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 29, 25, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.side-drawer-card {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #FFFDF2;
  border-left: 1px solid var(--border-color);
  padding: 32px 28px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
}

.side-drawer-overlay.active .side-drawer-card {
  transform: translateX(0);
}

.drawer-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  padding: 50px 5% 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  background: var(--brand-yellow-soft);
  color: var(--brand-dark);
  border: 1px solid var(--border-color);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-content h2 {
  font-size: clamp(2.0rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--brand-dark);
  margin-bottom: 18px;
}

.hero-content h2 span {
  color: var(--brand-rose);
  font-style: italic;
}

.hero-bio {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.bio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.bio-pill {
  background: white;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  background: var(--brand-dark);
  color: #FFFDF2;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(33, 29, 25, 0.2);
  transition: var(--transition);
  min-height: 44px;
}

.btn-primary:hover {
  background: var(--brand-rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 91, 84, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--brand-dark);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  min-height: 44px;
}

.btn-secondary:hover {
  background: white;
  border-color: var(--brand-rose);
  color: var(--brand-rose);
}

/* REEL SIDE-BY-SIDE CARD LAYOUT (VIDEO LEFT, WRITE-UP RIGHT) */
.reel-side-card {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  width: 100%;
}

.reel-video-col {
  flex: 0 0 250px;
  width: 250px;
}

.reel-text-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* COMPACT 2:3 ASPECT RATIO CORNER REEL PLAYER FRAME */
.compact-23-reel-frame {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 2 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 4px solid var(--brand-dark);
  box-shadow: var(--shadow-glossy);
  position: relative;
  margin: 0;
  transition: var(--transition);
}

.compact-23-reel-frame:hover {
  transform: scale(1.03);
}

.compact-23-reel-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Category Filter Bar */
.category-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 28px 5% 10px;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  min-height: 38px;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--brand-dark);
  color: white;
  border-color: var(--brand-dark);
}

/* Product Gallery Grid */
.products-section {
  max-width: 1280px;
  margin: 30px auto 60px;
  padding: 0 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-media {
  position: relative;
  width: 100%;
  height: 300px;
  background: #FAF3E8;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
}

.product-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.multi-pic-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(33, 29, 25, 0.82);
  color: white;
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.craft-time-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-dark);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  z-index: 5;
}

.color-badge-pill {
  display: inline-block;
  background: var(--brand-yellow-soft);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin-top: 6px;
  border: 1px solid #F5E5BA;
}

.product-details {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.7rem;
  color: var(--brand-rose);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.product-title {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 4px;
  line-height: 1.25;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  margin-top: auto;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.card-actions {
  display: flex;
  gap: 6px;
}

.btn-sm-enquire {
  background: var(--bg-body);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  min-height: 36px;
}

.btn-sm-buy {
  background: #128C7E;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  min-height: 36px;
}

/* ADMIN PANEL STYLING & RESPONSIVE TABLES */
.admin-container {
  max-width: 1380px;
  margin: 30px auto 60px;
  padding: 0 4%;
}

.admin-header {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-table-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  background: #FFFDF0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 600px;
}

.admin-table th {
  background: #FAF6F2;
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #F5EFE6;
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

/* HIGH-CONTRAST HIGH-FINISH ADMIN ACTION PILL BUTTONS */
.btn-admin-view {
  background: #E6FFFA !important;
  color: #234E52 !important;
  border: 1px solid #B2F5EA !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: var(--transition);
}

.btn-admin-view:hover {
  background: #319795 !important;
  color: white !important;
}

.btn-admin-edit {
  background: #EBF8FF !important;
  color: #2B6CB0 !important;
  border: 1px solid #BEE3F8 !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: var(--transition);
}

.btn-admin-edit:hover {
  background: #3182CE !important;
  color: white !important;
}

.btn-admin-delete {
  background: #FFF5F5 !important;
  color: #C53030 !important;
  border: 1px solid #FEB2B2 !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: var(--transition);
}

.btn-admin-delete:hover {
  background: #E53E3E !important;
  color: white !important;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 29, 25, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-card {
  background: white;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bg-body);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.88rem;
  background: #FCFAFA;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-dark);
  background: white;
}

/* Footer */
footer {
  background: var(--brand-dark);
  color: #E2D9D7;
  padding: 50px 5% 24px;
  margin-top: 50px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h4 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #B5A8A5;
  line-height: 1.7;
}

.footer-col h5 {
  color: white;
  font-size: 0.88rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

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

.footer-links a {
  color: #B5A8A5;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1280px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #887B79;
}

/* ==========================================================================
   100% ALL-PAGES ALL-DEVICES FRIENDLY FLUID RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* 1. ULTRA WIDE MONITORS & 4K (>1400px) */
@media (min-width: 1401px) {
  .hero, .products-section, .navbar, .footer-grid { max-width: 1400px; }
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

/* 2. LAPTOPS & DESKTOPS (1025px - 1400px) */
@media (max-width: 1400px) and (min-width: 1025px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .hero { gap: 40px; }
}

/* 3. TABLETS & IPADS (769px - 1024px) */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 32px; padding-top: 30px; }
  .hero-content h2 { font-size: 2.5rem; }
  .hero-actions { justify-content: center; }
  .bio-pills { justify-content: center; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .multi-img-modal { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .admin-container { padding: 0 2%; }
  
  /* Admin forms & tables responsive layout */
  .admin-container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* 4. MOBILE PHONES & FOLDABLES (<=768px) */
@media (max-width: 768px) {
  .announcement-bar {
    padding: 6px 12px;
    font-size: 0.74rem;
    flex-direction: column;
    gap: 4px;
  }

  .navbar { padding: 10px 4%; }
  .nav-actions { display: none; }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(255, 253, 242, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: none;
  }
  .nav-menu.active { display: flex; }
  .mobile-nav-toggle { display: block; }
  
  .hero { padding: 24px 4% 30px; grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hero-content h2 { font-size: 2.1rem; line-height: 1.2; }
  .hero-bio { font-size: 0.92rem; }
  .bio-pills { justify-content: center; }
  .hero-actions { justify-content: center; flex-direction: column; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }

  /* Hero video overlay mobile fix */
  .hero > div[style*="height: 420px"] { height: 320px !important; }
  .hero div[style*="position: absolute; bottom: 20px"] {
    bottom: 10px !important;
    left: 10px !important;
    right: 10px !important;
    padding: 10px 14px !important;
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
  }
  
  .reel-side-card { flex-direction: column; text-align: center; padding: 24px; }
  .reel-video-col { flex: 0 0 auto; width: 100%; max-width: 240px; margin: 0 auto; }
  .reel-text-col { text-align: center; }
  
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  
  .floating-actions-bar { bottom: 14px; right: 14px; gap: 8px; }
  .floating-btn-wa { width: 44px; height: 44px; }
  .floating-btn-wa svg { width: 22px; height: 22px; }
}

/* 5. SMALL SMARTPHONES & IPHONES (<480px) */
@media (max-width: 480px) {
  .brand-text h1 { font-size: 1.25rem; }
  .brand-text p { font-size: 0.6rem; letter-spacing: 1px; }
  .nav-logo { width: 38px; height: 38px; }
  .hero-content h2 { font-size: 1.75rem; }
  .section-header h3 { font-size: 1.8rem; }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-media { height: 250px; }
  .side-drawer-card { width: 100%; max-width: 100%; padding: 24px 16px; }
  .modal-card { padding: 18px 14px; border-radius: 14px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
