/* ═══════════════════════════════════════════════════════
   AROMYST — Global Stylesheet
   Shared across all pages
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --primary:        #1A4A3A;
  --primary-dark:   #0D2419;
  --primary-light:  #2d6b55;
  --secondary:      #C9902E;
  --secondary-light:#e8b45c;
  --accent:         #8BAF8B;
  --accent-light:   #b8d4b8;
  --bg:             #F9F5EE;
  --bg2:            #F2EDE3;
  --text:           #1a2a20;
  --text-muted:     #6b7c6b;
  --white:          #FFFFFF;
  --border:         #D8E8D8;
  --gold:           #C9902E;
  --radius:         12px;
  --radius-sm:      8px;
  --shadow:         0 8px 40px rgba(26,74,58,0.12);
  --shadow-lg:      0 20px 60px rgba(26,74,58,0.18);
  --shadow-sm:      0 2px 12px rgba(26,74,58,0.08);
  --header-h:       80px;
  --container:      1360px;
  --transition:     all 0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
img, svg, object { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.serif { font-family: 'Cormorant Garamond', serif; }
.cinzel { font-family: 'Cinzel', serif; }
.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--secondary); font-weight: 600; margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600; line-height: 1.15; color: var(--primary);
}
.section-title em { font-style: italic; color: var(--secondary); }
.section-subtitle {
  color: var(--text-muted); font-size: 15px; line-height: 1.7;
  max-width: 580px; margin: 14px auto 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px; font-weight: 600;
  font-size: 14px; transition: var(--transition); cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--secondary); color: #fff; border-color: var(--secondary);
}
.btn-primary:hover { background: var(--secondary-light); border-color: var(--secondary-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.btn-white {
  background: white; color: var(--primary); border-color: white;
}
.btn-white:hover { background: var(--bg); }
.btn-ghost {
  background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ── TOP BAR ── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  font-size: 12.5px;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.topbar a:hover { color: var(--secondary-light); }
.topbar-links { display: flex; gap: 20px; align-items: center; }
.topbar-links span { opacity: 0.35; }
.topbar-promo {
  background: linear-gradient(90deg, var(--secondary), #e8b45c, var(--secondary));
  background-size: 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite; font-weight: 600; letter-spacing: 0.3px;
}
@keyframes shimmer { 0%,100%{background-position:0%} 50%{background-position:100%} }

/* ── HEADER ── */
.header {
  background: var(--primary);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center; gap: 20px;
  min-height: var(--header-h);
}
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.logo-text .logo-name {
  font-family: 'Cinzel', serif; font-size: 18px; font-weight: 700;
  color: #fff; letter-spacing: 2px; line-height: 1;
}
.logo-text .logo-tagline {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 3px;
}

/* ── NAV ── */
.nav { display: flex; gap: 2px; align-items: center; }
.nav-link {
  color: rgba(255,255,255,0.75); padding: 10px 14px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500; transition: var(--transition);
  position: relative; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--secondary); border-radius: 2px;
}
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--primary-dark); border-radius: 10px; min-width: 200px;
  padding: 8px; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: all 0.2s ease; z-index: 999;
}
.dropdown-item {
  display: block; padding: 9px 14px; color: rgba(255,255,255,0.7);
  font-size: 13px; border-radius: 6px; transition: 0.15s;
}
.dropdown-item:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ── HEADER ACTIONS ── */
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-icon-btn {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); font-size: 16px; transition: var(--transition);
  position: relative;
}
.header-icon-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
.header-icon-btn .badge {
  position: absolute; top: -4px; right: -4px; width: 18px; height: 18px;
  background: var(--secondary); border-radius: 50%; font-size: 10px; font-weight: 700;
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.btn-whatsapp {
  background: #25D366; color: #fff; padding: 9px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 7px;
  transition: var(--transition); white-space: nowrap;
}
.btn-whatsapp:hover { background: #1aad50; transform: translateY(-1px); }
.mobile-menu-toggle {
  display: none; width: 40px; height: 40px; background: rgba(255,255,255,0.1);
  border-radius: 8px; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
}
.mobile-menu-toggle span {
  width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition);
}

/* ── TRUST BAR ── */
.trustbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trustbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { font-size: 22px; }
.trust-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--primary); }
.trust-text span { font-size: 11.5px; color: var(--text-muted); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  padding: 80px 0; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,144,46,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--secondary-light); font-weight: 600; margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 58px); font-weight: 600; line-height: 1.15;
}
.page-hero h1 em { font-style: italic; color: var(--secondary-light); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.7; max-width: 560px; margin: 16px auto 0; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--secondary-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ── SECTION COMMON ── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-divider {
  width: 60px; height: 3px; background: var(--secondary);
  border-radius: 2px; margin: 20px auto 0;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid transparent;
}
.product-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow);
  border-color: rgba(201,144,46,0.25);
}
.product-img-wrap {
  position: relative; background: var(--bg); padding: 20px;
  display: flex; align-items: center; justify-content: center;
  height: 220px; overflow: hidden;
}
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--secondary); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.product-badge.new { background: var(--primary); }
.product-badge.hot { background: #e04444; }
.product-actions {
  position: absolute; top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
  opacity: 0; transform: translateX(8px); transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 34px; height: 34px; background: var(--white); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-muted); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-action-btn:hover { background: var(--secondary); color: #fff; }
.product-info { padding: 18px 20px 20px; }
.product-category {
  font-size: 10px; color: var(--secondary); letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 5px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif; font-size: 17px;
  font-weight: 600; color: var(--primary); line-height: 1.3; margin-bottom: 8px;
}
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { color: var(--secondary); font-size: 12px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: var(--text-muted); }
.product-coverage { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.product-coverage i { color: var(--secondary); margin-right: 4px; }
.product-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }
.price-current { font-size: 18px; font-weight: 700; color: var(--primary); }
.price-original { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.price-save { font-size: 11px; background: rgba(201,144,46,0.12); color: var(--secondary); padding: 2px 7px; border-radius: 20px; font-weight: 600; }
.product-sub { font-size: 11px; color: var(--secondary); margin-bottom: 12px; }
.product-sub i { margin-right: 4px; }
.btn-add-cart {
  width: 100%; padding: 10px; background: var(--primary); color: #fff;
  border-radius: 8px; font-size: 13px; font-weight: 600; display: flex;
  align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition); border: 2px solid var(--primary);
}
.btn-add-cart:hover { background: transparent; color: var(--primary); }

/* ── PRODUCT GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ── FOOTER ── */
.footer { background: var(--primary-dark); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr;
  gap: 40px; padding-bottom: 52px;
}
.footer-brand .logo-name { font-size: 22px; color: #fff; }
.footer-brand p {
  font-size: 13.5px; line-height: 1.75; margin: 18px 0 22px;
  color: rgba(255,255,255,0.45);
}
.footer-social { display: flex; gap: 9px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,0.07); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.6); font-size: 15px;
  transition: var(--transition);
}
.social-btn:hover { background: var(--secondary); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.45); font-size: 13.5px; transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--secondary-light); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-icon { color: var(--secondary); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; }
.footer-contact-text strong { color: rgba(255,255,255,0.85); display: block; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--secondary-light); }
.payment-icons { display: flex; gap: 8px; }
.payment-icon {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 5px;
  letter-spacing: 0.5px;
}

/* ── FAB & SCROLL TOP ── */
.fab-whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: var(--transition); animation: fabPulse 2.5s infinite;
}
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,0.6); }
@keyframes fabPulse { 0%,100%{box-shadow:0 6px 28px rgba(37,211,102,0.45)} 50%{box-shadow:0 6px 40px rgba(37,211,102,0.65)} }
.scroll-top {
  position: fixed; bottom: 94px; right: 28px; z-index: 997;
  width: 42px; height: 42px; background: var(--primary); color: #fff;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 15px; box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(10px); transition: var(--transition);
  pointer-events: none;
}
.scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ── NOTIFICATION TOAST ── */
.notification {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--primary-dark); color: #fff; padding: 14px 24px;
  border-radius: 10px; font-size: 14px; font-weight: 500; z-index: 9999;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg);
  transition: transform 0.35s ease; white-space: nowrap;
}
.notification.show { transform: translateX(-50%) translateY(0); }
.notification i { color: var(--secondary-light); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── MOBILE MENU ── */
.mobile-nav {
  display: none; flex-direction: column; gap: 3px;
  background: var(--primary-dark); padding: 16px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  color: rgba(255,255,255,0.75); padding: 10px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; transition: var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: rgba(255,255,255,0.08); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1/-1; }
  .header-inner { grid-template-columns: 180px 1fr auto; gap: 12px; }
}
@media (max-width: 768px) {
  .nav, .topbar-links { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid .footer-brand { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trustbar-inner { gap: 14px; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}
