/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Titan+One&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --header-color: hsl(142, 45%, 35%);       /* Forest Green */
  --first-color: hsl(142, 42%, 93%);       /* Forest Green */
  --first-color-dark: hsl(142, 50%, 25%);  /* Dark Herbal Green */
  --first-color-darken: hsl(142, 50%, 18%);/* Deep Botanical Green */
  --second-color: hsl(45, 100%, 52%);
  --second-color-dark: hsl(45, 100%, 20%);
  --white-color: hsl(46, 100%, 57%);
  --shadow-img: drop-shadow(0 12px 24px hsla(0, 0%, 0%, .4));
  --shadow-circle: 0 12px 24px hsla(0, 0%, 0%, .4);
  --shadow-button: 0 -4px 8px hsla(0, 0%, 0%, .3);
  --shadow-card: 0 -8px 24px hsla(0, 0%, 0%, .3);
  --shadow-text: 0 2px 4px var(--first-color-darken);

  
  
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Titan One", sans-serif;
  --biggest-font-size: 3.5rem;
  --h1-font-size: 1.5rem;
  --h1a-font-size: 1rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 5.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--first-color);
  color: hsl(148, 83%, 5%);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  font: var(--font-regular) var(--h1-font-size) var(--second-font);
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: var(--shadow-text);
  color: var(--white-color);
   text-shadow: 0px 0px 2px #1a1a1a, 0px 0px 2px #1a1a1a, 0px 0px 0 #1a1a1a, 0px 0px 0 #1a1a1a;
    -webkit-text-stroke: 0.4px #1a1a1a;
}

.main {
  overflow: hidden;
}




/*=============== Stripe-Button ===============*/






/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--header-color);
  z-index: var(--z-fixed);
  transition: box-shadow .4s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-family: var(--second-font);
  text-shadow: var(--shadow-text);
}

.nav__close, 
.nav__toggle {
  display: flex;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: var(--first-color-dark);
    width: 100%;
    height: 100%;
    padding: 7rem 1.5rem 2.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
  }
}

.nav__list, 
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  color: hsl(0, 0%, 20%);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__link:hover {
  color: var(--second-color);
}

.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
  align-self: flex-end;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: color .4s;
}

.nav__social-link:hover {
  color: var(--second-color);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Shadow header */
.shadow-header {
  box-shadow: 0 2px 16px hsla(0, 0%, 0%, .15);
}

/* Active link */
.active-link {
  color: var(--second-color);
}

/*=============== Inicio ===============*/
.home__container {
  padding-top: 1.5rem;
  justify-content: center;
  row-gap: 4rem;
}

.home__data {
  position: relative;
  text-align: center;
}

.home__title {
  font: var(--font-regular) var(--biggest-font-size) var(--second-font);
  line-height: 1.2;
  margin-bottom: 1.2rem;

  color: var(--white-color);

  /* Shadow and stroke to make yellow pop */
  text-shadow:
    0px 0px 2px #1a1a1a,
    1px -1px 6px #1a1a1a,
   -1px  1px 0 #1a1a1a,
    1px  1px 0 #1a1a1a;

  -webkit-text-stroke: 0.4px #1a1a1a;
  


}

.home__subtitle {
  display: block;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 550;
  color: var(--white-color);
  margin-top: 0.5rem;
}


.home__meat {
  width: 40px;
  position: absolute;
  top: 9rem;
  right: 0;
  opacity: .5;
}

.home__description {
  margin-bottom: 2.5rem;
}

.home__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}

.home__images {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
}

.home__circle {
  width: 320px;
  height: 320px;
  background-color: var(--first-color-darken);
  border-radius: 50%;
  box-shadow: inset var(--shadow-circle);
  display: grid;
  place-items: center;
}

.home__subcircle {
  width: 250px;
  height: 250px;
  background-color: var(--second-color);
  border-radius: 50%;
  box-shadow: inset var(--shadow-circle);
}

.home__images .home__img {
  width: 250px;
  rotate: 10deg;
  filter: var(--shadow-img);
  position: absolute;
}

.home__images img {
  width: 60px;
  filter: var(--shadow-img);
  position: absolute;
}

.home__chips-1 {
  right: -.5rem;
}

.home__chips-2 {
  bottom: -.75rem;
  right: .5rem;
}

.home__chips-3 {
  top: .25rem;
  left: -.5rem;
}

.home__tomato-1 {
  top: -1.5rem;
  right: 2.5rem;
}

.home__tomato-2 {
  left: 3.5rem;
  bottom: -1.5rem;
}

.home__leaf {
  left: -.75rem;
}

/*=============== BUTTON ===============*/

.button {
  background-color: var(--second-color);
  color: var(--second-color-dark);
  font-weight: var(--font-semi-bold);
  padding: 0.75rem 2rem;
  border-radius: 4rem;
  box-shadow: inset var(--shadow-button);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(241, 183, 0, 0.4), inset var(--shadow-button);
}

.button__ghost {
  background-color: transparent;
  box-shadow: none;
  border: 3px solid var(--second-color);
  color: var(--second-color);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button__ghost:hover {
  background-color: var(--second-color);
  color: var(--second-color-dark);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(241, 183, 0, 0.4);
}

/*=============== FAVORITES ======
.favorites__container {
  row-gap: 3rem;
  grid-template-columns: 100%;
  padding-bottom: 3rem;
}

.favorites__data {
  position: relative;
  text-align: center;
}

.favorites__cheese-1, 
.favorites__cheese-2 {
  width: 40px;
  position: absolute;
  opacity: .5;
}

.favorites__cheese-1 {
  top: 2rem;
  right: -1rem;
  rotate: -15deg;
}

.favorites__cheese-2 {
  bottom: -2rem;
  left: -.75rem;
  transform: scaleX(-1) rotate(45deg);
}

.favorites__article {
  position: relative;
  width: 200px;
}

.favorites__img {
  width: 200px;
  scale: .8;
  transition: scale .4s, filter .4s;
}

.favorites__leaf-1, 
.favorites__leaf-2 {
  width: 70px;
  position: absolute;
  filter: var(--shadow-img);
  scale: 0;
  transition: scale .4s .1s;
}

.favorites__leaf-1 {
  top: -1rem;
  right: -.5rem;
}

.favorites__leaf-2 {
  bottom: -1rem;
  left: -.5rem;
}

=========*/
/* Swiper class */
.swiper {
  margin-inline: initial;
  overflow: visible;
}

:is(.swiper-slide-active, .swiper-slide-duplicate-active) .favorites__img {
  scale: 1;
  filter: var(--shadow-img);
}

:is(.swiper-slide-active, .swiper-slide-duplicate-active) .favorites__leaf-1,
:is(.swiper-slide-active, .swiper-slide-duplicate-active) .favorites__leaf-2 {
  scale: 1;
}

/*=============== CARE ===============*/
.care {
  background-color: var(--first-color-dark);
}

.care__container {
  row-gap: 3rem;
  padding-block: 1rem 2rem;
}

.care__list {
  display: grid;
  row-gap: 1.25rem;
}

.care__item {
  display: flex;
  column-gap: .75rem;
  align-items: center;
}

.care__item i {
  font-size: 1.5rem;
  color: var(--second-color);
}

.care__img {
  width: 320px;
  filter: var(--shadow-img);
  justify-self: center;
}

/*=============== BANNER ===============*/
.banner {
  padding-top: 3rem;
}

.banner__container {
  background-color: var(--second-color);
  padding: 1rem 1.5rem;
}

.banner__list {
  display: flex;
  justify-content: center;
  column-gap: 1.5rem;
}

.banner__item {
  color: var(--second-color-dark);
  display: flex;
  align-items: center;
  column-gap: .5rem;
}

.banner__item i {
  font-size: 1.5rem;
}

.banner__item span {
  font: var(--small-font-size) var(--second-font);
}

/*=============== PRODUCTS ===============*/
.products__container {
  position: relative;
  padding-top: 4.5rem;
}

.products__content {
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 1.5rem;
}

.products__card {
  position: relative;
  padding: 6.25rem .75rem 1.25rem;
  border-radius: 1rem;
  box-shadow: inset var(--shadow-card);
  z-index: 10;
}

.products__img {
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  width: 120px;
  margin: 0 auto;
  filter: var(--shadow-img);
  transition: transform .4s;
}

.products__subtitle {
    position: relative;
    z-index: 10;
  font-size: var(--small-font-size) var(--second-font);
  margin-bottom: .5rem;
  color: rgb(13, 8, 8);
    font-size: 1.5rem;
    font-weight: bold;

}

.products__title {
  font: var(--font-regular) var(--h2-font-size) var(--second-font);
  margin-bottom: .5rem;
  color: var(--white-color);
}

.products__price {
  font-family: var(--font-regular);
  color: rgb(226, 226, 226);
    font-size: 2rem;

}


.products__button {
  background: linear-gradient(to bottom right, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  cursor: pointer;
}

.products__button:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}


.products__button.a {
text-decoration: none;
  
}

.products__card:hover .products__img {
  transform: translateY(-.5rem);
}

.products__crab, 
.products__hamburger, 
.products__cheese {
  position: absolute;
  width: 40px;
  opacity: .5;
}

.products__crab {
  top: -2.5rem;
  left: 0;
  rotate: 30deg;
}

.products__hamburger {
  top: 17rem;
  right: -1.5rem;
  rotate: -15deg;
}

.products__cheese {
  left: 2rem;
  right: 0;
  margin: 0 auto;
  bottom: 3rem;
  rotate: 15deg;
}

/*=============== CONTACT ===============*/

.contact__container {
  position: relative;
  background-color: hsl(45,100%,52%);
  padding: 3.5rem 1.5rem;
  border-radius: 2rem;
  box-shadow: inset var(--shadow-card);
  overflow: hidden;
  max-width: 1000px;   /* ✅ prevent it from stretching too much */
  margin: 0 auto;      /* center it */
  text-align: center;
}

.section__title {
  margin-bottom: 2rem;
}

/* ===== Layout ===== */
.contact__content { padding-top: 1rem; }
.contact__data {
  display: grid;
  gap: 1.5rem;
}



/* ===== Blocks ===== */
.contact__block {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform .2s ease;
}
.contact__block:hover {
  transform: translateY(-3px);
}

.contact__title {
  font: var(--font-regular) var(--h2-font-size) var(--second-font);
  font-weight: 00;
  margin-bottom: .75rem;
  color: #000;
}
.contact__hint {
  margin-bottom: 1rem;
  font-size: .95rem;
  opacity: .8;
}

/* ===== CTAs ===== */
.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  padding: .75rem 1.25rem;
  border-radius: .7rem;
  font-weight: 700;
  border: 1px solid #16a34a;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 16px rgba(34,197,94,.25);
}
.contact__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.contact__cta--outline {
  background: #fff;
  color: #0b1220;
  border: 1px solid #d1d5db;
  box-shadow: none;
}
.contact__cta--outline:hover {
  background: #f8fafc;
}
.contact__cta i {
  font-size: 1.2rem;
}



/* ===== Visual Image ===== */


/* ===== WhatsApp Floating Button ===== */
.whatsapp-float{
  position:fixed; right:18px; bottom:18px; z-index:60;
  width:56px; height:56px; border-radius:50%;
  display:grid; place-items:center; background:#25D366;
  box-shadow:0 14px 30px rgba(0,0,0,.22), 0 8px 12px rgba(0,0,0,.18);
  transition:transform .15s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{transform:translateY(-2px); box-shadow:0 18px 36px rgba(0,0,0,.28), 0 10px 14px rgba(0,0,0,.2);}
.whatsapp-float img{width:28px; height:28px; display:block;}

/* ===== Decorative Sprites ===== */
.contact__shrimp,.contact__crab,.contact__meat{
  position:absolute; width:40px; opacity:.5;
}
.contact__shrimp{top:9rem; right:1.5rem; rotate:15deg;}
.contact__crab{top:17rem; left:1rem;  rotate:15deg;}
.contact__meat{right:2rem; bottom:11rem; rotate:-15deg;}

/* ===== Small screens ===== */
@media (max-width:768px){
  .contact__block{padding:.9rem 1rem;}
}

/* Paste into your main CSS file */
.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
   width: clamp(64px, 8vw, 96px);   /* bigger range */
  height: clamp(64px, 8vw, 96px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
}

.whatsapp-float img {
  width: auto;
  height: auto;
}


.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}







/*=============== FOOTER ===============*/
.footer {
  background: hsl(142, 42%, 93%);
  color: #cbd5e1;
  padding-block: 3rem 2rem;
  text-align: center;
}

.footer__container {
  row-gap: 2rem;
}

.footer__logo {
  color: var(--white-color); /* override to custom white */
  font: var(--h1-font-size) var(--second-font);
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
  justify-self: center;
  text-shadow: var(--shadow-text);
  font-size: 1.2rem; /* optional: keep or remove if using var(--h1-font-size) */
}

.footer__content.grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.footer__link {
  color: var(--white-color);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer__link:hover {
  color: #b3a400;
  text-decoration: underline;
}

.footer__secure {
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.9;
    color: #01060b;

}

.footer__cards {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  color: #01060b;
}

.footer__cards img {
  height: 35px;
  opacity: 0.9;
  color: #16a34a;
}

.footer__copy {
  display: block;
  font-size: 0.85rem;
  color: #01060b;
  margin-top: 1.5rem;
}



/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  background-color: hsl(170, 50%, 30%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(170, 50%, 20%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(170, 50%, 15%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--first-color-dark);
  color: var(--white-color);
  box-shadow: inset var(--shadow-button);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover {
  transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .section__title {
    font-size: var(--h2-font-size);
  }

  .home__title {
    font-size: 3rem;
  }
  .home__buttons {
    flex-direction: column;
    row-gap: 1rem;
  }
  .home__circle {
    width: 250px;
    height: 250px;
  }
  .home__subcircle {
    width: 200px;
    height: 200px;
  }
  .home__images .home__img {
    width: 200px;
  }

  .products__content {
    grid-template-columns: 160px;
    justify-content: center;
  }

  .footer__content {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 1.5rem;
  }
  .footer__copy {
    grid-column: 1;
  }
}

/* For medium devices */
@media screen and (min-width: 540px) {
  .home__container,
  .favorites__container,
  .care__container {
    grid-template-columns: 370px;
    justify-content: center;
  }

  .favorites__swiper {
    max-width: 600px;
    overflow-x: clip;
    justify-self: center;
  }

  .products__content {
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
  }

  .contact {
    display: grid;
    grid-template-columns: 450px;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .products__content {
    grid-template-columns: repeat(3, 160px);
  }

  .contact {
    grid-template-columns: 550px;
  }

  .footer__content {
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    align-items: center;
  }
  .footer__copy {
    grid-column: initial;
  }
  .footer__link:nth-child(2) {
    order: 1;
  }
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 7rem 2rem;
  }
  .section__title {
    margin-bottom: 2rem;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }
  .nav__toggle, 
  .nav__close {
    display: none;
  }
  .nav__link {
    font-size: var(--normal-font-size);
  }
  .nav__menu {
    display: flex;
    column-gap: 3rem;
    align-items: center;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }

  .home__container {
    grid-template-columns: 420px 585px;
    align-items: center;
    column-gap: 6rem;
    padding-top: 5rem;
  }
  .home__data {
    text-align: initial;
  }
  .home__title {
    margin-bottom: 1.5rem;
  }
  .home__description {
    margin-bottom: 4rem;
  }
  .home__buttons {
    justify-content: initial;
    column-gap: 1.5rem;
  }
  .home__meat {
    width: 80px;
    top: 13rem;
  }
  .home__circle {
    width: 550px;
    height: 550px;
  }
  .home__subcircle {
    width: 430px;
    height: 430px;
  }
  .home__images .home__img {
    width: 400px;
  }
  .home__images img {
    width: 95px;
  }

  .favorites__container {
    grid-template-columns: 520px;
    row-gap: 4rem;
  }
  .favorites__cheese-1, 
  .favorites__cheese-2 {
    width: 80px;
  }
  .favorites__cheese-1 {
    right: -18rem;
  }
  .favorites__cheese-2 {
    left: -18rem;
  }
  .favorites__swiper {
    max-width: 1000px;
  }
  .favorites__article, 
  .favorites__img {
    width: 320px;
  }
  .favorites__leaf-1, 
  .favorites__leaf-2 {
    width: 110px;
  }

  .care__container {
    grid-template-columns: 500px 410px;
    column-gap: 6rem;
    align-items: center;
    padding-block: 4rem;
  }
  .care__img {
    width: 500px;
    order: -1;
  }
  .care__item {
    column-gap: 1rem;
  }
  .care__item i {
    font-size: 2rem;
  }

  .banner {
    padding-top: 4rem;
  }
  .banner__list {
    column-gap: 6.5rem;
  }
  .banner__item {
    column-gap: 1rem;
  }
  .banner__item i {
    font-size: 4.5rem;
  }
  .banner__item span {
    font-size: var(--h1-font-size);
  }

  .products__container {
    padding-top: 7.5rem;
  }
  .products__content {
    grid-template-columns: repeat(3, 250px);
    gap: 10rem 4rem;
  }
  .products__card {
    padding: 11rem 2rem 2rem;
    border-radius: 1.5rem;
  }
  .products__img {
    width: 170px;
    top: -5rem;
  }

  
  .products__button {
    right: 2rem;
    bottom: 2rem;
    padding: 6px;
    font-size: 1.5rem;
    border-radius: .5rem;
  }
  .products__crab, 
  .products__hamburger, 
  .products__cheese {
    width: 80px;
  }
  .products__crab {
    top: 2rem;
  }
  .products__hamburger {
    top: 30rem;
    right: 3rem;
  }
  .products__cheese {
    left: 4rem;
    margin: initial;
  }

  .contact {
    display: block;
  }
  .contact__container {
    border-radius: 4rem;
  }
  .contact__content {
    grid-template: 330px/360px 320px;
    justify-content: center;
    align-items: flex-start;
    column-gap: 10rem;
    padding-top: 2rem;
  }
  .contact__data {
    text-align: initial;
    grid-template: max-content/repeat(2, max-content);
    gap: 3rem 2rem;
  }
  .contact__title {
    margin-bottom: .75rem;
  }
  .contact__social {
    justify-content: initial;
  }
  .contact__img {
    width: 320px;
    transform: translateY(-6rem);
  }
  .contact__shrimp, 
  .contact__crab, 
  .contact__meat {
    width: 80px;
  }
  .contact__shrimp {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 20rem;
  }
  .contact__crab {
    top: 5rem;
    left: 4rem;
  }
  .contact__meat {
    right: initial;
    left: 12rem;
    bottom: -1rem;
  }

  .footer {
    padding-block: 5rem 3rem;
  }
  .footer__container {
    row-gap: 3rem;
  }

  .scrollup {
    right: 3rem;
  }
}


/* === Auto-applied product card improvements === */
.products__img {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}
.products__card {
  background-color: #0b8738d6;;
  color: #111;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.products__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.products__price::after {
  content: "";
}


/* ===== FAQ Styles ===== */
.faq { padding: 2rem 1rem; max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid #ddd; margin-bottom: 1rem; }
.faq__question { width: 100%; text-align: left; font-size: 1.1rem; font-weight: bold; padding: 1rem; background: none; border: none; outline: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq__answer { display: none; padding: 0 1rem 1rem; font-size: 1rem; color: #333; }
.faq__item.active .faq__answer { display: block; }
.faq__toggle { font-size: 1.5rem; transition: transform 0.3s ease; }
.faq__item.active .faq__toggle { transform: rotate(45deg); }
