/*
 * Style Guide & Premium CSS variables for Palermo Comercial
 */
:root {
  --gold: #C49A4A;
  --gold-hover: #b08538;
  --black: #1F1F1F;
  --black-deep: #111111;
  --black-darker: #0d0d0d;
  --gray: #555555;
  --gray-light: #888888;
  --light: #F5F5F5;
  --white: #FFFFFF;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-main: 'Poppins', sans-serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header & Navigation */
header {
  background: var(--black-deep);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  padding: 20px 0;
}

header.scrolled {
  padding: 12px 0;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
}

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

.logo-container img {
  height: 45px;
  display: block;
  transition: var(--transition);
}

header.scrolled .logo-container img {
  height: 38px;
}

.menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

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

.menu a:hover, .menu a.active {
  color: var(--gold);
}

.menu a:hover::after, .menu a.active::after {
  width: 100%;
}

.btn-header {
  background: var(--gold);
  color: var(--white);
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: 1px solid var(--gold);
}

.btn-header:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 154, 74, 0.4);
}

/* HERO SECTION */
.hero {
  background: var(--black-deep);
  color: var(--white);
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Golden triangles overlay in the background */
.hero::before {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(196, 154, 74, 0.15);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  right: 15%;
  top: -10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(196, 154, 74, 0.1);
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
}

.pre-title {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 16px 35px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 154, 74, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 35px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

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

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.hero-feature i {
  color: var(--gold);
  font-size: 20px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 880px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
  animation: float 6s ease-in-out infinite;
}

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

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
}

/* CATEGORIAS SECTION */
.categories {
  padding: 120px 0;
  background: var(--white);
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  width: 100%;
}

.categories-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 5px;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.categories-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.category-card {
  flex: 0 0 calc(25% - 22.5px); /* Show 4 cards on desktop */
  scroll-snap-align: start;
  height: 380px; /* Tall vertical cards as in the example */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  color: var(--black);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 10;
}

.carousel-control:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 5px 15px rgba(196, 154, 74, 0.3);
}

.carousel-control.prev {
  left: -25px;
}

.carousel-control.next {
  right: -25px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.cat-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.75) 0%, rgba(17, 17, 17, 0.9) 100%);
  z-index: 1;
  transition: var(--transition);
}

.category-card:hover .cat-overlay {
  background: linear-gradient(180deg, rgba(196, 154, 74, 0.8) 0%, rgba(17, 17, 17, 0.95) 100%);
}

.cat-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 30px;
  text-align: center;
}

.cat-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(196, 154, 74, 0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.category-card:hover .cat-icon-wrapper {
  background: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(196, 154, 74, 0.4);
}

.cat-icon-wrapper i {
  color: var(--gold);
  font-size: 28px;
  transition: var(--transition);
}

.category-card:hover .cat-icon-wrapper i {
  color: var(--white);
}

.cat-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.category-card .cat-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  margin-top: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  padding-bottom: 3px;
}

.category-card:hover .cat-link {
  color: var(--white);
  border-color: var(--white);
}

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

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 14px 35px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(196, 154, 74, 0.25);
  transform: translateY(-2px);
}

/* DYNAMIC PRODUCTS DRAWER (MODAL OR EXPANDABLE GRID) */
.products-drawer {
  display: none;
  margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 50px;
  animation: fadeIn 0.5s ease;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 6px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(196, 154, 74, 0.15);
}

.prod-img {
  height: 150px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.prod-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.prod-info p {
  font-size: 13px;
  color: var(--gray);
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}

.btn-quote {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
}

.btn-quote:hover {
  background: var(--gold);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* BENEFITS SECTION (DIFERENCIAIS) */
.benefits {
  background: var(--black-deep);
  color: var(--white);
  padding: 100px 0;
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: rgba(196, 154, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  border: 1px solid rgba(196, 154, 74, 0.2);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.benefit-icon i {
  color: var(--gold);
  font-size: 28px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon i {
  color: var(--white);
}

.benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ABOUT SECTION (QUEM SOMOS) */
.about {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 span {
  color: var(--gold);
}

.about-text p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
}

.about-bullets {
  list-style: none;
  margin-bottom: 40px;
}

.about-bullets li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--black);
}

.about-bullets li i {
  color: var(--gold);
  font-size: 18px;
}

.about-img-container {
  position: relative;
}

.about-img-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
}

.about-img-container img {
  width: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
  display: block;
}

/* NEWSLETTER / CTA SECTION */
.newsletter-section {
  position: relative;
  background: var(--black-deep);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 480px;
}

.newsletter-bg-side {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

.newsletter-bg-side::after {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: linear-gradient(90deg, rgba(17,17,17,0) 0%, rgba(17,17,17,1) 100%);
}

.newsletter-form-side {
  flex: 1;
  padding: 80px 80px 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  background: var(--black-deep);
}

.newsletter-form-side h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-form-side p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
}

.newsletter-form {
  margin-bottom: 25px;
}

.input-group {
  display: flex;
  gap: 10px;
}

.input-group input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 20px;
  color: var(--white);
  font-size: 15px;
  border-radius: 4px;
  outline: none;
  transition: var(--transition);
}

.input-group input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.input-group button {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0 35px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.input-group button:hover {
  background: var(--gold-hover);
}

.newsletter-bullets {
  display: flex;
  gap: 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-bullets span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-bullets span i {
  color: var(--gold);
  font-size: 14px;
}

/* CONTACT MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 550px;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: modalSlide 0.4s ease;
}

@keyframes modalSlide {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--gray);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--black);
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.modal-content p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 25px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input, .form-group textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
}

.btn-submit {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 14px;
  width: 100%;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--gold-hover);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--black-deep);
  color: var(--white);
  padding: 15px 30px;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification.error {
  border-left-color: #e74c3c;
}

/* FOOTER */
footer {
  background: var(--black-darker);
  color: var(--white);
  padding: 80px 0 40px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-about img {
  height: 40px;
  margin-bottom: 25px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

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

.social-links a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact a {
  display: inline;
  color: inherit;
}

.footer-contact a:hover {
  color: var(--gold);
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 48px;
  }
  .about-content {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-features {
    justify-items: center;
  }
  .category-card {
    flex: 0 0 calc(33.333% - 20px);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .newsletter-section {
    flex-direction: column;
  }
  .newsletter-bg-side {
    height: 250px;
  }
  .newsletter-bg-side::after {
    background: linear-gradient(0deg, rgba(17,17,17,1) 0%, rgba(17,17,17,0) 100%);
  }
  .newsletter-form-side {
    padding: 50px 30px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  header {
    padding: 15px 0;
  }
  .logo-container img {
    height: 32px;
  }
  header.scrolled .logo-container img {
    height: 28px;
  }
  .menu {
    display: none; /* In a real project, we'd add a hamburger menu, but let's keep it simple or implement a simple toggle */
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
  }
  .category-card {
    flex: 0 0 calc(50% - 15px);
  }
  .carousel-control {
    display: none;
  }
  .categories-carousel {
    gap: 15px;
    padding: 10px 0;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .copy {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .category-card {
    flex: 0 0 100%;
  }
}
