/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --green: #2d5a27;
  --green-dark: #1e3e1a;
  --green-light: #3d7a35;
  --gold: #c5a84e;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --radius: 4px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input {
  font-family: var(--font-sans);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

.announcement-bar span {
  color: var(--gold);
  font-weight: 600;
}

/* ===== HEADER ===== */
header {
  background-color: var(--cream);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--text);
  text-transform: uppercase;
}

.logo:hover {
  color: var(--green);
  transition: color var(--transition);
}

/* Nav */
nav ul {
  display: flex;
  gap: 40px;
}

nav ul li a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width var(--transition);
}

nav ul li a:hover {
  color: var(--green);
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--green);
}

nav ul li a.active::after {
  width: 100%;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icons a {
  font-size: 16px;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.header-icons a:hover {
  color: var(--green);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--green);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
}

/* ===== HERO SECTION ===== */
.hero {
  max-width: 1280px;
  margin: 30px auto;
  padding: 0 40px;
}

.hero-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(135deg, #e8dcc8 0%, #d4c9b0 40%, #c8bda0 100%);
  display: flex;
  align-items: stretch;
}

.hero-img {
  width: 55%;
  height: 420px;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 50px 50px 60px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-content::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -30px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.hero-brand {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 8px;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 280px;
}

.hero-tagline em {
  color: var(--gold);
  font-style: normal;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: #b89440;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 78, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.3);
}

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

.btn-green-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--green);
}

.section-subtitle {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}

.view-all {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}

.view-all:hover {
  opacity: 0.7;
}

/* ===== COLLECTIONS WRAPPER ===== */
.collections-wrapper {
  max-width: 1280px;
  margin: 0 auto 50px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}

.product-img-wrap img {
  height: 100%;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 90, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.quick-add {
  background: var(--white);
  color: var(--green);
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.quick-add:hover {
  background: var(--green);
  color: var(--white);
}

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 500;
}

.product-badge.new {
  background: var(--gold);
}

.product-info {
  padding: 12px 14px 14px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-price {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 10px;
}

.product-price .old-price {
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 400;
  font-size: 11px;
}

.product-card-btn {
  display: block;
  width: 100%;
  padding: 8px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius);
  text-align: center;
}

/* ===== FASHION GRID (2 items) ===== */
.fashion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ===== FEATURED SECTION ===== */
.featured-section {
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.featured-card {
  cursor: pointer;
  transition: all var(--transition);
}

.featured-card:hover {
  transform: translateY(-4px);
}

.featured-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  position: relative;
}

.featured-img-wrap img {
  height: 100%;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-img-wrap img {
  transform: scale(1.05);
}

.featured-info {
  padding: 14px 4px 0;
}

.featured-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.featured-price {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}

.featured-type {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

/* ===== ABOUT + NEWSLETTER ===== */
.about-newsletter {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.about-newsletter::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.about-newsletter::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.an-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-block h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 500;
}

.about-block p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.about-block .about-icon {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 14px;
}

.newsletter-block h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 500;
}

.newsletter-block p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-block p span {
  color: var(--gold);
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-size: 13px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--text-light);
}

.newsletter-form button {
  padding: 13px 22px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #b89440;
}

.social-block h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: all var(--transition);
}

.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.social-handle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.social-handle strong {
  color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 40px 20px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 240px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1280px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.payment-icons span {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.mobile-menu.open {
  display: flex;
}

.mobile-panel {
  background: var(--cream);
  width: 280px;
  height: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
}

.mobile-panel .logo {
  font-size: 24px;
}

.mobile-panel nav ul {
  flex-direction: column;
  gap: 20px;
}

.mobile-panel nav ul li a {
  font-size: 14px;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--green);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .collections-wrapper {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .an-inner {
    grid-template-columns: 1fr 1fr;
  }

  .social-block {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
  }

  .header-inner nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 0 20px;
    margin: 20px auto;
  }

  .hero-banner {
    flex-direction: column;
    min-height: auto;
  }

  .hero-img {
    width: 100%;
    height: 240px;
  }

  .hero-content {
    padding: 34px 28px;
  }

  .hero-brand {
    font-size: 38px;
  }

  .collections-wrapper {
    padding: 0 20px;
  }

  .featured-section {
    padding: 0 20px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-newsletter {
    padding: 50px 20px;
  }

  .an-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  footer {
    padding: 40px 20px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
}

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

  .fashion-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== MODALS & DRAWERS ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: var(--cream);
  z-index: 2600;
  padding: 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
}

.drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: 24px;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  transition: color var(--transition);
}

.drawer-close:hover {
  color: var(--green);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--white);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 3px;
}

.cart-item-price {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

.cart-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
}

.cart-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--text-light);
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--white);
  z-index: 2600;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 24px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: var(--text-light);
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  font-family: var(--font-sans);
}

.form-group input:focus {
  border-color: var(--green);
}

.modal-switch {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
}

.modal-switch a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.search-modal {
  max-width: 600px;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.search-input-group {
  display: flex;
  border-bottom: 2px solid var(--white);
  padding-bottom: 10px;
  align-items: center;
}

.search-input-group input {
  border: none;
  background: transparent;
  font-size: 24px;
  color: var(--white);
  outline: none;
  width: 100%;
  text-align: center;
  font-family: var(--font-serif);
}

.search-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-input-group button {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}

.search-modal .drawer-close {
  color: var(--white);
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 28px;
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PIED DE PAGE LÉGAL ===== */
.site-footer {
  background: var(--cream-dark);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 28px 20px 36px;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 14px;
}

.site-footer-nav a {
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.site-footer-nav a:hover {
  text-decoration: underline;
}

.site-footer-copy {
  font-size: 11px;
  opacity: 0.85;
}
