/* Import elegant Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* CSS VARIABLES - Premium Warm Palette */
:root {
  --bg-primary: #FCFAF6;
  --bg-secondary: #F6F1E7;
  --bg-accent: #EFE8DC;
  
  --text-main: #2D1A14;
  --text-muted: #5C4A42;
  --text-light: #8E7A70;
  
  --color-terracotta: #D36B42;
  --color-terracotta-dark: #B9532A;
  --color-beige: #EAD9C9;
  --color-cream: #FFFDF9;
  
  --color-sage: #818D74;
  --color-sage-light: #EBEFE6;
  
  --font-serif: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 10px 40px rgba(45, 26, 20, 0.04);
  --shadow-hover: 0 20px 50px rgba(45, 26, 20, 0.08);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 32px;
  
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--text-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Loader Screen */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.loader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}

.loader-icon path {
  fill: none;
  stroke: var(--color-terracotta);
  stroke-width: 2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawStroke 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards infinite;
}

.loader-bar {
  width: 150px;
  height: 2px;
  background-color: var(--bg-secondary);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-progress {
  width: 100%;
  height: 100%;
  background-color: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  animation: loadProgress 2.5s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* General Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

/* Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 16px 0;
  background-color: rgba(252, 250, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-premium);
  border-bottom: 1px solid rgba(45, 26, 20, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-main);
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--color-terracotta);
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav CTAs & Menu Toggle */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition-fast);
  position: relative;
}

.btn-icon:hover {
  background-color: var(--bg-secondary);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: var(--color-cream);
  box-shadow: 0 4px 15px rgba(211, 107, 66, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211, 107, 66, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--text-main);
}

.btn-secondary:hover {
  background-color: var(--text-main);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

/* Button Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnimation 0.6s linear;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.btn-secondary .ripple {
  background-color: rgba(45, 26, 20, 0.15);
}

/* Menu Toggle Button for Mobile */
.menu-toggle {
  display: none;
}

/* Fullscreen Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
  background-image: radial-gradient(var(--bg-secondary) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-sage-light);
  color: var(--color-sage);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
  width: fit-content;
}

.hero h1 {
  font-size: 4rem;
  color: var(--text-main);
}

.hero h1 span {
  color: var(--color-terracotta);
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

/* Hero Interactive SVG Illustration */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bakery-svg-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
}

.illustration-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 15px 30px rgba(45, 26, 20, 0.08));
}

/* Floating Elements (Mouse Parallax) */
.floating-element {
  position: absolute;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  z-index: 5;
}

.float-croissant {
  top: 10%;
  right: 5%;
  animation-delay: 0.5s;
}

.float-pretzel {
  bottom: 15%;
  left: 2%;
  animation-delay: 1.5s;
}

.float-wheat {
  top: 60%;
  right: -2%;
  animation-delay: 2.2s;
}

.float-leaf {
  top: 20%;
  left: 10%;
  animation-delay: 0.8s;
}

/* Animated Counters & Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 40px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(45, 26, 20, 0.02);
}

.feature-card:hover {
  transform: translateY(-8px);
  background-color: var(--color-cream);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-beige);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--color-terracotta);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--color-terracotta);
  color: var(--color-cream);
  transform: rotate(10deg);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

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

/* Counters Row */
.counter-box {
  display: flex;
  justify-content: space-around;
  background-color: var(--bg-secondary);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  margin-top: 60px;
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-terracotta);
  display: block;
}

.counter-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Featured Products */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background-color: var(--color-cream);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(45, 26, 20, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 75%; /* 4:3 Aspect Ratio */
}

.product-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 10;
  box-shadow: var(--shadow-premium);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--bg-secondary);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Best Sellers (Auto-sliding Carousel) */
.best-sellers {
  background-color: var(--bg-secondary);
}

.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  cursor: grab;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
}

/* About Section */
.about {
  overflow: hidden;
  background-color: var(--bg-secondary); /* Matches Best Sellers section above */
}

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

.about-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 550px;
}

.about-img-frame {
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-hover);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-1 {
  grid-column: 1 / 9;
  grid-row: 1 / 10;
  z-index: 2;
}

.about-img-2 {
  grid-column: 7 / 13;
  grid-row: 5 / 13;
  z-index: 1;
  border: 8px solid var(--bg-secondary); /* Border matches secondary beige background */
}

.about-img-frame svg {
  background-color: #F5EFE4 !important; /* Keep the warm paper sketch color */
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-content h2 {
  font-size: 3rem;
}

.about-content p {
  color: var(--text-muted);
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.signature-img {
  width: 120px;
  height: auto;
  opacity: 0.8;
}

/* Testimonials Carousel */
.testimonials {
  background-color: var(--bg-accent);
  position: relative;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.quote-icon {
  font-size: 3rem;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-light);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--color-terracotta);
  transform: scale(1.2);
}

/* Instagram Gallery Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  padding-top: 100%; /* 1:1 Aspect */
  box-shadow: var(--shadow-premium);
}

.instagram-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 26, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.instagram-overlay svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.newsletter-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-cream);
  padding: 60px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-hover);
  position: relative;
  z-index: 2;
  border: 1px solid var(--color-beige);
}

.newsletter-form {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 16px 24px;
  border-radius: var(--border-radius-lg);
  border: 1.5px solid var(--color-beige);
  background-color: var(--bg-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  border-color: var(--color-terracotta);
  background-color: var(--color-cream);
  box-shadow: 0 0 0 4px rgba(211, 107, 66, 0.1);
}

/* FAQ Accordion Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-cream);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-beige);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
}

.faq-icon-spin {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--color-terracotta);
}

.faq-item.active {
  border-color: var(--color-terracotta);
}

.faq-item.active .faq-icon-spin {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Section */
.footer {
  background-color: var(--text-main);
  color: var(--color-cream);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo svg {
  fill: var(--color-terracotta);
  width: 36px;
  height: 36px;
}

.footer-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--color-terracotta);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-size: 1.15rem;
  color: var(--color-cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-terracotta);
  padding-left: 4px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-hours span {
  display: flex;
  justify-content: space-between;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Animations and Intersection Observer triggers */
.fade-up-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Keyframe Animations */
@keyframes drawStroke {
  0% {
    stroke-dashoffset: 200;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -200;
  }
}

@keyframes loadProgress {
  to {
    transform: scaleX(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Minimal Monochrome Outline Styles */
.product-img-wrapper > svg,
.about-img-frame > svg,
.instagram-item > svg,
.author-img > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  stroke: var(--text-main);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition-smooth);
  background-color: var(--bg-secondary);
}

.product-card:hover .product-img-wrapper > svg,
.about-img-frame:hover > svg,
.instagram-item:hover > svg {
  transform: scale(1.04) rotate(0.5deg);
}

.author-img > svg {
  padding: 6px;
  background-color: var(--bg-accent);
}

/* Interactive SVG Animations */
.rotating-doodle {
  transform-origin: center;
  animation: rotateDoodle 24s linear infinite;
}

.sparkle {
  transform-origin: center;
  animation: breatheSparkle 3s ease-in-out infinite alternate;
}

.sparkle-delay {
  animation-delay: 1.5s;
}

.illustration-svg {
  animation: breatheScale 6s ease-in-out infinite alternate;
}

.steam-path {
  stroke-dasharray: 20;
  stroke-dashoffset: 40;
  animation: floatSteam 4s linear infinite;
}

@keyframes rotateDoodle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes breatheSparkle {
  0% { transform: scale(0.6) rotate(0deg); opacity: 0.4; }
  100% { transform: scale(1.1) rotate(15deg); opacity: 1; }
}

@keyframes breatheScale {
  0% { transform: scale(0.97); }
  100% { transform: scale(1.03); }
}

@keyframes floatSteam {
  to {
    stroke-dashoffset: 0;
  }
}

/* Menu Section */
.menu {
  background-color: var(--bg-primary);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.menu-category-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(45, 26, 20, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  transition: var(--transition-smooth);
}

.menu-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.menu-category-header {
  margin-bottom: 30px;
  border-bottom: 2px dashed rgba(45, 26, 20, 0.15);
  padding-bottom: 15px;
}

.menu-category-header h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-main);
  font-size: 1.5rem;
}

.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-item-title-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 15px;
}

.menu-item-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.1rem;
}

.menu-item-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--color-terracotta);
  font-size: 1.1rem;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
  
  /* Mobile Menu Toggle */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }
  
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
    transform-origin: left;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-primary);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    z-index: 1050;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-card {
    padding: 40px 24px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
