/* ── VARIABLES ───────────────────────────────── */
:root {
  --bg:       #f8f9fa;
  --bg2:      #f1f3f5;
  --dark:     #111111;
  --mid:      #555555;
  --light:    #999999;
  --border:   #e8e5e0;
  --gold:     #c9a96e;
  --wa:       #25d366;
  --wa-dark:  #128c7e;
  --white:    #ffffff;
  --max:      1280px;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', -apple-system, sans-serif;
  --ease:     0.35s cubic-bezier(0.25,0.1,0.25,1);
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--bg); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── ANNOUNCEMENT BAR ────────────────────────── */
.bar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

/* ── HEADER / NAV ────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--dark);
  flex-shrink: 0;
}

.logo-img {
  display: flex;
  align-items: center;
}
.logo-img img {
  height: 100px;
  width: auto;
}

.logo-img span {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--dark);
  transition: width var(--ease);
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }

.nav-btn {
  padding: 0.5rem 1.4rem;
  border: 1.5px solid var(--dark);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--ease);
}
.nav-links .nav-btn:hover { 
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 0.9rem 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-dark  { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover  { background: transparent; color: var(--dark); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--dark); }
.btn-light  { background: var(--white); color: var(--dark); }
.btn-light:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.86rem; }

/* ── HERO ────────────────────────────────────── */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
}

.bg-word {
  position: absolute;
  top: -50px; 
  left: 0%;
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 300;
  color: rgba(0,0,0,0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  padding-right: 10vw;
  animation: slideEndless 18s linear infinite;
}

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

.hero-text {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
h1 em { font-style: italic; color: var(--mid); }

.hero-sub {
  font-size: 1rem;
  color: var(--mid);
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 60px rgba(247,246,244,0.3);
  pointer-events: none;
}
.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-tag {
  position: absolute;
  bottom: 1.5rem; right: -1rem;
  background: var(--dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
}

/* ── IMAGE PLACEHOLDERS ──────────────────────── */
.img-placeholder {
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--light);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}
.hero-placeholder { aspect-ratio: 3/4; width: 100%; }
.card-img .img-placeholder { width: 100%; height: 100%; border-radius: 0; }
.cat-placeholder { position: absolute; inset: 0; border-radius: 0; height: 100%; }

/* ── SECTIONS ────────────────────────────────── */
.section {
  padding: 6rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.section-head { margin-bottom: 3.5rem; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-top: 0.4rem;
}
.section-desc {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--mid);
  max-width: 460px;
  line-height: 1.7;
}

/* ── PRODUCT GRID ────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── PRODUCT CARD ────────────────────────────── */
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg2);
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img img { transform: scale(1.04); }

.badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--dark);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.badge-warm { background: var(--gold); }

.card-body { padding: 1.2rem 1.4rem 1.4rem; }
.product-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.material {
  font-size: 0.76rem;
  color: var(--light);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.sizes span {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--mid);
  border: 1px solid var(--border);
  padding: 0.18rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.15s;
}
.sizes span:hover, .sizes span.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.price {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wa);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  transition: var(--ease);
  flex-shrink: 0;
}
.wa-btn svg { width: 13px; height: 13px; }
.wa-btn:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}

/* ── CATEGORIES ──────────────────────────────── */
.categories-section {
  background: var(--bg2);
  max-width: 100%;
  padding: 6rem 2rem;
}
.categories-section .section-head {
  max-width: var(--max);
  margin: 0 auto 3.5rem;
}
.cat-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cat-card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.4rem;
  background: linear-gradient(to top, rgba(17,17,17,0.75), transparent);
  color: var(--white);
  z-index: 2;
}
.cat-label h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.cat-label span { font-size: 0.76rem; opacity: 0.8; }

/* ── PROMO DEALS ─────────────────────────────── */
.promo-deals {
  padding: 6rem 2rem;
  background: var(--bg2);
  max-width: 100%;
}

.promo-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.promo-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  margin: 0.5rem 0 0.8rem;
}

.promo-header p {
  font-size: 0.95rem;
  color: var(--mid);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.deal-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease);
}

.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.deal-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg2);
}

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

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

.deal-badge {
  position: absolute;
  top: 1rem; 
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
}

.deal-info {
  padding: 1.5rem;
  text-align: center;
}

.deal-info h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.deal-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.old-price {
  font-size: 1rem;
  color: var(--light);
  text-decoration: line-through;
}

.new-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
}

@media (max-width: 900px) {
  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .deals-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ── FAQ ─────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
}
.faq {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.faq:nth-child(even) { border-right: none; }
.faq summary {
  font-family: var(--serif);
  font-size: 1.05rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: background 0.15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--light); transition: transform var(--ease); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { background: var(--bg2); }
.faq p {
  padding: 0 2rem 1.5rem;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ── CTA ─────────────────────────────────────── */
.cta {
  padding: 7rem 2rem;
  background: var(--bg2);
  text-align: center;
}
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.8rem 0 1rem;
}
.cta h2 em { font-style: italic; color: var(--mid); }
.cta > p { font-size: 0.95rem; color: var(--mid); max-width: 380px; margin: 0 auto 2.5rem; line-height: 1.7; }

.cta .btn-dark:hover {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #2a2a2a;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}
.footer-tag { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.45); }
.footer h4 { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.2rem; }
.footer ul li { margin-bottom: 0.7rem; }
.footer ul a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── SOCIAL ICONS ────────────────────────────── */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.4rem;
}
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--ease);
}
.social-links a svg { width: 16px; height: 16px; }
.social-links a:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* Instagram hover - purple/pink gradient effect */
.social-links a:nth-child(1):hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
  color: var(--white);
}

/* X/Twitter hover - stays white */
.social-links a:nth-child(2):hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

/* WhatsApp hover - green */
.social-links a:nth-child(3):hover {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}

/* ── FLOATING WHATSAPP ───────────────────────── */
.float-wa {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: var(--wa);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  z-index: 300;
  transition: var(--ease);
}
.float-wa svg { width: 26px; height: 26px; }
.float-wa:hover { background: var(--wa-dark); transform: scale(1.08); }
.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: pulse 2.5s ease-in-out infinite;
}

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.15); }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 4rem 2rem; gap: 3rem; }
  .hero-img { max-width: 420px; margin: 0 auto; width: 100%; }
  .bg-word { font-size: clamp(6rem, 28vw, 12rem); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq { border-right: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .card-body { padding: 1rem; }
  .product-name { font-size: 0.95rem; }
  .wa-btn { padding: 0.45rem 0.9rem; font-size: 0.68rem; }
  .cat-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .float-wa { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; }
}