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

/* CSS Variables */
:root {
  --primary-color: #1b3bb8;
  --primary-light: #3757d4;
  --primary-dark: #122880;
  --accent-color: #e52433;
  --accent-hover: #c41825;
  --bg-light: #ffffff;
  --bg-offset: #f4f6fc;
  --bg-dark: #070d22;
  --text-dark: #0b132b;
  --text-muted: #4e5d78;
  --text-light: #ffffff;
  --border-color: #e2e8f0;
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px rgba(27, 59, 184, 0.06);
  --shadow-lg: 0 20px 40px rgba(27, 59, 184, 0.12);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Custom Background Patterns */
.bg-brand-pattern {
  background-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg transform='rotate(-45 40 40)' stroke='rgba(255,255,255,0.035)' stroke-width='2' fill='none'%3E%3Ccircle cx='28' cy='40' r='10'/%3E%3Ccircle cx='52' cy='40' r='10'/%3E%3Cline x1='38' y1='40' x2='42' y2='40'/%3E%3Cline x1='18' y1='40' x2='14' y2='34'/%3E%3Cline x1='62' y1='40' x2='66' y2='34'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.bg-brand-pattern-dark {
  background-color: var(--bg-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg transform='rotate(-45 40 40)' stroke='rgba(27,59,184,0.06)' stroke-width='2' fill='none'%3E%3Ccircle cx='28' cy='40' r='10'/%3E%3Ccircle cx='52' cy='40' r='10'/%3E%3Cline x1='38' y1='40' x2='42' y2='40'/%3E%3Cline x1='18' y1='40' x2='14' y2='34'/%3E%3Cline x1='62' y1='40' x2='66' y2='34'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 60, 246, 0.08);
  transition: var(--transition);
}

header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo-link {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo-svg-header {
  height: 100%;
  width: auto;
}

/* Filter logo inside headers where BG is white, to make the white circles dark/primary blue if needed,
   but we designed the SVG logo to have white circles. On a white header, white circles won't stand out.
   Let's create a custom class or filter. Wait, we can wrap the logo SVG in a container that has a blue background,
   or we can style the SVG dynamically with CSS! That is why we wrote defs and CSS classes inside the SVG!
   If the SVG is inline or injected, we can control it. Since we will embed it as an inline SVG or use a custom CSS filter: */
header .brand-glasses-rim {
  stroke: var(--primary-color);
}
header .brand-glasses-bridge {
  stroke: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-cta {
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 26, 43, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 26, 43, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* Sections Layout */
section {
  padding: 100px 24px;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 38px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  z-index: 2;
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent-color);
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-title span {
  color: #a3b8ff;
  display: block;
}

.hero-desc {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 550px;
}

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

.btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-light);
  box-shadow: 0 6px 20px rgba(255, 26, 43, 0.35);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 26, 43, 0.45);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-1deg);
  transition: var(--transition);
}

.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image-wrapper img {
  border-radius: 20px;
  width: 100%;
}

/* Features/Diferenciais Section */
.features {
  background-color: var(--bg-offset);
}

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

.feature-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 60, 246, 0.15);
}

.feature-icon-box {
  width: 64px;
  height: 64px;
  background-color: rgba(14, 60, 246, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 24px;
  font-size: 24px;
  transition: var(--transition);
}

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

.feature-title {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.feature-desc {
  color: var(--text-muted);
  font-size: 15px;
}

/* Products Gallery */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  background-color: var(--bg-light);
  box-shadow: var(--shadow);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 60, 246, 0.15);
}

.product-image {
  background-color: var(--bg-offset);
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image svg {
  height: 120px;
  width: auto;
  transition: var(--transition);
}

.product-card:hover .product-image svg {
  transform: scale(1.15) rotate(5deg);
}

.product-info {
  padding: 24px;
}

.product-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.product-name {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.product-features-list {
  list-style: none;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-features-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features-list li::before {
  content: '✓';
  color: #10b981;
  font-weight: bold;
}

.product-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
}

.product-badge {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.product-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-btn:hover {
  background-color: var(--primary-dark);
}

/* Lojas / WhatsApp Section */
.stores-section {
  background-color: var(--bg-offset);
}

.stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.store-form-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-offset);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(14, 60, 246, 0.1);
}

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

.form-notice {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}

.store-cards-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.store-info-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow);
}

.store-info-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.store-details h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-address {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.store-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.store-action-btn {
  background-color: #25d366; /* WhatsApp Green */
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.store-action-btn:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Testimonials / Depoimentos */
.testimonials {
  position: relative;
}

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

.testimonial-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 60, 246, 0.15);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: #ffb800;
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.testimonial-author-name h4 {
  font-size: 16px;
  color: var(--text-dark);
}

.testimonial-author-name span {
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-section {
  background-color: var(--bg-offset);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-icon {
  font-size: 20px;
  color: var(--primary-color);
  transition: var(--transition);
}

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

/* Page templates: Privacy Policy / Terms / Deletion Request */
.policy-page {
  padding-top: 140px;
  padding-bottom: 80px;
}

.policy-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 60px;
  box-shadow: var(--shadow);
}

.policy-title {
  font-size: 40px;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.policy-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.policy-content h2 {
  font-size: 22px;
  color: var(--text-dark);
  margin-top: 36px;
  margin-bottom: 16px;
}

.policy-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 18px;
  text-align: justify;
}

.policy-content ul, .policy-content ol {
  color: var(--text-muted);
  font-size: 15px;
  margin-left: 24px;
  margin-bottom: 18px;
}

.policy-content li {
  margin-bottom: 8px;
}

.deletion-box {
  background-color: var(--bg-offset);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
}

/* Footer Section */
footer {
  background-color: var(--bg-dark);
  color: #a0aec0;
  padding: 80px 24px 30px 24px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

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

.footer-logo-svg {
  height: 55px;
  width: auto;
}

/* For the footer logo, glasses outline should be white */
footer .brand-glasses-rim {
  stroke: #ffffff;
}
footer .brand-glasses-bridge {
  stroke: #ffffff;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-title {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-info li strong {
  color: var(--text-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-compliance-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
}

.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  text-align: justify;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
}

.cookie-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-accept {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
}

.cookie-btn-accept:hover {
  background-color: var(--primary-dark);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.cookie-btn-reject:hover {
  background-color: var(--bg-offset);
  color: var(--text-dark);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  section {
    padding: 70px 20px;
  }
  
  .hero {
    padding-top: 140px;
    padding-bottom: 70px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .stores-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 99;
  }
  
  .nav-menu.open {
    transform: translateY(0);
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .nav-cta {
    display: none; /* Hide top CTA in mobile header to save space, will use in menu or body */
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .policy-content-wrapper {
    padding: 30px 20px;
  }
  
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }
}
