/* ============================================================
   AAJ Furnishing Works — Main Stylesheet
   Brand Colors: Royal Blue #1B7FD4 | Silver/Chrome | White
   FCT Abuja, Nigeria | CAC Reg. 2006
   ============================================================ */

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

:root {
  /* === BRAND PALETTE (from logo) === */
  --blue-primary: #1B7FD4;
  --blue-dark: #0F5FA8;
  --blue-darker: #0A4580;
  --blue-light: #4A9FE0;
  --blue-pale: #D6EAFA;
  --blue-bg: #EAF4FD;

  --silver: #C8D0DC;
  --silver-light: #E8EDF4;
  --silver-dark: #8A95A8;
  --chrome: #B0BCC8;

  --dark: #0D1B2A;
  --dark2: #152030;
  --dark3: #1E2E40;
  --mid: #2E4A62;
  --muted: #6E8AA0;
  --light: #F0F5FA;
  --lighter: #F7FAFD;
  --white: #FFFFFF;

  /* WhatsApp */
  --whatsapp: #25D366;
  --wa-dark: #1DA851;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  /* Spacing & Radius */
  --radius: 6px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 4px 24px rgba(27,127,212,0.1);
  --shadow-lg: 0 12px 48px rgba(27,127,212,0.18);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--lighter);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul, ol { list-style: none; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--blue-primary); border-radius: 3px; }

/* === UTILITIES === */
.container { width: min(1240px, 90vw); margin: 0 auto; }
.section-label {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blue-primary); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px;
  background: var(--blue-primary); border-radius: 1px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.12;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--blue-primary); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius); transition: var(--transition); cursor: pointer;
  border: 2px solid transparent;
}
.btn-blue { background: var(--blue-primary); color: var(--white); border-color: var(--blue-primary); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--blue-primary); }
.btn-wa { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); }
.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); transform: translateY(-1px); }
.btn-silver { background: var(--silver-light); color: var(--dark); border-color: var(--silver); }
.btn-silver:hover { background: var(--silver); }
.btn-sm { padding: 9px 20px; font-size: 12px; }
.btn-lg { padding: 18px 42px; font-size: 14px; }

/* === TAGS === */
.tag { display: inline-block; padding: 4px 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 3px; }
.tag-sale { background: #D63031; color: var(--white); }
.tag-new { background: var(--blue-primary); color: var(--white); }
.tag-featured { background: var(--dark); color: var(--white); }

/* === ANNOUNCEMENT BAR === */
#announce {
  background: var(--blue-darker);
  color: rgba(255,255,255,0.9);
  text-align: center; padding: 11px 48px;
  font-size: 12px; letter-spacing: 0.06em;
  position: relative;
}
#announce a { color: var(--blue-pale); text-decoration: underline; }
.close-announce {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5); font-size: 20px;
  cursor: pointer; background: none; border: none; line-height: 1;
}
#announce.hidden { display: none; }

/* === HEADER === */
#main-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27,127,212,0.12);
  transition: var(--transition);
}
#main-header.scrolled { box-shadow: 0 2px 24px rgba(27,127,212,0.12); }

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 78px;
}
.site-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.site-logo img { height: 56px; width: auto; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 600; color: var(--blue-primary); line-height: 1;
  letter-spacing: 0.03em;
}
.logo-tagline {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}

nav.main-nav { display: flex; align-items: center; gap: 32px; }
nav.main-nav a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--mid); transition: color 0.2s;
  position: relative; padding-bottom: 4px;
}
nav.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--blue-primary);
  border-radius: 1px; transition: width 0.3s;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--blue-primary); }
nav.main-nav a:hover::after, nav.main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--dark);
  background: transparent; position: relative;
}
.icon-btn:hover { background: var(--blue-bg); color: var(--blue-primary); }
.icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-badge {
  position: absolute; top: 3px; right: 3px;
  width: 17px; height: 17px;
  background: var(--blue-primary); color: var(--white);
  font-size: 9px; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 1px; transition: var(--transition); }

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1500;
  background: var(--dark); transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mm-inner { padding: 28px 32px 60px; min-height: 100vh; display: flex; flex-direction: column; }
.mm-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 56px; }
.mm-logo { display: flex; align-items: center; gap: 10px; }
.mm-logo img { height: 44px; }
.mm-logo-text { font-family: var(--font-display); font-size: 18px; color: var(--white); font-weight: 600; }
.mm-close { color: rgba(255,255,255,0.4); font-size: 28px; cursor: pointer; background: none; border: none; }
.mm-links { display: flex; flex-direction: column; gap: 0; }
.mm-links a {
  font-family: var(--font-display); font-size: 2.6rem;
  font-weight: 300; color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0; transition: color 0.2s; line-height: 1;
}
.mm-links a:hover { color: var(--blue-light); }
.mm-bottom { margin-top: auto; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.mm-contact-info { color: rgba(255,255,255,0.4); font-size: 13px; margin-bottom: 16px; }
.mm-contact-info a { color: var(--blue-pale); }
.mm-socials { display: flex; gap: 20px; }
.mm-socials a { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.mm-socials a:hover { color: var(--blue-light); }

/* === SEARCH OVERLAY === */
.search-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,27,42,0.96);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  padding-top: 18vh;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box { width: min(700px, 90vw); position: relative; }
.search-input-field {
  width: 100%; background: transparent; border: none;
  border-bottom: 2px solid var(--blue-primary);
  padding: 16px 52px 16px 0;
  font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300; color: var(--white); outline: none;
  caret-color: var(--blue-primary);
}
.search-input-field::placeholder { color: rgba(255,255,255,0.25); }
.search-close-btn { position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.3); font-size: 30px; cursor: pointer; }
.search-results-hint { color: rgba(255,255,255,0.35); font-size: 13px; margin-top: 20px; letter-spacing: 0.05em; }

/* === HERO === */
.hero-section {
  min-height: calc(100vh - 118px);
  background: var(--dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 90% at 75% 50%, rgba(27,127,212,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 5% 80%, rgba(27,127,212,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 118px); gap: 0; width: 100%;
}
.hero-content {
  display: flex; flex-direction: column;
  justify-content: center; padding: 80px 60px 80px 0;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--blue-light); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 300; color: var(--white);
  line-height: 1.05; margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--blue-light); }
.hero-subtitle {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85; margin-bottom: 44px; max-width: 420px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex; gap: 44px;
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 300; color: var(--white); line-height: 1;
}
.stat-num span { color: var(--blue-light); }
.stat-label {
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-top: 5px;
}
.hero-visual { position: relative; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0;
  background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-left-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 30%);
}
.hero-product-chip {
  position: absolute; bottom: 60px; left: -24px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  padding: 20px 24px; border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(27,127,212,0.25);
  min-width: 200px;
  animation: chipFloat 4s ease-in-out infinite;
}
@keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.chip-label { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.chip-name { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--dark); }
.chip-price { font-size: 16px; font-weight: 600; color: var(--blue-primary); margin-top: 4px; }
.scroll-cue {
  position: absolute; bottom: 32px; left: 0;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.3); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue-line { width: 36px; height: 1px; background: rgba(255,255,255,0.2); }

/* === MARQUEE === */
.marquee-bar {
  background: var(--blue-primary);
  padding: 13px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; animation: marqueeScroll 28s linear infinite; }
.marquee-track span {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); padding: 0 32px;
}
.marquee-track span::after { content: '✦'; margin-left: 32px; opacity: 0.4; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* === CATEGORIES === */
.categories-section { padding: 100px 0; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px; margin-top: 56px;
}
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); cursor: pointer;
  aspect-ratio: 3/4; transition: var(--transition);
}
.cat-card:first-child { grid-row: span 2; aspect-ratio: auto; }
.cat-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.cat-card img, .cat-bg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card:hover .cat-bg { transform: scale(1.06); }
.cat-mask {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
}
.cat-name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.cat-count { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-pale); }
.cat-arrow {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.cat-card:hover .cat-arrow { opacity: 1; background: var(--blue-primary); border-color: var(--blue-primary); }
.cat-arrow svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* === PRODUCTS GRID === */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 28px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  border: 1px solid rgba(27,127,212,0.08);
  transition: var(--transition); cursor: pointer;
}
.product-card:hover {
  border-color: rgba(27,127,212,0.3);
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
}
.prod-img-area { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--blue-bg); }
.prod-img-area img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .prod-img-area img { transform: scale(1.05); }
.prod-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.prod-tags { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 5px; z-index: 2; }
.prod-hover-actions {
  position: absolute; right: 12px; top: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(10px);
  transition: var(--transition); z-index: 2;
}
.product-card:hover .prod-hover-actions { opacity: 1; transform: translateX(0); }
.phab {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: var(--transition); border: none; cursor: pointer;
}
.phab:hover { background: var(--blue-primary); }
.phab svg { width: 16px; height: 16px; stroke: var(--dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.phab:hover svg { stroke: var(--white); }

/* Product Gallery with thumbnails */
.prod-gallery { position: relative; }
.gallery-main { aspect-ratio: 4/3; overflow: hidden; background: var(--blue-bg); position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; cursor: zoom-in; }
.gallery-main img:hover { transform: scale(1.08); }
.gallery-thumbs { display: flex; gap: 8px; padding: 10px; overflow-x: auto; background: var(--lighter); }
.gallery-thumb { width: 70px; height: 55px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.gallery-thumb.active { border-color: var(--blue-primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.zoom-btn {
  position: absolute; bottom: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.9); display: flex;
  align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.zoom-btn svg { width: 16px; height: 16px; stroke: var(--dark); fill: none; stroke-width: 2; }

.prod-info { padding: 20px; }
.prod-category { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 6px; }
.prod-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.prod-stars { color: var(--blue-primary); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.prod-stars span { color: var(--muted); font-size: 11px; margin-left: 4px; letter-spacing: 0; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.prod-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--dark); }
.prod-old-price { font-size: 0.9rem; color: var(--muted); text-decoration: line-through; margin-left: 4px; }
.wa-order-btn {
  background: var(--whatsapp); color: var(--white);
  border: none; padding: 8px 14px; border-radius: var(--radius);
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  transition: var(--transition); font-family: var(--font-body);
  white-space: nowrap;
}
.wa-order-btn:hover { background: var(--wa-dark); transform: scale(1.03); }
.wa-order-btn svg { width: 13px; height: 13px; fill: white; flex-shrink: 0; }

/* === SHOP SECTION === */
.shop-section { padding: 100px 0; background: var(--white); }
.shop-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
.filter-tabs { display: flex; border: 1.5px solid rgba(27,127,212,0.2); border-radius: var(--radius); overflow: hidden; }
.filter-tab {
  padding: 10px 22px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: var(--transition);
  border: none; background: none; font-family: var(--font-body);
}
.filter-tab.active { background: var(--blue-primary); color: var(--white); }
.filter-tab:hover:not(.active) { background: var(--blue-bg); color: var(--blue-primary); }

/* === WHY US === */
.why-section { padding: 100px 0; background: var(--dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.why-img-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; position: relative; }
.why-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--blue-primary); padding: 28px 24px;
  border-radius: var(--radius-lg); text-align: center;
  border: 4px solid var(--dark);
}
.why-badge-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 300; color: var(--white); line-height: 1; }
.why-badge-label { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.why-feature { display: flex; gap: 14px; }
.why-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1.5px solid rgba(27,127,212,0.35);
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
}
.why-icon svg { width: 20px; height: 20px; stroke: var(--blue-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-feat-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.why-feat-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* === TESTIMONIALS === */
.testimonials-section { padding: 100px 0; }
.test-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 56px; }
.test-card {
  background: var(--white); border: 1.5px solid rgba(27,127,212,0.1);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--transition);
}
.test-card:hover { border-color: rgba(27,127,212,0.35); box-shadow: var(--shadow); }
.test-stars { color: var(--blue-primary); font-size: 14px; margin-bottom: 16px; }
.test-text {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 300; font-style: italic;
  color: var(--mid); line-height: 1.8; margin-bottom: 24px;
}
.test-footer { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--light); }
.test-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue-bg); display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px;
  font-weight: 500; color: var(--blue-primary); flex-shrink: 0;
}
.test-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.test-location { font-size: 12px; color: var(--muted); }

/* === BLOG MARQUEE === */
.blog-section { padding: 100px 0; background: var(--blue-bg); overflow: hidden; }
.blog-scroll-wrapper { overflow: hidden; margin-top: 56px; }
.blog-scroll-track { display: flex; gap: 24px; animation: blogScroll 40s linear infinite; width: max-content; }
.blog-scroll-track:hover { animation-play-state: paused; }
@keyframes blogScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.blog-card {
  width: 340px; flex-shrink: 0; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(27,127,212,0.1);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-img-wrap { height: 200px; overflow: hidden; background: var(--blue-bg); }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 12px; margin-bottom: 10px; align-items: center; }
.blog-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue-primary); }
.blog-date { font-size: 11px; color: var(--muted); }
.blog-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-primary); display: inline-flex; align-items: center; gap: 5px; }
.blog-read-more svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.blog-card:hover .blog-read-more svg { transform: translateX(4px); }

/* === FAQ === */
.faq-section { padding: 100px 0; }
.faq-wrap { max-width: 780px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid rgba(27,127,212,0.12); }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 22px 0;
  font-size: 15px; font-weight: 500; color: var(--dark);
  background: none; border: none; text-align: left;
  cursor: pointer; font-family: var(--font-body); gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(27,127,212,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.faq-icon svg { width: 13px; height: 13px; stroke: var(--muted); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--blue-primary); border-color: var(--blue-primary); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); stroke: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding: 0 0 22px; font-size: 14px; color: var(--muted); line-height: 1.85; }

/* === CTA BANNER === */
.cta-banner {
  padding: 100px 0; background: var(--blue-darker);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(27,127,212,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300; color: var(--white); margin-bottom: 16px;
}
.cta-banner h2 em { font-style: italic; color: var(--blue-pale); }
.cta-banner p { color: rgba(255,255,255,0.55); font-size: 15px; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === PAGE HERO === */
.page-hero {
  padding: 88px 0 72px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-darker) 100%);
  text-align: center;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.breadcrumb a { color: var(--blue-pale); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--white); margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.5); font-size: 15px; }

/* === SHOP LAYOUT === */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 44px; padding: 60px 0; }
.sidebar { position: sticky; top: 100px; height: fit-content; }
.sidebar-block { margin-bottom: 36px; }
.sidebar-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-primary); }
.sidebar-cats-list { display: flex; flex-direction: column; gap: 3px; }
.sidebar-cat-btn {
  padding: 10px 14px; border-radius: var(--radius);
  font-size: 13px; color: var(--mid); cursor: pointer;
  transition: var(--transition); display: flex;
  justify-content: space-between; align-items: center;
  border: none; background: none; font-family: var(--font-body); width: 100%; text-align: left;
}
.sidebar-cat-btn:hover, .sidebar-cat-btn.active { background: var(--blue-primary); color: var(--white); }
.sidebar-cat-btn span { font-size: 11px; opacity: 0.7; }
.sort-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: var(--white);
  border-radius: var(--radius); border: 1px solid rgba(27,127,212,0.1);
  margin-bottom: 28px;
}
.sort-count { font-size: 13px; color: var(--muted); }
select.sort-sel {
  border: 1px solid rgba(27,127,212,0.2); border-radius: var(--radius);
  padding: 8px 12px; font-size: 13px;
  font-family: var(--font-body); color: var(--dark);
  background: var(--white); cursor: pointer;
}

/* === PRODUCT MODAL === */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,42,0.75); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; max-width: 940px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  transform: scale(0.95); transition: transform 0.3s;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close-btn {
  position: fixed; top: 20px; right: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--dark); z-index: 2001;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.modal-gallery { background: var(--blue-bg); }
.modal-gallery-main { height: 340px; overflow: hidden; cursor: zoom-in; }
.modal-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.modal-gallery-main img:hover { transform: scale(1.1); }
.modal-gallery-thumbs { display: flex; gap: 8px; padding: 12px; overflow-x: auto; }
.modal-thumb { width: 68px; height: 54px; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; flex-shrink: 0; }
.modal-thumb.active { border-color: var(--blue-primary); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 36px; }
.modal-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 8px; }
.modal-name { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--dark); margin-bottom: 12px; line-height: 1.2; }
.modal-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.modal-price { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--dark); }
.modal-old { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.modal-desc { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 24px; }
.modal-features-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.modal-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--mid); }
.modal-feature svg { width: 16px; height: 16px; stroke: var(--blue-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* === LIGHTBOX === */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: white; font-size: 32px; cursor: pointer; background: none; border: none; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; background: rgba(255,255,255,0.1);
  border: none; cursor: pointer; width: 48px; height: 48px;
  border-radius: 50%; font-size: 20px; display: flex;
  align-items: center; justify-content: center; transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--blue-primary); }

/* === CART DRAWER === */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1799; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: 420px; max-width: 92vw;
  background: var(--white); z-index: 1800;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 40px rgba(27,127,212,0.12);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--light); }
.cart-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.cart-close { background: none; border: none; font-size: 24px; color: var(--muted); cursor: pointer; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--lighter); }
.cart-item-thumb { width: 80px; height: 70px; border-radius: var(--radius); background: var(--blue-bg); overflow: hidden; flex-shrink: 0; }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; color: var(--dark); }
.cart-item-price { font-size: 13px; color: var(--blue-primary); font-weight: 600; }
.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-ctrl { width: 28px; height: 28px; border: 1.5px solid rgba(27,127,212,0.2); border-radius: var(--radius); background: none; font-size: 15px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.qty-ctrl:hover { background: var(--blue-primary); color: white; border-color: var(--blue-primary); }
.qty-num { font-size: 14px; font-weight: 500; min-width: 22px; text-align: center; }
.cart-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 18px; align-self: flex-start; transition: color 0.2s; }
.cart-remove:hover { color: #D63031; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--light); }
.cart-subtotal-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 14px; }
.cart-total-num { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.cart-wa-note { font-size: 12px; color: var(--muted); margin: 12px 0; line-height: 1.6; }
.cart-empty-state { text-align: center; padding: 60px 20px; }
.cart-empty-state p { color: var(--muted); font-size: 14px; margin-top: 16px; }

/* === ABOUT PAGE === */
.about-story { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; height: 560px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 73%; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 52%; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; border: 6px solid var(--white); box-shadow: var(--shadow-lg); background: var(--blue-bg); }
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-cac-badge { position: absolute; top: 20px; right: 20px; background: var(--blue-primary); color: white; padding: 14px 18px; border-radius: var(--radius-lg); text-align: center; }
.cac-year { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; line-height: 1; }
.cac-label { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; margin-top: 2px; }
.about-values { padding: 100px 0; background: var(--dark); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.value-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(27,127,212,0.15); border-radius: var(--radius-lg); padding: 36px; transition: var(--transition); }
.value-card:hover { border-color: rgba(27,127,212,0.4); background: rgba(27,127,212,0.06); }
.value-num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: rgba(27,127,212,0.25); margin-bottom: 16px; }
.value-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.value-text { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* === CONTACT PAGE === */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-item { display: flex; gap: 18px; margin-bottom: 32px; }
.contact-icon { width: 50px; height: 50px; background: var(--blue-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 22px; height: 22px; stroke: var(--blue-primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-value { font-size: 15px; color: var(--dark); }
.contact-value a { color: var(--dark); transition: color 0.2s; }
.contact-value a:hover { color: var(--blue-primary); }
.wa-chat-card { background: var(--dark); border-radius: var(--radius-xl); padding: 40px; }
.wa-chat-card h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.wa-chat-card p { color: rgba(255,255,255,0.45); font-size: 14px; margin-bottom: 28px; line-height: 1.7; }

/* === FOOTER === */
.site-footer { background: var(--dark2); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo-img { height: 54px; margin-bottom: 14px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); }
.footer-brand-tag { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 18px; margin-top: 2px; }
.footer-about-text { font-size: 13px; color: var(--muted); line-height: 1.85; margin-bottom: 24px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: var(--transition); }
.social-link:hover { border-color: var(--blue-primary); color: var(--blue-light); background: rgba(27,127,212,0.1); }
.social-link svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-light); }
.footer-contact-line { margin-bottom: 14px; }
.footer-contact-label { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.footer-contact-value { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-contact-value a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-value a:hover { color: var(--blue-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: var(--blue-pale); }

/* === FLOATING WHATSAPP === */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 998; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-float-btn { width: 60px; height: 60px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.4); transition: var(--transition); cursor: pointer; animation: waPulse 3s ease-in-out infinite; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 24px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 32px rgba(37,211,102,0.65)} }
.wa-float-btn:hover { transform: scale(1.1); animation: none; }
.wa-float-btn svg { width: 32px; height: 32px; fill: white; }
.wa-tooltip { background: var(--dark); color: white; font-size: 13px; padding: 9px 16px; border-radius: var(--radius); white-space: nowrap; opacity: 0; transform: translateX(8px); transition: var(--transition); pointer-events: none; }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* === TOAST === */
.toast { position: fixed; bottom: 110px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--dark); color: white; padding: 14px 24px; border-radius: var(--radius); font-size: 14px; opacity: 0; transition: all 0.3s; z-index: 3000; pointer-events: none; display: flex; align-items: center; gap: 10px; white-space: nowrap; border-left: 3px solid var(--blue-primary); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* === ADMIN STYLES === */
.aaj-admin-wrap { font-family: var(--font-body); }
.aaj-admin-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--blue-primary); margin-bottom: 28px; }
.aaj-admin-tab { padding: 12px 24px; font-size: 13px; font-weight: 500; border: none; background: none; cursor: pointer; color: var(--muted); font-family: var(--font-body); transition: var(--transition); border-bottom: 2px solid transparent; margin-bottom: -2px; }
.aaj-admin-tab.active { color: var(--blue-primary); border-bottom-color: var(--blue-primary); }
.aaj-tab-panel { display: none; }
.aaj-tab-panel.active { display: block; }
.aaj-field-group { margin-bottom: 20px; }
.aaj-field-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--dark); }
.aaj-field-group input, .aaj-field-group textarea, .aaj-field-group select { width: 100%; padding: 10px 14px; border: 1.5px solid rgba(27,127,212,0.2); border-radius: var(--radius); font-family: var(--font-body); font-size: 14px; color: var(--dark); transition: border-color 0.2s; }
.aaj-field-group input:focus, .aaj-field-group textarea:focus { outline: none; border-color: var(--blue-primary); }
.aaj-field-group textarea { min-height: 100px; resize: vertical; }
.aaj-color-row { display: flex; gap: 16px; align-items: center; }
.aaj-color-row input[type="color"] { width: 60px; height: 40px; border: 1.5px solid rgba(27,127,212,0.2); border-radius: var(--radius); cursor: pointer; padding: 2px; }
.aaj-save-btn { background: var(--blue-primary); color: white; padding: 12px 28px; border: none; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: var(--transition); }
.aaj-save-btn:hover { background: var(--blue-dark); }
.aaj-product-form { background: var(--lighter); border: 1.5px solid rgba(27,127,212,0.12); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.aaj-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.aaj-media-upload { border: 2px dashed rgba(27,127,212,0.3); border-radius: var(--radius-lg); padding: 32px; text-align: center; cursor: pointer; transition: var(--transition); }
.aaj-media-upload:hover { border-color: var(--blue-primary); background: var(--blue-bg); }
.aaj-media-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.aaj-preview-thumb { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); border: 1.5px solid rgba(27,127,212,0.2); }
.aaj-product-list { border: 1px solid rgba(27,127,212,0.1); border-radius: var(--radius-lg); overflow: hidden; }
.aaj-product-row { display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-bottom: 1px solid rgba(27,127,212,0.08); transition: background 0.2s; }
.aaj-product-row:hover { background: var(--blue-bg); }
.aaj-product-row img { width: 54px; height: 44px; object-fit: cover; border-radius: var(--radius); }
.aaj-product-row-name { flex: 1; font-size: 14px; font-weight: 500; }
.aaj-product-row-price { font-size: 13px; color: var(--blue-primary); font-weight: 600; }
.aaj-row-actions { display: flex; gap: 8px; }
.aaj-row-btn { padding: 6px 12px; border-radius: var(--radius); font-size: 12px; font-weight: 500; cursor: pointer; border: 1.5px solid; transition: var(--transition); font-family: var(--font-body); }
.aaj-row-edit { color: var(--blue-primary); border-color: var(--blue-primary); background: none; }
.aaj-row-edit:hover { background: var(--blue-primary); color: white; }
.aaj-row-del { color: #D63031; border-color: #D63031; background: none; }
.aaj-row-del:hover { background: #D63031; color: white; }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 80px 0; }
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .cat-card:first-child { grid-row: span 1; aspect-ratio: 4/3; }
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .shop-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-gallery-main { height: 280px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 400px; }
}
@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .shop-header { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .hero-product-chip { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cats-grid { grid-template-columns: 1fr; }
  .aaj-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: 12px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .modal-actions { flex-direction: column; }
}
