@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

/* Design System & Variables */
:root {
  /* HSL Color System */
  --hue-primary: 24;       /* Warm Orange/Amber */
  --hue-secondary: 215;   /* Deep Trust Navy */
  --hue-accent: 142;      /* Eco Green for success/actions */

  --primary: hsl(var(--hue-primary), 100%, 50%);
  --primary-glow: hsla(var(--hue-primary), 100%, 50%, 0.15);
  --primary-hover: hsl(var(--hue-primary), 100%, 43%);
  --secondary: hsl(var(--hue-secondary), 50%, 15%);
  --accent: hsl(var(--hue-accent), 70%, 45%);
  --accent-hover: hsl(var(--hue-accent), 70%, 38%);
  --accent-glow: hsla(var(--hue-accent), 70%, 45%, 0.2);

  /* Light Theme Defaults */
  --bg: hsl(210, 20%, 98%);
  --bg-offset: hsl(210, 20%, 95%);
  --card: hsla(0, 0%, 100%, 0.85);
  --card-border: rgba(0, 0, 0, 0.08);
  --text: hsl(var(--hue-secondary), 60%, 12%);
  --text-muted: hsl(var(--hue-secondary), 20%, 45%);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
  --shadow-hover: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Dark Theme Overrides */
[data-theme="dark"] {
  --bg: hsl(220, 25%, 8%);
  --bg-offset: hsl(220, 25%, 11%);
  --card: rgba(30, 36, 50, 0.65);
  --card-border: rgba(255, 255, 255, 0.07);
  --text: hsl(210, 25%, 95%);
  --text-muted: hsl(210, 15%, 70%);
  --glass-bg: rgba(20, 25, 38, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 16px 48px 0 rgba(0, 0, 0, 0.6);
  --primary-glow: hsla(var(--hue-primary), 100%, 55%, 0.25);
}

/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: var(--transition-slow);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

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

button, input, select {
  font-family: inherit;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--card-border);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Glassmorphism Classes */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 251, 246, 0.9);
  border-bottom: 1px solid rgba(122, 56, 16, 0.08);
}

header.scrolled {
  box-shadow: var(--shadow);
  background: rgba(255, 251, 246, 0.96);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.05rem 2rem;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
  min-width: 0;
}

.logo-mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  position: relative;
  filter: drop-shadow(0 8px 16px rgba(176, 87, 20, 0.18));
}

.logo-mark::before,
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
}

.logo-mark::before {
  background: radial-gradient(circle at center, #23150f 0 24%, transparent 25%),
              linear-gradient(90deg, transparent 42%, #23150f 42% 58%, transparent 58%),
              linear-gradient(transparent 42%, #23150f 42% 58%, transparent 58%);
  clip-path: polygon(50% 0%, 59% 29%, 81% 7%, 71% 37%, 100% 50%, 71% 63%, 81% 93%, 59% 71%, 50% 100%, 41% 71%, 19% 93%, 29% 63%, 0% 50%, 29% 37%, 19% 7%, 41% 29%);
}

.logo-mark::after {
  inset: 10px;
  background: radial-gradient(circle at center, #ffb347 0%, #ff7a00 55%, #bd4b00 100%);
  clip-path: polygon(50% 0%, 59% 29%, 81% 7%, 71% 37%, 100% 50%, 71% 63%, 81% 93%, 59% 71%, 50% 100%, 41% 71%, 19% 93%, 29% 63%, 0% 50%, 29% 37%, 19% 7%, 41% 29%);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.logo-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  font-weight: 700;
  line-height: 0.95;
  color: #c86007;
  letter-spacing: -0.04em;
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8c4c1c;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin-left: auto;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  position: relative;
  padding: 0.35rem 0;
  color: #845228;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-link:hover, .nav-link.active {
  color: #c86007;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Theme Toggle Button */
.theme-btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(140, 76, 28, 0.12);
  color: #2b1e17;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

.theme-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.theme-btn .sun-icon { display: none; }
[data-theme="dark"] .theme-btn .sun-icon { display: block; }
[data-theme="dark"] .theme-btn .moon-icon { display: none; }

/* Budget Trigger Button */
.budget-btn-trigger {
  position: relative;
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.8rem 1.35rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px hsla(var(--hue-primary), 100%, 50%, 0.3);
}

.budget-btn-trigger:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(var(--hue-primary), 100%, 50%, 0.4);
}

.budget-btn-trigger:active {
  transform: translateY(0);
}

.budget-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--bg);
  animation: pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, hsla(var(--hue-primary), 100%, 50%, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, hsla(var(--hue-secondary), 100%, 50%, 0.03) 0%, transparent 60%);
}

.hero-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--text) 30%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 4px 20px hsla(var(--hue-primary), 100%, 50%, 0.35);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px hsla(var(--hue-primary), 100%, 50%, 0.45);
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

/* Catalog / Grid Section */
.catalog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary);
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* Search and Filters */
.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.5rem;
  border-radius: 15px;
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text);
  font-size: 1.05rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.categories-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.category-filter {
  background: var(--card);
  color: var(--text-muted);
  border: 1px solid var(--card-border);
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.category-filter:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.category-filter.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--primary-glow);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  transition: var(--transition-slow);
}

.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-glow);
}

.product-img-wrapper {
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  overflow: hidden;
  background: radial-gradient(circle at center, var(--bg-offset) 0%, transparent 70%);
}

.product-icon {
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 120px;
  transition: var(--transition-slow);
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(2deg);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--card-border);
  color: var(--text-muted);
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid var(--card-border);
}

.product-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.product-meta span {
  display: flex;
  justify-content: space-between;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.add-budget-btn {
  width: 100%;
  background: var(--bg-offset);
  color: var(--text);
  border: 1px solid var(--card-border);
  padding: 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-budget-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.add-budget-btn.added {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* About / Tradição Section */
.about-section {
  background: var(--bg-offset);
  padding: 6rem 2rem;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-hover);
  background-image: linear-gradient(rgba(15, 20, 32, 0.65), rgba(24, 18, 12, 0.75)), url('store-shelf.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  color: white;
  transition: var(--transition-slow);
}

.about-image-card:hover {
  background-image: linear-gradient(rgba(15, 20, 32, 0.55), rgba(24, 18, 12, 0.65)), url('store-shelf.png');
  transform: scale(1.02);
}

.about-image-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-image-card p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.stat-item {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-title);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Contact / Location Section */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.5rem;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateX(5px);
  border-color: var(--primary);
}

.info-icon {
  background: var(--primary-glow);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-details h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-details a {
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-block;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--card);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

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

/* Side Drawer (Carrinho de Orçamento) */
.drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  z-index: 2000;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.drawer.open {
  right: 0;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-title {
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: var(--card-border);
}

.drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: var(--bg-offset);
  border: 1px solid var(--card-border);
  align-items: center;
}

.cart-item-icon {
  width: 40px;
  height: 40px;
  background: var(--card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

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

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  background: var(--card);
  border: 1px solid var(--card-border);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
}

.qty-input {
  width: 30px;
  text-align: center;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--text);
}

.remove-item-btn {
  background: none;
  border: none;
  color: #f44336;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
}

.remove-item-btn:hover {
  background: rgba(244, 67, 54, 0.1);
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--card-border);
  background: var(--card);
}

.send-whatsapp-btn {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px var(--accent-glow);
  transition: var(--transition);
}

.send-whatsapp-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.empty-cart-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
  text-align: center;
  gap: 1rem;
}

.empty-cart-state svg {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

/* Backdrop Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1900;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

/* Footer Section */
footer {
  background: var(--secondary);
  color: white;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-about h3 span {
  color: var(--primary);
}

.footer-about p {
  opacity: 0.7;
  max-width: 400px;
  font-size: 0.95rem;
}

.footer-brand {
  margin-bottom: 1.25rem;
  color: white;
}

footer .logo-name {
  color: #f08d2f;
}

footer .logo-sub {
  color: rgba(255, 197, 138, 0.88);
}

footer .logo-mark {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-links h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--primary);
  margin-top: 0.5rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  opacity: 0.7;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes pop {
  0% { transform: scale(0); }
  80% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: var(--shadow-hover);
  z-index: 3000;
  transition: var(--transition);
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* Responsive Breakpoints */
@media (max-width: 968px) {
  .nav-container {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    gap: 0.85rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions {
    margin-left: 0;
    gap: 0.5rem;
  }

  .theme-btn {
    padding: 0.45rem;
  }

  .theme-btn svg {
    width: 18px;
    height: 18px;
  }

  .budget-btn-trigger {
    padding: 0.72rem 1rem;
    font-size: 0.82rem;
    gap: 0.4rem;
    white-space: nowrap;
  }

  .logo-img {
    width: clamp(150px, 26vw, 220px);
  }

  .about-container, .contact-grid, .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image-card {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0.75rem 0.85rem;
    justify-content: space-between;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .theme-btn {
    padding: 0.4rem;
  }

  .theme-btn svg {
    width: 17px;
    height: 17px;
  }

  .budget-btn-trigger {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 18px;
    justify-content: center;
    font-size: 0;
    gap: 0;
  }

  .budget-btn-trigger svg {
    width: 21px;
    height: 21px;
  }

  .logo-mark {
    width: 44px;
    height: 44px;
  }

  .logo-name {
    font-size: 2rem;
  }

  .logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
}

/* Logo and Image Enhancements */
.logo-img {
  width: clamp(180px, 18vw, 290px);
  height: auto;
  max-width: 100%;
  display: block;
}

.footer-logo-img {
  width: clamp(220px, 24vw, 340px);
  height: auto;
  max-width: 100%;
  display: block;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .logo-img {
    width: min(210px, 56vw);
  }

  .footer-logo-img {
    width: min(300px, 78vw);
  }

  .footer-about {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-about p {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.7rem 0.75rem;
    gap: 0.6rem;
  }

  .logo-img {
    width: min(180px, 54vw);
  }

  .budget-btn-trigger {
    width: 48px;
    height: 48px;
  }

  .budget-btn-trigger svg {
    width: 18px;
    height: 18px;
  }

  .footer-logo-img {
    width: min(260px, 82vw);
  }
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-slow);
}

.product-card:hover .product-img {
  transform: scale(1.08) rotate(1deg);
}

.cart-item-img-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-offset);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

