/* ==========================================================================
   BEAUTY BY DREYSON - LUXURY SKINCARE E-COMMERCE STYLESHEET
   ========================================================================== */

:root {
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Luxury Color Palette */
  --gold-primary: #C5A059;
  --gold-dark: #A47E3B;
  --gold-light: #F4E8D1;
  --gold-glow: rgba(197, 160, 89, 0.25);
  
  --bg-main: #FDFBF7;
  --surface-card: #FFFFFF;
  --surface-soft: #F7F2EC;
  --surface-dark: #1C1917;
  
  --text-main: #1C1917;
  --text-muted: #78716C;
  --text-light: #A8A29E;
  
  --border-light: #EAE3DA;
  --border-gold: rgba(197, 160, 89, 0.4);
  
  --ok-green: #15803D;
  --ok-bg: #DCFCE7;
  --error-red: #B91C1C;
  --error-bg: #FEE2E2;
  
  --shadow-sm: 0 4px 12px rgba(28, 25, 23, 0.03);
  --shadow-md: 0 10px 25px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 20px 45px rgba(197, 160, 89, 0.14);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 5% 5%, #F7F0E6 0%, transparent 40%),
    radial-gradient(circle at 95% 20%, #F5ECDF 0%, transparent 35%);
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   ANNOUNCEMENT MARQUEE BAR
   ========================================================================== */
.announcement-bar {
  background: var(--surface-dark);
  color: #F5EBE0;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.announcement-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: marquee 32s linear infinite;
}

.announcement-track:hover {
  animation-play-state: paused;
}

.announcement-track .dot {
  color: var(--gold-primary);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   NAVIGATION TOPBAR
   ========================================================================== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 2rem;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(197, 160, 89, 0.25));
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.05);
}

.footer-logo-img {
  height: 54px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 0.85rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.about-logo-img {
  max-height: 120px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin: 0 auto 1.2rem;
  display: block;
  filter: drop-shadow(0 6px 15px rgba(197, 160, 89, 0.25));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  margin: 0;
  color: var(--gold-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--surface-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link.active,
.nav-link:hover {
  color: var(--gold-dark);
  background: var(--surface-soft);
}

.nav-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge {
  background: var(--gold-primary);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-toggle {
  background: var(--surface-dark);
  color: #FFF;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.cart-toggle:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cart-count {
  background: var(--gold-primary);
  color: var(--surface-dark);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   MAIN LAYOUT & HERO SLIDER
   ========================================================================== */
main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}

.hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  min-height: 380px;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.15) 0%, rgba(28, 25, 23, 0.88) 100%);
  color: #FFF;
}

.hero-content {
  max-width: 680px;
}

.hero-tag {
  display: inline-block;
  background: var(--gold-primary);
  color: var(--surface-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.hero-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
}

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

.hero-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--gold-primary);
  width: 24px;
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold-primary);
  color: var(--surface-dark);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: #FFF;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-gold-sm {
  background: var(--gold-primary);
  color: var(--surface-dark);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: #FFF;
  color: var(--surface-dark);
}

.btn-reset {
  background: var(--surface-soft);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 0.7rem 1rem;
}

.btn-reset:hover {
  color: var(--error-red);
  border-color: var(--error-red);
}

.btn-whatsapp {
  background: #16A34A;
  color: #FFF;
  width: 100%;
}

.btn-whatsapp:hover {
  background: #15803D;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
}

.btn-checkout {
  background: var(--gold-primary);
  color: var(--surface-dark);
  font-weight: 800;
  width: 100%;
  padding: 0.9rem;
}

.btn-checkout:hover {
  background: var(--gold-dark);
  color: #FFF;
}

.btn-clear {
  background: var(--surface-soft);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  width: 100%;
}

.btn-clear:hover {
  color: var(--text-main);
  background: #EAE3DA;
}

.btn-page {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.6rem 1.2rem;
}

.btn-page:hover:not(:disabled) {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

.btn-page:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ==========================================================================
   TRUST BADGES GRID
   ========================================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.trust-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.1rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  font-size: 1.6rem;
  color: var(--gold-primary);
  background: var(--surface-soft);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-text h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-text p {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CATEGORY PILLS BAR
   ========================================================================== */
.category-pills-section {
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.section-header.align-left {
  text-align: left;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin: 0;
  font-weight: 600;
}

.section-header p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.category-pills {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.4rem 0.2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-gold) transparent;
}

.category-pill {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.category-pill:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

.category-pill.active {
  background: var(--surface-dark);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   SEARCH & FILTER CONTROLS BAR
   ========================================================================== */
.controls-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 2.6rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--surface-soft);
  color: var(--text-main);
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: #FFF;
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.search-clear-btn {
  position: absolute;
  right: 0.8rem;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.3rem;
}

.filter-group {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.filter-group select {
  flex: 1;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.filter-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
}

/* ==========================================================================
   STORE NOTICE CARD
   ========================================================================== */
.about-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.notice-badge {
  display: inline-block;
  background: var(--surface-soft);
  color: var(--gold-dark);
  border: 1px solid var(--border-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}

.about-card h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

.about-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ==========================================================================
   CATALOG GRID & PRODUCT CARDS
   ========================================================================== */
.catalog-section {
  margin-bottom: 3rem;
}

.catalog-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.result-count {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.view-toggles {
  display: flex;
  gap: 0.3rem;
  background: var(--surface-soft);
  padding: 0.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.view-btn {
  background: transparent;
  border: 0;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-muted);
}

.view-btn.active {
  background: #FFF;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

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

.product-grid.compact {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
}

/* Card */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F8F5F0;
  overflow: hidden;
}

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

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

.wishlist-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.wishlist-btn:hover {
  transform: scale(1.15);
  background: #FFF;
}

.wishlist-btn.saved {
  background: #FFF;
  color: #E11D48;
}

.quickview-btn {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(28, 25, 23, 0.88);
  color: #FFF;
  border: 0;
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  z-index: 5;
}

.card:hover .quickview-btn {
  bottom: 12px;
}

.brand-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--surface-dark);
  color: var(--gold-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  z-index: 4;
}

.card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.card-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.stock-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-full);
}

.stock-badge.in-stock {
  background: var(--ok-bg);
  color: var(--ok-green);
}

.stock-badge.out-of-stock {
  background: var(--error-bg);
  color: var(--error-red);
}

.card-foot {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--surface-dark);
}

.add-card-btn {
  background: var(--surface-soft);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  transition: var(--transition);
}

.add-card-btn:hover:not(:disabled) {
  background: var(--gold-primary);
  color: var(--surface-dark);
  border-color: var(--gold-primary);
}

.add-card-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--border-light);
  color: var(--text-muted);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.page-label {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ==========================================================================
   QUICK VIEW MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.65);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-backdrop[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop[aria-hidden="false"] .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: sticky;
  top: 0.75rem;
  float: right;
  margin-right: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-light);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.modal-close-btn:hover {
  background: var(--surface-dark);
  color: #FFF;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image-wrap {
  background: #F8F5F0;
  min-height: 360px;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-brand-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.25;
}

.modal-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin: 0;
}

.modal-stock-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--ok-bg);
  color: var(--ok-green);
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.modal-actions {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.qty-btn {
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

.qty-val {
  padding: 0 0.6rem;
  font-weight: 700;
  min-width: 1.5rem;
  text-align: center;
}

.modal-add-btn {
  flex: 1;
  min-width: 140px;
}

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.cart-panel {
  position: fixed;
  top: 0;
  right: -450px;
  width: min(92vw, 420px);
  height: 100vh;
  height: 100dvh;
  background: var(--surface-card);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18);
  z-index: 250;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border-gold);
}

.cart-panel[aria-hidden="false"] {
  right: 0;
}

.cart-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.cart-head-title h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.icon-btn {
  background: var(--surface-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 0.85rem;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

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

.cart-item-title {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.cart-item-price {
  font-weight: 800;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.cart-foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-main);
  flex-shrink: 0;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.store-address-text {
  font-weight: 600;
  color: var(--text-main);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-total-price {
  font-size: 1.4rem;
  color: var(--gold-dark);
}

/* ==========================================================================
   ABOUT PAGE & INSTAGRAM SECTION
   ========================================================================== */
.about-main {
  max-width: 1100px;
  padding: 1.5rem;
}

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

.value-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.director-section {
  text-align: center;
}

.director-media-wrap {
  margin-top: 1rem;
}

.director-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--surface-soft);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.insta-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.insta-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.insta-thumb {
  position: relative;
  display: block;
}

.insta-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  background: rgba(28, 25, 23, 0.85);
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.insta-desc {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--surface-dark);
  color: #F5EBE0;
  border-top: 2px solid var(--gold-primary);
  padding: 3.5rem 2rem 1.5rem;
  margin-top: 4rem;
}

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

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin: 0 0 0.5rem;
}

.footer-tagline {
  color: #D6D3D1;
  font-size: 0.94rem;
  margin: 0 0 1rem;
}

.footer-address {
  font-size: 0.88rem;
  color: #A8A29E;
  line-height: 1.5;
}

.footer-col h3 {
  font-size: 1.05rem;
  color: #FFF;
  margin: 0 0 1rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #D6D3D1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-col p {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: #D6D3D1;
}

.footer-col a {
  color: var(--gold-primary);
  text-decoration: none;
}

.footer-social-link {
  display: inline-block;
  margin-top: 0.2rem;
  font-weight: 700;
}

.footer-guarantee-badge {
  margin-top: 1rem;
  display: inline-block;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-bottom {
  max-width: 1300px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: #A8A29E;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & TOAST
   ========================================================================== */
.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #16A34A;
  color: #FFF;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.4);
  z-index: 90;
  transition: var(--transition);
}

.floating-wa:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.5);
}

.floating-call {
  position: fixed;
  bottom: 5.2rem;
  right: 1.5rem;
  background: var(--surface-dark);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: var(--transition);
}

.floating-call:hover {
  transform: translateY(-3px);
  background: var(--gold-primary);
  color: var(--surface-dark);
}

.back-to-top {
  position: fixed;
  bottom: 8.8rem;
  right: 1.5rem;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}

.back-to-top.show {
  display: flex;
}

.cart-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--surface-dark);
  color: #FFF;
  border: 1px solid var(--gold-primary);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
  z-index: 300;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* ---- Tablet landscape ---- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .controls-card {
    grid-template-columns: 1fr;
  }
  .hero-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  }
}

/* ---- Tablet portrait & large phones ---- */
@media (max-width: 768px) {
  /* Body & Main */
  main {
    padding: 1rem 1rem 2.5rem;
  }

  /* Topbar / Navigation */
  .topbar {
    padding: 0.6rem 0.85rem;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .brand-logo-img {
    height: 38px;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .eyebrow {
    font-size: 0.6rem;
  }

  .nav-link {
    font-size: 0.82rem;
    padding: 0.4rem 0.65rem;
  }

  .cart-toggle {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
  }

  /* Hero */
  .hero {
    min-height: 280px;
    border-radius: var(--radius-md);
  }

  .hero-overlay {
    min-height: 280px;
    padding: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .hero-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
  }

  /* Trust Badges */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .trust-card {
    padding: 0.85rem 0.75rem;
    gap: 0.6rem;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .trust-text h3 {
    font-size: 0.82rem;
  }

  .trust-text p {
    font-size: 0.7rem;
  }

  /* Category Pills */
  .category-pills {
    gap: 0.45rem;
    padding-bottom: 0.5rem;
  }

  .category-pill {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
  }

  /* Search & Filter Controls */
  .controls-card {
    padding: 0.75rem;
    gap: 0.65rem;
  }

  .search-box input {
    padding: 0.65rem 2.2rem 0.65rem 2.4rem;
    font-size: 0.85rem;
  }

  .filter-group {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .filter-group select {
    padding: 0.6rem 0.7rem;
    font-size: 0.82rem;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 1.6rem;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .product-grid.compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  /* Product Cards */
  .card-body {
    padding: 0.75rem;
    gap: 0.35rem;
  }

  .card-title {
    font-size: 0.88rem;
    height: auto;
    -webkit-line-clamp: 2;
  }

  .price {
    font-size: 1rem;
  }

  .add-card-btn {
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
  }

  .card-foot {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  /* Quick-view button always visible on touch */
  .quickview-btn {
    bottom: 8px;
    opacity: 0.92;
    font-size: 0.72rem;
    padding: 0.38rem 0.85rem;
  }

  /* ======================== */
  /* QUICK VIEW MODAL MOBILE  */
  /* ======================== */
  .modal-backdrop {
    padding: 0.5rem;
    align-items: flex-start;
  }

  .modal-card {
    max-height: 92vh;
    max-height: 92dvh;
    border-radius: var(--radius-md);
    margin: auto 0;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-image-wrap {
    min-height: auto;
    max-height: 55vw;
    overflow: hidden;
  }

  .modal-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #F8F5F0;
  }

  .modal-close-btn {
    position: sticky;
    top: 0.5rem;
    margin-right: 0.5rem;
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .modal-details {
    padding: 1.25rem;
    gap: 0.7rem;
  }

  .modal-title {
    font-size: 1.35rem;
  }

  .modal-price {
    font-size: 1.3rem;
  }

  .modal-desc {
    font-size: 0.85rem;
  }

  .modal-actions {
    gap: 0.6rem;
  }

  .modal-wa-btn {
    font-size: 0.82rem;
    padding: 0.65rem 1rem;
  }

  /* Cart Drawer Mobile */
  .cart-panel {
    width: 100vw;
    right: -100vw;
  }

  .cart-head {
    padding: 1rem 1.25rem;
  }

  .cart-items {
    padding: 1rem 1.25rem;
  }

  .cart-foot {
    padding: 1rem 1.25rem;
  }

  /* Store Notice */
  .about-card {
    padding: 1.25rem;
  }

  .about-card h2 {
    font-size: 1.4rem;
  }

  /* About Page */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .value-card {
    padding: 1.15rem;
  }

  .insta-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .about-logo-img {
    max-height: 90px;
  }

  /* Footer */
  .site-footer {
    padding: 2.5rem 1.25rem 1.25rem;
    margin-top: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-brand {
    font-size: 1.5rem;
  }

  /* Floating Buttons */
  .floating-text {
    display: none;
  }

  .floating-wa {
    padding: 0.75rem;
    border-radius: var(--radius-full);
    bottom: 1.2rem;
    right: 1.2rem;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.45);
  }

  .floating-call {
    bottom: 4.8rem;
    right: 1.2rem;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .back-to-top {
    bottom: 8rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
  }

  /* Pagination */
  .pagination {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .btn-page {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }

  .page-label {
    font-size: 0.82rem;
  }

  /* Toast */
  .cart-toast {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 5.5rem;
    text-align: center;
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
  }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
  main {
    padding: 0.75rem 0.75rem 2rem;
  }

  /* Topbar */
  .topbar {
    padding: 0.5rem 0.65rem;
    gap: 0.45rem;
  }

  .brand-logo-img {
    height: 32px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .nav-link {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }

  .cart-toggle {
    padding: 0.4rem 0.7rem;
    font-size: 0.78rem;
    gap: 0.35rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  /* Announcement */
  .announcement-bar {
    font-size: 0.72rem;
    padding: 0.35rem 0;
  }

  /* Hero */
  .hero {
    min-height: 220px;
    margin-bottom: 1.25rem;
  }

  .hero-overlay {
    min-height: 220px;
    padding: 1.15rem;
  }

  .hero-content h2 {
    font-size: 1.35rem;
  }

  .hero-content p {
    font-size: 0.82rem;
    margin-bottom: 1rem;
  }

  .hero-actions .btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }

  .hero-tag {
    font-size: 0.62rem;
    padding: 0.25rem 0.6rem;
    margin-bottom: 0.5rem;
  }

  /* Trust Badges */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .trust-card {
    padding: 0.65rem 0.55rem;
    gap: 0.4rem;
    flex-direction: column;
    text-align: center;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .trust-text h3 {
    font-size: 0.75rem;
  }

  .trust-text p {
    font-size: 0.65rem;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 1.3rem;
  }

  .section-header p {
    font-size: 0.82rem;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .product-grid.compact {
    gap: 0.5rem;
  }

  /* Product Cards */
  .card-body {
    padding: 0.6rem;
    gap: 0.25rem;
  }

  .card-title {
    font-size: 0.78rem;
    height: auto;
  }

  .brand-badge {
    font-size: 0.58rem;
    padding: 0.15rem 0.4rem;
  }

  .stock-badge {
    font-size: 0.6rem;
    padding: 0.12rem 0.4rem;
  }

  .price {
    font-size: 0.88rem;
  }

  .add-card-btn {
    padding: 0.35rem 0.5rem;
    font-size: 0.7rem;
    border-radius: var(--radius-sm);
  }

  .wishlist-btn {
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
  }

  .quickview-btn {
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
  }

  /* Quick View Modal - Small Phone */
  .modal-backdrop {
    padding: 0;
  }

  .modal-card {
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    width: 100%;
  }

  .modal-image-wrap {
    max-height: 60vw;
  }

  .modal-details {
    padding: 1rem;
    gap: 0.6rem;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .modal-price {
    font-size: 1.15rem;
  }

  .modal-desc {
    font-size: 0.8rem;
  }

  .modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .qty-selector {
    align-self: flex-start;
  }

  .qty-btn {
    width: 38px;
    height: 38px;
  }

  .modal-add-btn {
    width: 100%;
    min-width: unset;
  }

  .modal-wa-btn {
    font-size: 0.78rem;
    padding: 0.6rem 0.85rem;
  }

  /* Cart Drawer - Small Phone */
  .cart-head {
    padding: 0.85rem 1rem;
  }

  .cart-head-title h3 {
    font-size: 1.15rem;
  }

  .cart-items {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .cart-item {
    grid-template-columns: 55px 1fr auto;
    gap: 0.6rem;
    padding: 0.6rem;
  }

  .cart-item img {
    width: 55px;
    height: 55px;
  }

  .cart-item-title {
    font-size: 0.78rem;
  }

  .cart-item-price {
    font-size: 0.82rem;
  }

  .cart-foot {
    padding: 0.85rem 1rem;
    gap: 0.6rem;
  }

  .cart-total-price {
    font-size: 1.2rem;
  }

  /* Category Pills */
  .category-pill {
    padding: 0.38rem 0.75rem;
    font-size: 0.72rem;
  }

  /* Controls */
  .controls-card {
    padding: 0.6rem;
    gap: 0.5rem;
  }

  .search-box input {
    padding: 0.55rem 2rem 0.55rem 2.2rem;
    font-size: 0.8rem;
  }

  .filter-group select {
    padding: 0.55rem 0.6rem;
    font-size: 0.78rem;
  }

  .btn-reset {
    padding: 0.55rem 0.75rem;
    font-size: 0.78rem;
  }

  /* Store Notice */
  .about-card {
    padding: 1rem;
    margin-bottom: 1.25rem;
  }

  .about-card h2 {
    font-size: 1.2rem;
  }

  .about-card p {
    font-size: 0.85rem;
  }

  .notice-badge {
    font-size: 0.65rem;
  }

  /* Footer */
  .site-footer {
    padding: 2rem 1rem 1rem;
    margin-top: 2rem;
  }

  .footer-brand {
    font-size: 1.3rem;
  }

  .footer-tagline {
    font-size: 0.85rem;
  }

  .footer-col h3 {
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
  }

  .footer-links a,
  .footer-col p {
    font-size: 0.82rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    margin-top: 1rem;
  }

  .footer-guarantee-badge {
    font-size: 0.72rem;
    padding: 0.4rem 0.7rem;
  }

  .footer-logo-img {
    height: 42px;
  }

  /* About Page */
  .about-logo-img {
    max-height: 75px;
  }

  .director-image {
    max-height: 360px;
  }

  /* View Toggles */
  .view-toggles {
    display: none;
  }

  /* Catalog Bar */
  .catalog-bar {
    margin-bottom: 0.75rem;
  }

  .result-count {
    font-size: 0.8rem;
  }
}

/* ---- Extra-small phones (below 360px) ---- */
@media (max-width: 360px) {
  .topbar {
    padding: 0.4rem 0.5rem;
  }

  .brand-logo-img {
    height: 28px;
  }

  .brand-title {
    font-size: 0.88rem;
  }

  .nav-link {
    font-size: 0.68rem;
    padding: 0.3rem 0.4rem;
  }

  .cart-toggle {
    padding: 0.35rem 0.55rem;
    font-size: 0.72rem;
  }

  .product-grid {
    gap: 0.45rem;
  }

  .card-title {
    font-size: 0.72rem;
  }

  .price {
    font-size: 0.8rem;
  }

  .add-card-btn {
    font-size: 0.65rem;
    padding: 0.3rem 0.4rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .trust-card {
    flex-direction: row;
    text-align: left;
  }
}

/* ---- Landscape phone orientation fix ---- */
@media (max-height: 500px) and (orientation: landscape) {
  .modal-backdrop {
    padding: 0.25rem;
    align-items: flex-start;
  }

  .modal-card {
    max-height: 98vh;
    max-height: 98dvh;
  }

  .modal-image-wrap {
    max-height: 35vw;
  }

  .hero {
    min-height: 180px;
  }

  .hero-overlay {
    min-height: 180px;
  }
}
