/* ============================================================
   NAIRAHOMESTUDIO — Complete Stylesheet
   Brand: Handcrafted Ceramics | Minimal Luxury
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Colors */
  --cream:           #FBF8F4;
  --cream-alt:       #F5EFE8;
  --white:           #FFFFFF;
  --terracotta:      #C4785A;
  --terracotta-dark: #A8623F;
  --terracotta-pale: #F2E4DC;
  --beige:           #E2D5C8;
  --beige-dark:      #C8B8A2;
  --sage:            #7A9B76;
  --sage-light:      #B8CDB5;
  --sage-pale:       #EBF2EA;
  --charcoal:        #242424;
  --charcoal-soft:   #3A3A3A;
  --gray:            #6A6A6A;
  --gray-light:      #AAAAAA;
  --border:          #E6DDD5;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-sans:  'Inter', sans-serif;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 50px rgba(0,0,0,0.12);
  --shadow-xl:  0 24px 70px rgba(0,0,0,0.16);

  /* Transitions */
  --ease: all 0.3s ease;
  --ease-slow: all 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--gray);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

input, textarea, select {
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

.bg-cream-alt {
  background-color: var(--cream-alt);
}

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

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  margin-bottom: 12px;
}

.section-head p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-footer {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--ease);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  padding: 10px 24px;
  font-size: 0.8rem;
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  padding: 18px 32px;
  font-size: 0.9rem;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--charcoal);
  color: var(--white);
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.announcement-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.announcement-track span {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-right: 0;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(251, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

#header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.logo-img {
  height: 68px;
  width: auto;
  mix-blend-mode: multiply;   /* blends cream logo bg into header bg */
  object-fit: contain;
}

.logo-text {
  display: none;              /* hidden when logo image loads */
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--charcoal);
}

/* Nav */
.main-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--charcoal);
  font-size: 1rem;
  transition: var(--ease);
  position: relative;
}

.icon-btn:hover {
  background: var(--cream-alt);
  color: var(--terracotta);
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 9px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Nav close button (mobile only) */
.nav-close-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: var(--charcoal);
  cursor: pointer;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.nav-close-btn:hover {
  background: var(--cream-alt);
}

/* Hamburger */
.nav-toggle {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--ease);
}

.nav-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - 40px);
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(36, 36, 36, 0.72) 0%,
    rgba(36, 36, 36, 0.45) 50%,
    rgba(36, 36, 36, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-bottom: 110px;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  pointer-events: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(0.3); transform-origin: top; }
  51%  { transform: scaleY(0.3); transform-origin: bottom; }
  100% { transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.categories-section {
  background: var(--white);
}

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

.category-card {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--beige);
}

.cat-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover .cat-img-wrap img {
  transform: scale(1.07);
}

.cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(36,36,36,0.75) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.cat-info h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}

.cat-arrow {
  color: var(--white);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.category-card:hover .cat-arrow {
  transform: translateX(4px);
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-section {
  background: var(--cream);
}

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

.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: var(--ease-slow);
  box-shadow: var(--shadow-sm);
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.product-img-wrap {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

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

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36,36,36,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.product-overlay span {
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.product-card:hover .product-overlay span {
  transform: translateY(0);
}

.product-body {
  padding: 18px 18px 20px;
}

.product-cat {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}

.product-name {
  font-size: 1rem;
  margin: 6px 0 6px;
  line-height: 1.3;
}

.product-name a {
  color: var(--charcoal);
}

.product-name a:hover {
  color: var(--terracotta);
}

.product-desc {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-bottom: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
}

.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--ease);
}

.btn-add-cart:hover {
  background: var(--terracotta);
}

/* ============================================================
   BRAND STORY
   ============================================================ */
.brand-story {
  background: var(--white);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-story-images {
  position: relative;
}

.brand-img-main {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.brand-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 44%;
  border-radius: 4px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.brand-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story-text {
  padding-bottom: 32px;
}

.brand-story-text .section-tag {
  margin-bottom: 16px;
}

.brand-story-text h2 {
  margin-bottom: 24px;
}

.brand-lead {
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

.brand-values {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.brand-value-icon {
  width: 44px;
  height: 44px;
  background: var(--terracotta-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terracotta);
  font-size: 1rem;
}

.brand-value h4 {
  margin-bottom: 2px;
  font-size: 1rem;
}

.brand-value p {
  font-size: 0.88rem;
  margin: 0;
}

.brand-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.brand-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.5px;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  padding: 56px 0;
  background: var(--terracotta-pale);
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-item > i {
  font-size: 1.6rem;
  color: var(--terracotta);
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.feature-item p {
  font-size: 0.82rem;
  margin: 0;
  color: var(--gray);
}

/* ============================================================
   INSTAGRAM GALLERY
   ============================================================ */
.instagram-section {
  background: var(--cream-alt);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.insta-item {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(196, 120, 90, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay i {
  color: var(--white);
  font-size: 1.6rem;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--sage-pale);
  padding: 80px 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.newsletter-text h2 {
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
}

.newsletter-input-group input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.newsletter-input-group input::placeholder {
  color: var(--gray-light);
}

.newsletter-input-group .btn {
  border-radius: 0;
  padding: 14px 24px;
  flex-shrink: 0;
}

.newsletter-note {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag {
  margin-bottom: 12px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  margin-bottom: 36px;
  font-size: 1rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item > i {
  font-size: 1.2rem;
  color: var(--terracotta);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.contact-item a {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--terracotta);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: var(--cream-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--charcoal);
  transition: var(--ease);
}

.social-links a:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form-wrap {
  background: var(--cream);
  padding: 44px;
  border-radius: 4px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terracotta);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 500;
}

.form-msg.success {
  background: #d4edda;
  color: #155724;
}

.form-msg.error {
  background: #f8d7da;
  color: #721c24;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--ease);
}

.footer-social a:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

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

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--ease);
}

.footer-col ul a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-bottom i {
  color: #e87070;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gray);
  border-radius: 50%;
  transition: var(--ease);
  line-height: 1;
}

.close-btn:hover {
  background: var(--cream-alt);
  color: var(--charcoal);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 0;
  color: var(--gray-light);
  text-align: center;
}

.cart-empty i {
  font-size: 2.5rem;
  opacity: 0.4;
}

.cart-empty p {
  font-size: 1rem;
  margin: 0;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-details h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-sans);
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 8px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  line-height: 1;
}

.qty-control button:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.qty-control span {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  color: var(--gray-light);
  font-size: 0.85rem;
  padding: 4px;
  transition: var(--ease);
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}

#cart-total {
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

.cart-shipping-note {
  font-size: 0.78rem;
  color: var(--sage);
  margin: 0;
  text-align: center;
}

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 520px;
  max-width: calc(100vw - 32px);
  max-height: 90vh;
  background: var(--white);
  z-index: 1300;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.checkout-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.checkout-header h3 {
  font-size: 1.2rem;
}

.checkout-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gray);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1.5px solid var(--border);
  font-size: 1rem;
}

.checkout-form h4 {
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--gray);
}

.checkout-whatsapp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-whatsapp p {
  font-size: 0.78rem;
  text-align: center;
  color: var(--gray-light);
  margin: 0;
}

/* ============================================================
   OVERLAY
   ============================================================ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

/* ============================================================
   TOAST
   ============================================================ */
.toast-notification {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 1400;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  opacity: 0;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notification.error {
  background: #c0392b;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--ease);
  z-index: 800;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--terracotta);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim.delay-1 { transition-delay: 0.1s; }
.anim.delay-2 { transition-delay: 0.2s; }
.anim.delay-3 { transition-delay: 0.3s; }
.anim.delay-4 { transition-delay: 0.4s; }

.anim.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-banner {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.shop-banner h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.shop-banner p {
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 64px 0;
}

.shop-filters {
  padding-top: 8px;
}

.shop-filters h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: var(--font-sans);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 14px;
  font-family: var(--font-sans);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--gray);
  transition: color 0.2s ease;
}

.filter-option:hover {
  color: var(--charcoal);
}

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
  accent-color: var(--terracotta);
  cursor: pointer;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.shop-toolbar p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--gray);
}

.shop-toolbar select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  font-size: 0.85rem;
  color: var(--charcoal);
  cursor: pointer;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 0;
  color: var(--gray-light);
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--gray-light);
  padding: 24px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a {
  color: var(--gray-light);
}

.breadcrumb a:hover {
  color: var(--terracotta);
}

.breadcrumb span {
  color: var(--gray-light);
}

.product-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding-bottom: 80px;
}

.gallery-main {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--beige);
  margin-bottom: 12px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-main:hover img {
  transform: scale(1.04);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--terracotta);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.2s ease;
}

.gallery-thumb.active img,
.gallery-thumb:hover img {
  filter: brightness(1);
}

.product-info-panel {
  padding-top: 8px;
}

.pd-category {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.pd-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}

.pd-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.pd-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.pd-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 24px;
}

.pd-features {
  margin-bottom: 28px;
}

.pd-features h4 {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--charcoal);
}

.pd-features ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
}

.pd-features li i {
  color: var(--sage);
  font-size: 0.85rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 20px;
}

.qty-selector button {
  width: 44px;
  height: 48px;
  font-size: 1.2rem;
  color: var(--charcoal);
  transition: var(--ease);
}

.qty-selector button:hover {
  background: var(--cream-alt);
}

.qty-selector input {
  width: 64px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.pd-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pd-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.pd-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray);
}

.pd-meta-item i {
  color: var(--terracotta);
  width: 16px;
  flex-shrink: 0;
}

.related-section {
  padding: 64px 0 80px;
  border-top: 1px solid var(--border);
}

.related-section h2 {
  margin-bottom: 36px;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .brand-img-accent {
    bottom: -20px;
    right: -16px;
    width: 36%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .shop-layout {
    grid-template-columns: 200px 1fr;
    gap: 32px;
  }

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

  .product-page-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE NAV
   ============================================================ */
@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(320px, 88vw);
    height: 100dvh;
    background: var(--white);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 40px 48px;
    box-shadow: var(--shadow-xl);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .main-nav.open {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .nav-link {
    font-size: 1.15rem;
    letter-spacing: 1px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (641px – 860px) — shop layout fix
   ============================================================ */
@media (min-width: 641px) and (max-width: 860px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    padding: 20px;
    background: var(--cream-alt);
    border-radius: 4px;
    margin-bottom: 0;
  }

  .shop-filters h3 {
    width: 100%;
    margin-bottom: 4px;
    padding-bottom: 8px;
  }

  .filter-group {
    margin-bottom: 0;
    min-width: 140px;
  }

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

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  section {
    padding: 64px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-title br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-body {
    padding: 12px;
  }

  .product-price {
    font-size: 1rem;
  }

  .btn-add-cart {
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .brand-img-accent {
    display: none;
  }

  .brand-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cart-drawer {
    width: 100vw;
    right: -100vw;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-filters {
    display: none;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .announcement-bar,
  #header,
  .cart-drawer,
  .checkout-modal,
  .overlay,
  .back-to-top,
  .hero-scroll {
    display: none !important;
  }
}
