/*
Theme Name: Sromajori Arts
Theme URI: https://sromajori.com
Author: Sromajori Arts
Author URI: https://sromajori.com
Description: A lovable, premium, handcrafted jewellery theme inspired by Bengal's art, culture, and traditions. Features warm ivory backgrounds, gold and terracotta accents, elegant typography, and smooth animations.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sromajori-arts
Tags: one-column, custom-menu, custom-logo, featured-images, theme-options, translation-ready, e-commerce
*/

/* ==========================================
   CSS Variables & Design Tokens
   ========================================== */
:root {
  /* Warm Ivory & Gold Palette */
  --background: 40 30% 97%;
  --foreground: 30 25% 15%;
  --card: 40 35% 98%;
  --card-foreground: 30 25% 15%;
  --primary: 38 75% 50%;
  --primary-foreground: 40 30% 98%;
  --secondary: 40 40% 94%;
  --secondary-foreground: 30 25% 20%;
  --muted: 35 20% 92%;
  --muted-foreground: 30 15% 45%;
  --accent: 16 65% 55%;
  --accent-foreground: 40 30% 98%;
  --border: 35 25% 88%;
  --ring: 38 75% 50%;
  
  /* Brand Colors */
  --gold: 38 75% 50%;
  --gold-light: 40 70% 75%;
  --gold-dark: 36 80% 35%;
  --terracotta: 16 65% 55%;
  --terracotta-light: 18 60% 70%;
  --ivory: 40 30% 97%;
  --cream: 40 40% 94%;
  --bronze: 30 25% 20%;
  --bronze-light: 30 20% 35%;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsl(30 25% 15% / 0.08);
  --shadow-card: 0 8px 30px -8px hsl(30 25% 15% / 0.1);
  --shadow-hover: 0 12px 40px -12px hsl(30 25% 15% / 0.15);
  --shadow-gold: 0 8px 30px -8px hsl(38 75% 50% / 0.25);
  
  /* Border Radius */
  --radius: 0.75rem;
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================
   Utility Classes
   ========================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.hover-lift {
  transition: all 0.3s ease-out;
}

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

/* ==========================================
   Header & Navigation
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 80px;
  }
}

.site-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
  .site-logo {
    font-size: 1.5rem;
  }
}

.site-logo span {
  color: hsl(var(--primary));
}

/* Desktop Navigation */
.main-navigation {
  display: none;
}

@media (min-width: 1024px) {
  .main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--primary));
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: hsl(var(--foreground));
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: -8px;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .header-actions {
    gap: 1rem;
  }
}

.header-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.header-action-btn:hover {
  background: hsl(var(--muted));
}

.header-action-btn svg {
  width: 20px;
  height: 20px;
}

.header-action-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.badge-accent {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.badge-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
  animation: fadeIn 0.2s ease-out;
}

.mobile-nav.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: hsl(var(--foreground));
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 80px;
  }
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    hsl(var(--background) / 0.95), 
    hsl(var(--background) / 0.7), 
    hsl(var(--background) / 0.3)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 580px;
  padding: 3rem 0 6rem;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 6rem 0;
  }
}

.hero-tagline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title span {
  color: hsl(var(--primary));
  font-style: italic;
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.hero-stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
}

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

.btn-outline:hover {
  background: hsl(var(--muted));
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================
   Trust Badges Section
   ========================================== */
.trust-badges {
  padding: 3rem 0;
  background: hsl(var(--secondary) / 0.5);
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-badges-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.trust-badge-icon svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
}

.trust-badge-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.trust-badge-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ==========================================
   Section Styles
   ========================================== */
.section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-tagline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ==========================================
   Collections Section
   ========================================== */
.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

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

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    hsl(var(--foreground) / 0.7), 
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, 
    hsl(var(--foreground) / 0.85), 
    hsl(var(--foreground) / 0.2) 80%
  );
}

.collection-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.collection-count {
  font-size: 0.875rem;
  color: hsl(0 0% 100% / 0.8);
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.collection-card:hover .collection-link {
  opacity: 1;
  transform: translateY(0);
}

.collection-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.collection-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================
   Products Grid
   ========================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Product Card */
.product-card {
  position: relative;
  background: hsl(var(--card));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.product-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
}

.product-badge-new {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.product-badge-sale {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.product-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
}

.product-card:hover .product-wishlist {
  opacity: 1;
  transform: scale(1);
}

.product-wishlist svg {
  width: 16px;
  height: 16px;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.product-wishlist:hover svg {
  color: hsl(var(--accent));
}

.product-wishlist.active svg {
  color: hsl(var(--accent));
  fill: hsl(var(--accent));
}

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-add-btn {
  width: 100%;
  padding: 0.75rem;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: calc(var(--radius) - 4px);
  transition: background 0.2s ease;
}

.product-add-btn:hover {
  background: hsl(var(--foreground) / 0.9);
}

.product-info {
  padding: 1rem;
}

.product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-category {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.product-rating svg {
  width: 12px;
  height: 12px;
}

.product-rating .star-filled {
  color: hsl(var(--primary));
  fill: hsl(var(--primary));
}

.product-rating .star-empty {
  color: hsl(var(--muted));
}

.product-rating-count {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-left: 0.25rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-price-current {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.product-price-original {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: line-through;
}

/* ==========================================
   Brand Story Section
   ========================================== */
.brand-story {
  background: linear-gradient(180deg, 
    hsl(var(--background)), 
    hsl(var(--secondary))
  );
}

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

@media (min-width: 1024px) {
  .brand-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

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

.brand-story-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.brand-story-stats {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  display: flex;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .brand-story-stats {
    bottom: -2rem;
    right: -2rem;
  }
}

.brand-stat-card {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.brand-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
}

.brand-stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.brand-story-content {
  padding: 1rem 0;
}

@media (min-width: 1024px) {
  .brand-story-content {
    padding: 2rem 0;
  }
}

.brand-story-content .section-tagline {
  margin-bottom: 0.75rem;
}

.brand-story-content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.brand-story-text {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.brand-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .brand-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.brand-value-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: hsl(var(--primary));
}

.brand-value-text {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

/* ==========================================
   Instagram Gallery
   ========================================== */
.instagram-section {
  padding: 4rem 0;
}

.instagram-header {
  text-align: center;
  margin-bottom: 2rem;
}

.instagram-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--primary));
}

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

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: calc(var(--radius) / 2);
}

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

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

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--foreground) / 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
  background: hsl(var(--foreground) / 0.3);
}

.instagram-overlay svg {
  width: 24px;
  height: 24px;
  color: white;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.instagram-item:hover .instagram-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
  background: hsl(var(--foreground));
  color: hsl(var(--primary-foreground));
}

/* Newsletter Section */
.footer-newsletter {
  padding: 3rem 0;
  border-bottom: 1px solid hsl(0 0% 100% / 0.1);
}

.newsletter-content {
  max-width: 512px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.newsletter-text {
  font-size: 0.9375rem;
  color: hsl(0 0% 100% / 0.7);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  background: hsl(0 0% 100% / 0.1);
  border: 1px solid hsl(0 0% 100% / 0.2);
  border-radius: var(--radius);
  color: white;
  transition: all 0.2s ease;
}

.newsletter-input::placeholder {
  color: hsl(0 0% 100% / 0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: hsl(var(--primary));
  background: hsl(0 0% 100% / 0.15);
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s ease;
}

.newsletter-btn:hover {
  background: hsl(var(--primary) / 0.9);
}

/* Footer Main */
.footer-main {
  padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
  .footer-main {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: hsl(var(--primary));
}

.footer-brand-text {
  font-size: 0.875rem;
  color: hsl(0 0% 100% / 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(0 0% 100% / 0.1);
  border-radius: 50%;
  transition: background 0.2s ease;
}

.footer-social-link:hover {
  background: hsl(0 0% 100% / 0.2);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: hsl(0 0% 100% / 0.7);
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: white;
}

.footer-contact-item {
  font-size: 0.875rem;
  color: hsl(0 0% 100% / 0.7);
  margin-bottom: 0.75rem;
}

.footer-contact-item a {
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid hsl(0 0% 100% / 0.1);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(0 0% 100% / 0.6);
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: white;
}

/* ==========================================
   Responsive Helpers
   ========================================== */
.hide-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .hide-mobile {
    display: flex;
  }
}

.show-mobile {
  display: flex;
}

@media (min-width: 1024px) {
  .show-mobile {
    display: none;
  }
}
