/*
Theme Name: Azelle Fragrances
Theme URI: https://azellefragrances.com
Author: Azelle
Description: Premium luxury perfume WordPress theme. White background, gold accents. WooCommerce ready with Razorpay, Google Login, OTP Login.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: azelle
Tags: woocommerce, luxury, perfume, ecommerce, white
*/

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

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --white:       #ffffff;
  --off-white:   #faf9f7;
  --cream:       #f5f2ec;
  --cream-2:     #ede9e0;
  --gold:        #b8965a;
  --gold-dark:   #8a6d3b;
  --gold-light:  #d4b07a;
  --gold-pale:   #f5e9d0;
  --black:       #0f0e0c;
  --charcoal:    #2a2824;
  --grey-700:    #4a4744;
  --grey-500:    #7a7770;
  --grey-300:    #c2bdb5;
  --grey-100:    #f0ede8;
  --border:      rgba(184,150,90,0.18);
  --border-dark: rgba(184,150,90,0.35);
  --shadow:      0 8px 48px rgba(0,0,0,0.07);
  --shadow-gold: 0 4px 24px rgba(184,150,90,0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
  --header-h:    80px;
  --max-w:       1340px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--black);
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.3rem; }
p  { font-size: 0.92rem; line-height: 1.85; color: var(--grey-700); font-weight: 300; }

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 0.75rem;
}
.label-tag::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section-alt { background: var(--off-white); }
.section-cream { background: var(--cream); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 2.5rem;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.btn-gold:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }
.btn-gold:hover { color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.azelle-announcement {
  background: var(--gold);
  color: var(--white);
  padding: 0.55rem 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}
.announcement-track {
  display: inline-flex;
  animation: azelleTicker 30s linear infinite;
  white-space: nowrap;
}
.announcement-track span { padding: 0 3rem; }
@keyframes azelleTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
#azelle-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: all 0.4s var(--ease);
}
#azelle-header.scrolled {
  height: 64px;
  box-shadow: var(--shadow);
}
.header-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.azelle-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--black);
  line-height: 1;
}
.logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 1px;
}

/* Nav */
.azelle-nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.azelle-nav a {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--grey-700);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.azelle-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.azelle-nav a:hover,
.azelle-nav .current-menu-item > a,
.azelle-nav .current_page_item > a { color: var(--gold); }
.azelle-nav a:hover::after,
.azelle-nav .current-menu-item > a::after { width: 100%; }

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.h-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-700);
  transition: color 0.3s;
  position: relative;
  border-radius: 50%;
}
.h-icon:hover { color: var(--gold); }
.h-icon svg { width: 18px; height: 18px; }
.cart-count-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--gold);
  color: white;
  width: 16px; height: 16px;
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--black);
  transition: all 0.35s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  top: 36px;
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer a {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav-drawer a:hover { color: var(--gold); }
.mobile-nav-drawer .nav-divider {
  width: 1px; height: 40px;
  background: var(--border-dark);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.azelle-page-hero {
  height: 280px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.azelle-page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 2px;
  background: var(--gold);
}
.azelle-page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--black); }
.azelle-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  color: var(--grey-500);
  letter-spacing: 0.12em;
  margin-top: 0.75rem;
}
.azelle-breadcrumb a { color: var(--grey-500); }
.azelle-breadcrumb a:hover { color: var(--gold); }
.azelle-breadcrumb span.sep { color: var(--gold); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.azelle-hero {
  min-height: calc(100vh - var(--header-h) - 36px);
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 5rem;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-pretitle::before {
  content: '';
  width: 45px; height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 0.9rem;
  color: var(--grey-500);
  max-width: 380px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-buttons { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-n {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 4px;
  font-weight: 400;
}
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }
.hero-img-card {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.75rem;
  border-left: 2px solid var(--gold);
  box-shadow: var(--shadow);
}
.hero-img-card .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--black);
  font-weight: 400;
  line-height: 1;
}
.hero-img-card .lbl {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 4px;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.azelle-marquee {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.1rem 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  animation: marqueeRoll 35s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  font-weight: 400;
}
.marquee-gem { color: var(--gold); font-size: 0.5rem; }
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.section-head-center {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head-center .label-tag { justify-content: center; }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.azelle-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Product Card */
.azelle-product-card {
  position: relative;
  background: var(--white);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.azelle-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.apc-image {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
}
.apc-image img,
.apc-image .woocommerce-product-gallery__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.azelle-product-card:hover .apc-image img { transform: scale(1.07); }

/* Second image on hover */
.apc-image .secondary-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.azelle-product-card:hover .apc-image .secondary-img { opacity: 1; }

.apc-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: white;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  font-weight: 700;
  z-index: 3;
}
.apc-badge.new { background: var(--black); }
.apc-badge.sale { background: #c0392b; }

.apc-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.38s var(--ease);
  z-index: 4;
  display: flex;
  gap: 0.4rem;
}
.azelle-product-card:hover .apc-actions { transform: translateY(0); }

.btn-atc-mini {
  flex: 1;
  padding: 0.7rem 0.5rem;
  background: var(--black);
  color: white;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-atc-mini:hover { background: var(--gold); }

.btn-wl {
  width: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--grey-700);
}
.btn-wl:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-wl svg { width: 15px; height: 15px; }

.apc-info { padding: 1.1rem 0.25rem 0.25rem; }
.apc-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.25rem;
  display: block;
  transition: color 0.3s;
}
.azelle-product-card:hover .apc-name { color: var(--gold); }
.apc-note {
  font-size: 0.65rem;
  color: var(--grey-500);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  font-weight: 300;
}
.apc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.apc-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  font-family: var(--font-body);
}
.apc-price del { color: var(--grey-300); font-size: 0.82rem; margin-left: 0.4rem; font-weight: 300; }
.apc-stars { color: var(--gold); font-size: 0.65rem; letter-spacing: 1px; }

/* ============================================================
   BRAND STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.story-img-col {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.story-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.story-img-col:hover img { transform: scale(1.04); }
.story-img-accent {
  position: absolute;
  top: 2.5rem; right: -1.5rem;
  width: 100px; height: 140px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  pointer-events: none;
}
.story-content {
  background: var(--off-white);
  padding: 5rem 4.5rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.story-content h2 { margin-bottom: 0; }
.story-divider {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.story-content blockquote {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
  line-height: 1.5;
  font-weight: 300;
}
.story-content p { margin-bottom: 1rem; }

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.azelle-cats-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 2px;
  background: var(--cream-2);
}
.azelle-cat {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
}
.azelle-cat:first-child { grid-row: span 2; }
.azelle-cat img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  opacity: 0.85;
}
.azelle-cat:hover img { transform: scale(1.07); opacity: 0.7; }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,14,12,0.7) 0%, transparent 55%);
}
.cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.5rem;
}
.cat-label h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  font-weight: 400;
}
.cat-label span {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.cat-arrow {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.8rem;
}
.azelle-cat:hover .cat-arrow { opacity: 1; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.why-item {
  padding: 2.75rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.4s;
  position: relative;
}
.why-item:last-child { border-right: none; }
.why-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.why-item:hover { background: var(--cream); }
.why-item:hover::after { transform: scaleX(1); }
.why-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  transition: border-color 0.3s, background 0.3s;
}
.why-icon svg { width: 22px; height: 22px; color: var(--gold); }
.why-item:hover .why-icon { border-color: var(--gold); background: var(--gold-pale); }
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.why-item p { font-size: 0.8rem; line-height: 1.8; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.t-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
  background: var(--white);
  transition: box-shadow 0.4s, transform 0.4s;
}
.t-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.t-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}
.t-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; }
.t-text {
  font-size: 0.88rem;
  color: var(--grey-700);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-weight: 500; font-size: 0.88rem; color: var(--black); }
.t-meta { font-size: 0.65rem; color: var(--grey-500); margin-top: 2px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-wrap {
  background: var(--black);
  padding: 5rem 0;
  text-align: center;
}
.newsletter-wrap .label-tag { color: var(--gold); justify-content: center; }
.newsletter-wrap h2 { color: var(--white); margin-bottom: 0.75rem; }
.newsletter-wrap p { color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; }
.newsletter-form-inner {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
}
.newsletter-form-inner input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  color: white;
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
}
.newsletter-form-inner input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form-inner button {
  padding: 1rem 1.75rem;
  background: var(--gold);
  color: white;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}
.newsletter-form-inner button:hover { background: var(--gold-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
#azelle-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4.5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-brand-logo .logo-main { color: var(--white); font-size: 1.7rem; }
.footer-brand-logo .logo-sub { color: var(--gold); }
.footer-brand-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-top: 1.25rem;
  line-height: 1.9;
  max-width: 240px;
  font-weight: 300;
}
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.f-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.38);
  font-size: 0.75rem;
  transition: all 0.3s;
}
.f-social:hover { border-color: var(--gold); color: var(--gold); }
.f-social svg { width: 15px; height: 15px; }

.footer-col h5 {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  transition: all 0.3s;
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.68rem; color: rgba(255,255,255,0.22); }
.footer-pay { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pay-chip {
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.azelle-wa {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: waPulse 3s ease-in-out infinite;
  transition: transform 0.3s;
}
.azelle-wa:hover { transform: scale(1.1); }
.azelle-wa svg { width: 26px; height: 26px; fill: white; }
@keyframes waPulse {
  0%,100%{ box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%{ box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* ============================================================
   STICKY ADD TO CART
   ============================================================ */
.azelle-sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 600;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
.azelle-sticky-atc.visible { display: flex; }
.sticky-product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--black);
}
.sticky-product-price { font-size: 1rem; color: var(--gold); font-weight: 500; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.azelle-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 3rem 0 6rem;
}

/* Gallery */
.single-gallery { position: sticky; top: 100px; }
.gallery-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  position: relative;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-main:hover img { transform: scale(1.04); }
.gallery-thumbs { display: flex; gap: 0.75rem; }
.g-thumb {
  width: 80px; height: 100px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s;
  background: var(--cream);
  flex-shrink: 0;
}
.g-thumb.active, .g-thumb:hover { border-color: var(--gold); }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.single-info { padding-top: 0.5rem; }
.single-brand {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.single-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.single-subtitle { font-size: 0.82rem; color: var(--grey-500); margin-bottom: 1.5rem; font-weight: 300; }

.single-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.rating-stars { color: var(--gold); font-size: 0.82rem; }
.rating-count { font-size: 0.72rem; color: var(--grey-500); }

.single-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.single-price del { font-size: 1.5rem; color: var(--grey-300); margin-left: 0.75rem; font-weight: 300; }
.price-note { font-size: 0.68rem; color: var(--grey-500); margin-bottom: 2rem; font-weight: 300; }

/* Variants */
.variant-block { margin-bottom: 1.75rem; }
.variant-label-row {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  display: block;
}
.variant-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.v-btn {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--grey-700);
  font-size: 0.78rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 300;
}
.v-btn:hover, .v-btn.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* Quantity */
.qty-block { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
}
.qty-btn {
  width: 44px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-700);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  border: none;
  font-family: var(--font-body);
}
.qty-btn:hover { background: var(--cream); color: var(--black); }
.qty-input {
  width: 52px; height: 50px;
  text-align: center;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  font-weight: 400;
}
.stock-note { font-size: 0.68rem; color: var(--grey-500); font-weight: 300; }

.btn-buy-now {
  width: 100%;
  padding: 1.1rem;
  background: var(--black);
  color: white;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 0.75rem;
}
.btn-buy-now:hover { background: var(--gold); }
.btn-add-cart-full {
  width: 100%;
  padding: 1.1rem;
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 2rem;
}
.btn-add-cart-full:hover { background: var(--black); color: white; }

/* Trust */
.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.trust-cell {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.trust-cell:last-child { border-right: none; }
.trust-cell .icon { font-size: 1.2rem; margin-bottom: 0.3rem; }
.trust-cell span { font-size: 0.6rem; color: var(--grey-500); letter-spacing: 0.08em; display: block; font-weight: 300; }

/* Notes */
.fragrance-notes-block { margin-bottom: 2rem; }
.fnb-title { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 1rem; font-weight: 500; }
.note-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.65rem; }
.note-type { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); width: 46px; flex-shrink: 0; font-weight: 600; }
.note-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.note-chip { padding: 0.2rem 0.75rem; border: 1px solid var(--border); font-size: 0.7rem; color: var(--grey-700); font-weight: 300; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-wrap {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  padding-bottom: 6rem;
}
.shop-filters { padding-top: 1rem; }
.filter-block { margin-bottom: 2.5rem; }
.filter-block-title {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.filter-opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.38rem 0;
  font-size: 0.8rem;
  color: var(--grey-700);
  cursor: pointer;
  font-weight: 300;
  transition: color 0.3s;
}
.filter-opt:hover { color: var(--black); }
.filter-opt input[type="checkbox"] { accent-color: var(--gold); width: 13px; height: 13px; cursor: pointer; }

.shop-main {}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.shop-count { font-size: 0.78rem; color: var(--grey-500); font-weight: 300; }
.shop-sort {
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  background: white;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--grey-700);
  outline: none;
  cursor: pointer;
}
.shop-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.av-card {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.4s;
}
.av-card:last-child { border-right: none; }
.av-card:hover { background: var(--cream); }
.av-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.av-card h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.75rem; }
.av-card p { font-size: 0.78rem; line-height: 1.8; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 4rem 0 6rem;
}
.contact-form-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--off-white);
}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; font-weight: 600; font-family: var(--font-body); }
.contact-info-item span { font-size: 0.82rem; color: var(--grey-700); font-weight: 300; line-height: 1.7; }

/* Form Inputs */
.azelle-field { margin-bottom: 1.25rem; }
.azelle-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-700);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.azelle-input,
.azelle-textarea,
.azelle-select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s;
  font-weight: 300;
}
.azelle-input:focus,
.azelle-textarea:focus { border-color: var(--gold); }
.azelle-input::placeholder, .azelle-textarea::placeholder { color: var(--grey-300); }
.azelle-textarea { resize: none; }
.azelle-select { cursor: pointer; background: var(--white); }

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce-notices-wrapper { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* Buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--gold) !important;
  color: white !important;
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  padding: 1rem 2rem !important;
  transition: background 0.3s !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--gold-dark) !important;
  color: white !important;
}

/* Product gallery zoom */
.woocommerce-product-gallery { margin-bottom: 1rem; }
.woocommerce-product-gallery__image { cursor: zoom-in; }

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Cart */
.woocommerce-cart table.cart img { width: 80px !important; height: auto; }
.woocommerce table.shop_table { border: 1px solid var(--border); border-radius: 0; }
.woocommerce table.shop_table th { background: var(--cream); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black); font-family: var(--font-body); font-weight: 600; }

/* Checkout */
.woocommerce-checkout #payment { background: var(--cream); border-radius: 0; border: 1px solid var(--border); }
.woocommerce form .form-row label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-body); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--gold); box-shadow: none; outline: none; }

/* My Account */
.woocommerce-MyAccount-navigation ul { display: flex; flex-direction: column; gap: 0.25rem; }
.woocommerce-MyAccount-navigation a { font-size: 0.78rem; color: var(--grey-700); padding: 0.6rem 1rem; border: 1px solid var(--border); display: block; transition: all 0.3s; }
.woocommerce-MyAccount-navigation a:hover, .woocommerce-MyAccount-navigation li.is-active a { background: var(--gold); color: white; border-color: var(--gold); }

/* Rating stars */
.star-rating { color: var(--gold) !important; font-size: 0.85rem; }
.woocommerce-product-rating .star-rating { color: var(--gold) !important; }

/* Remove WooCommerce default product layout */
.woocommerce ul.products { display: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.75s var(--ease); }
.fade-in.in { opacity: 1; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .azelle-product-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .shop-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .azelle-nav { display: none; }
  .hamburger { display: flex; }
  .azelle-hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-left { padding: 4rem 1.5rem 3rem; order: 2; }
  .hero-right { height: 55vw; min-height: 280px; order: 1; }
  .story-grid { grid-template-columns: 1fr; }
  .story-content { padding: 3rem 1.5rem; border-left: none; border-top: 1px solid var(--border); }
  .azelle-cats-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .azelle-cat:first-child { grid-row: span 1; grid-column: span 2; height: 300px; }
  .azelle-product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; border-bottom: 1px solid var(--border); }
  .why-item:last-child { border-bottom: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .azelle-single-product { grid-template-columns: 1fr; gap: 2.5rem; }
  .single-gallery { position: static; }
  .shop-wrap { grid-template-columns: 1fr; }
  .shop-filters { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-values-grid { grid-template-columns: 1fr; }
  .av-card { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .container { padding: 0 1.25rem; }
}
@media (max-width: 560px) {
  .azelle-product-grid { grid-template-columns: 1fr; }
  .shop-grid-3 { grid-template-columns: 1fr; }
  .trust-band { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .azelle-cats-grid { grid-template-columns: 1fr; }
  .azelle-cat:first-child { grid-column: span 1; }
}
</style>
