/* 
  Ily Sweet Gourmet - Premium Style Sheet
  Designed with love, passion, and elegance.
  Color Palette: Sweet Pink, Luxurious Gold, Warm Cocoa Brown & Creamy Vanilla.
*/

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

/* --- Reset & Root Tokens --- */
:root {
  /* Color System */
  --primary: #E75480;            /* Ily Rose */
  --primary-rgb: 231, 84, 128;
  --primary-light: #FFEFF3;      /* Soft strawberry cream */
  --primary-hover: #D03E6B;      /* Deeper pink */
  --accent: #D4AF37;             /* Elegant Gold */
  --accent-rgb: 212, 175, 55;
  --accent-hover: #C5A028;
  --bg-cream: #FFFDF9;           /* Creamy Vanilla */
  --bg-blush: #FFF5F7;           /* Sweet Blush */
  --text-dark: #3E2723;          /* Dark Cocoa Brown (Elegance over raw black) */
  --text-light: #6D4C41;         /* Medium Cocoa Brown */
  --white: #FFFFFF;
  
  /* Glassmorphism & Borders */
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.5);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 50px;
  
  /* Shadows & Depth */
  --shadow-sm: 0 4px 10px rgba(231, 84, 128, 0.05);
  --shadow-md: 0 10px 25px rgba(231, 84, 128, 0.08);
  --shadow-lg: 0 20px 40px rgba(231, 84, 128, 0.12);
  --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.15);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-blush);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border: 2px solid var(--bg-blush);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- Reusable Components & Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-dark);
}

p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.section-tag {
  display: inline-block;
  font-family: 'Pacifico', cursive;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #FF7FA6);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent), #E5C158);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
}

/* --- Floating Ribbon Banner (Brand Details) --- */
.ribbon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.ribbon {
  background: linear-gradient(135deg, #FF9EBA, var(--primary));
  color: var(--white);
  padding: 8px 30px;
  position: relative;
  font-family: 'Pacifico', cursive;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: var(--shadow-md);
  border-radius: 4px;
}

.ribbon::before, .ribbon::after {
  content: '';
  position: absolute;
  border-style: solid;
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

header.scrolled {
  padding: 5px 0;
  background: rgba(255, 253, 249, 0.95);
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(231, 84, 128, 0.05);
}

.logo-subtext {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-light);
  text-transform: uppercase;
  display: block;
  margin-top: -5px;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

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

.nav-link:hover {
  color: var(--primary);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-icon-btn {
  background: var(--primary-light);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.cart-icon-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  padding: 160px 0 100px;
  background: radial-gradient(circle at 80% 20%, #FFF0F3 0%, var(--bg-cream) 60%);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}

.shape-1 {
  top: 15%;
  left: 5%;
  color: rgba(231, 84, 128, 0.15);
  animation: float 6s ease-in-out infinite alternate;
}

.shape-2 {
  bottom: 10%;
  right: 8%;
  color: rgba(212, 175, 55, 0.2);
  animation: float 8s ease-in-out infinite alternate-reverse;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
  font-family: 'Pacifico', cursive;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 550px;
}

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

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease-out;
}

.hero-img-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, rgba(255, 178, 201, 0.3), rgba(212, 175, 55, 0.15));
  border-radius: 50%;
  filter: blur(20px);
  z-index: 1;
}

.hero-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  z-index: 2;
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.hero-img:hover {
  transform: rotate(0deg) scale(1.03);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--white);
  padding: 15px 25px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 5px solid var(--accent);
}

.hero-badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

/* --- Features / Differential Section --- */
.features {
  padding: 80px 0;
  background-color: var(--white);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-cream);
  padding: 40px 30px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--primary-light);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary);
  font-size: 1.8rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  color: var(--white);
  transform: rotate(360deg);
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-desc {
  font-size: 0.9rem;
}

/* --- About Section ("Quem Somos") --- */
.about {
  padding: 100px 0;
  background-color: var(--bg-blush);
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-main {
  width: 85%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

.about-img-sub {
  position: absolute;
  width: 45%;
  bottom: -30px;
  right: -10px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  transform: rotate(-3deg);
  transition: var(--transition);
}

.about-img-sub:hover {
  transform: rotate(0deg) scale(1.05);
}

.about-content {
  padding-left: 20px;
}

.about-desc {
  font-size: 1rem;
  margin-bottom: 25px;
  text-align: justify;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.value-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.value-icon {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 3px;
}

.value-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.value-desc {
  font-size: 0.85rem;
}

/* --- Interactive Catalog / Products Menu ("Nossos Doces") --- */
.catalog {
  padding: 100px 0;
  background-color: var(--white);
}

.catalog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.tabs-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px auto 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-cream);
  border: 1px solid var(--primary-light);
  color: var(--text-light);
  padding: 10px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.tab-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* Grid of Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(231, 84, 128, 0.05);
  display: flex;
  flex-direction: column;
}

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

.product-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.product-badge.out-of-stock {
  background: #7D7D7D; /* Grey for out of stock */
}

.product-badge.pre-order {
  background: #E5C158; /* Warm gold for order request */
}

.product-badge.discount {
  background: #E53935; /* Red for sales */
}

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

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.product-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.product-price .original-price {
  font-size: 1.05rem;
  text-decoration: line-through;
  color: var(--text-light);
  opacity: 0.6;
  margin-right: 8px;
  font-weight: 400;
  display: inline-block;
}

.product-desc {
  font-size: 0.88rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  gap: 12px;
  align-items: center;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: var(--primary-light);
  border-radius: var(--border-radius-pill);
  padding: 4px;
}

.qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--white);
  border-radius: 50%;
}

.qty-input {
  width: 30px;
  text-align: center;
  border: none;
  background: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-add-to-cart {
  flex-grow: 1;
  font-size: 0.85rem;
  padding: 10px 15px;
}

/* --- Cart Sidebar Drawer --- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.cart-header {
  padding: 25px;
  border-bottom: 1px solid var(--primary-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-blush);
}

.cart-header-title {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-header-title i {
  color: var(--primary);
}

.close-cart-btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.close-cart-btn:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.cart-items-container {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Empty Cart State */
.empty-cart-message {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-light);
}

.empty-cart-message i {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 15px;
  display: block;
}

.cart-item {
  display: flex;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid rgba(231, 84, 128, 0.05);
  padding-bottom: 15px;
}

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

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

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #E57373;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 5px;
}

.cart-item-remove:hover {
  color: #D32F2F;
  transform: scale(1.1);
}

.cart-footer {
  padding: 25px;
  border-top: 1px solid var(--primary-light);
  background: var(--bg-cream);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.cart-summary-total {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--primary);
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(62, 39, 35, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

/* --- Testimonials Section ("Depoimentos") --- */
.testimonials {
  padding: 100px 0;
  background-color: var(--bg-blush);
  position: relative;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

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

.testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--primary-light);
  position: relative;
  transition: var(--transition);
}

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

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2.5rem;
  color: rgba(231, 84, 128, 0.1);
  font-family: 'Playfair Display', serif;
}

.stars-rating {
  color: var(--accent);
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.92rem;
  margin-bottom: 25px;
  color: var(--text-light);
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.client-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.client-role {
  font-size: 0.75rem;
  color: var(--accent-hover);
  font-weight: 500;
}

/* --- Contact & Location Section --- */
.contact {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info {
  padding-right: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 35px;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-hover);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-map-wrapper {
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--bg-cream);
  position: relative;
}

.contact-map-mock {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}
.contact-map-mock::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/map_bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.9);
  transform: scale(1.05); /* Removes white blur outline */
  z-index: 1;
}
.contact-map-mock > * {
  position: relative;
  z-index: 2;
}

.map-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite alternate;
}

.map-text-heading {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.map-text-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 25px;
  max-width: 320px;
}

/* --- Footer --- */
footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo .logo-text {
  background: linear-gradient(45deg, #FFB2C9, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo .logo-subtext {
  color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
  margin-top: 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer-title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
}

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

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-hours-grid {
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.hours-day {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.hours-time {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

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

/* --- Animations Keyframes --- */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-15px) rotate(3deg);
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-container {
    gap: 30px;
  }
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-image-wrapper {
    margin-top: 40px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content {
    padding-left: 0;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-cream);
    flex-direction: column;
    padding: 50px 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .btn {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .tabs-container {
    gap: 8px;
  }
  .tab-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .product-card {
    max-width: 100%;
  }
  .cart-drawer {
    max-width: 100vw;
  }
}
