/* ===== MY 3'S BOUTIQUE — Clean Minimal Design (Naari-inspired) ===== */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --brand: #B8894A;
  --brand-dark: #8B6A2F;
  --brand-light: #D4B76A;
  --black: #121212;
  --text: #333333;
  --text-light: #6B6B6B;
  --text-muted: #999999;
  --border: #E8E8E8;
  --bg: #FFFFFF;
  --bg-light: #FAFAFA;
  --white: #FFFFFF;
  --success: #2E7D32;
  --radius: 0px;
  --transition: all 0.25s ease;
  --font-body: 'Assistant', 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-body);
  color: var(--black);
  line-height: 1.3;
  font-weight: 400;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2rem);
}

h2 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
}

h3 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

a {
  color: var(--black);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--bg-light);
  color: var(--text);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

/* ===== HEADER ===== */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 20px;
}

/* Nav links on the left */
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0.3px;
  padding: 4px 0;
  text-decoration: none;
  position: relative;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-links a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Center logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }
}

/* Right side — cart + mobile toggle */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-body);
  color: var(--text);
}

.cart-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--black);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count.hidden {
  display: none;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--black);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
  }
}

/* ===== HERO SECTION — Simple Naari Style ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-slide img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.hero-overlay {
  display: none;
}

.hero-content {
  display: none;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots button.active {
  background: var(--black);
  border-color: var(--black);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  text-decoration: none;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: #333;
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.btn-maroon {
  background: var(--brand);
  color: var(--white);
}

.btn-maroon:hover {
  background: var(--brand-dark);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1DA851;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0;
}

.section-header p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 8px;
}

.gold-line {
  display: none;
}

.paisley-divider {
  display: none;
}

/* ===== CATEGORY CARDS — Simple Image + Arrow Link ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
}

.category-card:hover {
  opacity: 0.85;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: none;
}

.category-card-overlay h3 {
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 6px 12px;
}

.category-card-overlay p {
  display: none;
}

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  opacity: 0.9;
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-light);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.03);
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.product-badge {
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--bg);
  color: var(--black);
  border: 1px solid var(--border);
}

.badge-bestseller {
  background: var(--bg);
  color: var(--black);
  border: 1px solid var(--border);
}

.badge-new {
  background: var(--bg);
  color: var(--black);
  border: 1px solid var(--border);
}

.product-card-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-card-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.product-card-actions button:hover {
  background: var(--black);
  color: var(--white);
}

.product-card-info {
  padding: 14px 0;
}

.product-card-info h3 {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 4px;
  font-family: var(--font-body);
  color: var(--black);
}

.product-card-info .product-category {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-card-info .product-price {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  font-family: var(--font-body);
}

.product-card-info .btn {
  width: 100%;
  margin-top: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 0.75rem;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-info .btn:hover {
  background: #333;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  padding: 40px 0 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.product-gallery {
  overflow: hidden;
  background: var(--bg-light);
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.product-info h1 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 8px;
}

.product-info .product-price {
  font-size: 1.3rem;
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 20px;
}

.product-info .product-description {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 0.9rem;
}

.product-meta {
  margin-bottom: 24px;
}

.product-meta-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.product-meta-item strong {
  color: var(--black);
  min-width: 90px;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.product-actions .btn {
  flex: 1;
  min-width: 140px;
}

/* ===== COLOR SWATCHES — Product Cards ===== */
.product-card-colors {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.product-card-colors .color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.product-card-colors .color-dot:hover {
  border-color: var(--black);
  transform: scale(1.2);
}

/* ===== COLOR SWATCHES — Product Detail ===== */
.color-selector {
  margin-bottom: 24px;
}

.color-selector-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
}

.color-selector-label span {
  font-weight: 400;
  color: var(--text-light);
}

.color-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-swatch:hover {
  border-color: var(--text-muted);
  transform: scale(1.1);
}

.color-swatch.selected {
  border-color: var(--black);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--black);
}

.color-swatch .swatch-inner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.color-swatch .swatch-check {
  position: absolute;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: none;
}

.color-swatch.selected .swatch-check {
  display: block;
}

.color-swatch-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.color-swatch-info .stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
}

.stock-indicator.low {
  color: #e65100;
}

.stock-indicator.in-stock {
  color: #2e7d32;
}

.stock-indicator.out {
  color: #c62828;
}

/* ===== FILTERS ===== */
.filters-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--bg-light);
  color: var(--black);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.about-hero h1 {
  color: var(--black);
  margin-bottom: 12px;
}

.about-hero p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--text-muted);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.value-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  background: var(--bg);
  padding: 32px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--black);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-info-card {
  background: var(--bg-light);
  color: var(--black);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-item .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  color: var(--black);
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-info-item p {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2000;
}

.cart-overlay.open {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 95vw;
  height: 100vh;
  background: var(--bg);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  border-left: 1px solid var(--border);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-light);
}

.cart-close:hover {
  color: var(--black);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item img {
  width: 64px;
  height: 80px;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-item-info .price {
  color: var(--black);
  font-weight: 500;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-item-qty button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-qty button:hover {
  border-color: var(--black);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
}

.cart-item-remove:hover {
  color: #e53935;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.cart-empty .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 500;
}

.cart-total .amount {
  color: var(--black);
  font-size: 1.1rem;
}

.cart-footer .btn {
  width: 100%;
  margin-bottom: 8px;
}

.cart-footer .secondary-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--black);
}

.breadcrumb span {
  margin: 0 6px;
}

/* ===== FEATURED BANNER — Light Style ===== */
.featured-banner {
  background: var(--bg-light);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-banner::before {
  display: none;
}

.featured-banner h2 {
  color: var(--black);
  margin-bottom: 10px;
  position: relative;
}

.featured-banner p {
  color: var(--text-light);
  margin-bottom: 24px;
  position: relative;
  font-size: 0.9rem;
}

.featured-banner .btn {
  position: relative;
}

/* ===== FOOTER — Clean White ===== */
.site-footer {
  background: var(--bg);
  color: var(--text);
  padding: 48px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
}

.site-footer h4 {
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-weight: 500;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--black);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== ORDER CONFIRMATION ===== */
.confirmation-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.confirmation-card {
  background: var(--bg);
  padding: 48px;
  border: 1px solid var(--border);
  max-width: 500px;
}

.confirmation-card .icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.confirmation-card h1 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.confirmation-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
  font-size: 0.85rem;
  animation: toastIn 0.3s ease;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.05);
  opacity: 1;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--bg);
  color: var(--black);
  border: 1px solid var(--border);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 900;
  transition: var(--transition);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  border-color: var(--black);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--bg-light);
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.newsletter h2 {
  margin-bottom: 8px;
}

.newsletter p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-right: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--black);
}

.newsletter-form .btn {
  border: 1px solid var(--black);
}