html {
  scroll-behavior: smooth;
}

button {
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  width: 100%;
  height: 100vh;
  margin: 0;
  font-family: arial;
  background-color: rgba(236, 187, 187, 0);
}

.header {
  padding: 0 7%;
  margin: 0;
  width: 86%;
  min-height: 80px;
  background-color: rgba(255, 255, 255, 0.849);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  box-shadow: 5px 2px 20px #d4d4d4;
  display: grid;
  grid-template-columns: 1fr minmax(250px, 2000px) minmax(77px, 100px) 1fr;
  align-items: center;
  gap: 60px;
  grid-template-areas: "logo search catalog menu";
  z-index: 4;
}

@media (width < 1030px) {
  .header {
    padding: 0 5%;
    width: 90%;
    gap: 50px;
  }
}

@media (width < 945px) {
  .header {
    padding: 0 3%;
    width: 94%;
    gap: 40px;
  }
}

@media (width < 650px) {
  .header {
    grid-template-columns: 1fr minmax(200px, 2000px) minmax(77px, 100px);
    grid-template-areas: "menu search catalog";
    gap: 30px;
  }
}

@media (width < 495px) {
  .header {
    padding: 0 1%;
    width: 98%;
    gap: 16px;
  }
}

@media (width < 395px) {
  .header {
    gap: 10px;
  }
}

.header-buttons {
  display: flex;
  justify-self: end;
  gap: 24px;
}

.header .header-image-link {
  width: min-content;
  cursor: pointer;
  justify-self: start;
  grid-area: logo;
  outline: none;
  transition: filter 0.3s;
}

.header-image-link:focus-within {
  -webkit-filter: drop-shadow(5px 5px 5px #fe6710);
  filter: drop-shadow(2px 2px 4px #fe6710);
}

.logo-2 {
  display: none;
}

@media (width < 945px) {
  .logo-1 {
    display: none;
  }
  .logo-2 {
    display: block;
  }
}

@media (width < 650px) {
  .logo-2 {
    display: none;
  }
}

.header-image {
  height: 100px;
  transition: filter 0.3s;
}

.header-image:hover {
  -webkit-filter: drop-shadow(5px 5px 5px #fe6710);
  filter: drop-shadow(2px 2px 4px #fe6710);
}

.header .search-form {
  position: relative;
  display: flex;
  width: 100%;
  justify-self: center;
  grid-area: search;
  margin-right: 12px;
}

.header .search-input {
  width: 100%;
  height: 52px;
  padding-left: 10px;
  border: 2px solid #fe9110;
  border-radius: 5px;
  outline: none;
  background: #fdf7e6;
  font-size: 20px;
  font-family: arial;
}

@media (width < 650px) {
  .header .search-input {
    font-size: clamp(1rem, 0.2941rem + 2.3529vw, 1.25rem);
  }
}

.header .search-form button {
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 1/1;
  height: 100%;
  border: none;
  background: #fe9110;
  border-radius: 0 5px 5px 0;
  outline: none;
}

.header .search-form button svg path {
  transition: stroke 0.3s;
}

.header .search-form button:focus-visible svg path {
  stroke: #38383891;
}

.header .action-header-buttons {
  width: 60px;
  padding: 0;
  border: none;
  background-color: transparent;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  grid-area: menu;
}

.header .header-buttons button {
  outline: none;
}

.header .action-header-buttons svg {
  width: 40px;
  height: 40px;
}

.cart {
  position: relative;
}

.cart-indicator {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  background-color: #e12709;
  border-radius: 50%;
  display: none;
}

.cart-indicator.active {
  display: block;
}

.cart svg path {
  transition: stroke 0.2s ease;
}

.cart:hover svg path {
  stroke: #fe9110;
  fill: transparent;
}

.action-header-buttons:hover {
  color: #fe9110;
}

.contacts:hover svg path {
  fill: #fe9110;
}

.about:hover svg path {
  fill: #fe9110;
}

.cart:focus-within svg path {
  stroke: #fe9110;
  fill: #fdf7e6;
}

.action-header-buttons:focus-within {
  color: #fe9110;
}

.contacts:focus-within svg path {
  fill: #fe9110;
}

.about:focus-within svg path {
  fill: #fe9110;
}

.contacts-popup {
  position: absolute;
  top: 106%;
  left: auto;
  right: 2%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 100;
  width: 230px;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  box-shadow: 2px 2px 5px #777777;
}

.about-popup {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 100;
  position: absolute;
  top: 106%;
  left: auto;
  right: 2%;
  border: #fd6314 2px solid;
  padding: 15px 10px;
  display: block;
  width: 550px;
  background-color: #fcf8ed;
  background-image: radial-gradient(#fe93101a 2px, transparent 1px);
  background-size: 10px 10px;
  font-size: clamp(0.75rem, 0.6858rem + 0.274vw, 1.0625rem);
  font-weight: 600;
  color: #252525;
  border-radius: 1%;
}

.about-popup .colored {
  color: #fd6314;
  font-weight: 800;
}

@media (width < 1225px) {
  .contacts-popup {
    left: auto;
    right: 48%;
    top: 0;
  }

  .about-popup {
    left: auto;
    right: 48%;
    top: 90%;
    max-width: 400px;
  }

}

@media (width < 650px) {
  .contacts-popup {
    left: 160%;
    top: 0;
    right: auto;
  }
  .about-popup {
    left: 10%;
    top: 85%;
    right: auto;
  }
}

@media (width < 460px) {
  .contacts-popup {
    top: 106%;
    right: auto;
    left: 60%;
  }
  .about-popup {
    width: 400px;
    right: auto;
    left: 0.5%;
    max-width: 350px;
  }
}

.contacts-popup.visible,
.about-popup.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.contacts-popup a {
  cursor: pointer;
  height: 50px;
  padding: 12px 20px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: start;
  gap: 20px;
  border: none;
  box-shadow: 2px 0 2px #ddd;
  font-weight: 600;
  font-size: 16px;
  color: #383838;
  text-decoration: none;
}

.contacts-popup a:hover {
  background-color: #e7e6e650;
  color: #000;
}

.insta-icon .insta-path {
  fill: #383838;
  transition: fill 0.3s ease;
}
.instagram:hover .insta-path {
  fill: url(#instaGradient);
}

.telegram:hover path {
  fill: #30a4e0;
}

.manager:hover path {
  fill: #55ad22d7;
}

.contacts-popup a svg {
  width: 24px;
  aspect-ratio: 1/1;
}


.catalog {
  grid-area: catalog;
  display: flex;
  background-color: #fd6314;
  border: none;
  border-radius: 10%;
  height: 57px;
  width: auto;
  transition: all 0.3s ease;
  color: #fff;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 15px;
  outline: none;
  transition: bacground-color 3s;
}

.catalog:focus-visible {
  scale: 1.05;
}

@media (width < 1330px) {
  .catalog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (width < 500px) {
  .catalog {
    margin-left: -10px;
  }
}

.catalog svg {
  width: 40px;
  aspect-ratio: 1/1;
}

.catalog-popup {
  position: absolute;
  top: 100%;
  left: 65%;
  background: #fff;
  border: 2px solid #fd6314;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: 12px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
  max-height: 80vh;
  overflow-y: auto;
}

@media (width < 650px) {
  .catalog-popup {
    left: auto;
    right: 0;
  }
}

.catalog-popup .category-title {
  font-weight: bold;
  color: #fd6314;
  text-shadow: 1px 1px #1818184f;
  cursor: pointer;
  padding: 4px 0;
  transition: 0.2s;
  border-bottom: 1px solid #fd6314;
}

.catalog-popup .category-title:hover {
  text-decoration: underline;
}

.catalog-popup .product-list {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
}

.catalog-popup .product-list.visible {
  display: flex;
}

.catalog-popup .product-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #383838;
  border-bottom: 1px solid #77777728;
  cursor: pointer;
}

.catalog-popup .product-item:hover {
  background-color: #cccccc27;
}

.catalog-popup .product-item img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.catalog-popup.visually-hidden {
  display: none;
}

.burger-menu {
  display: none;
  background: #fe9110;
  height: 57px;
  aspect-ratio: 1/1;
  font-size: 28px;
  color: #fff;
  border: none;
  outline: none;
  transition: border-radius 0.5s;
}

.burger-menu:focus-visible {
  border-radius: 50%;
}

.menu {
  display: flex;
  gap: 24px;
}

@media (width < 1225px) {
  .burger-menu {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .menu.open {
    display: flex;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .menu.open .action-header-buttons {
    width: 100%;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: none;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
    flex-direction: row;
  }

  .menu.open .action-header-buttons:hover {
    background: #f8f8f8;
  }

  .menu.open .action-header-buttons svg {
    width: 24px;
    height: 24px;
  }
}

@media (width < 650px) {
  .menu {
    left: 0;
    right: auto;
  }
}

.main {
  width: 100%;
  display: grid;
  gap: 20px;
  background-color: #fdf7e6;
}

.preview {
  padding-top: 10%;
}

@media (width < 1300px) {
  .preview {
    padding-top: 15%;
  }
}

@media (width < 900px) {
  .preview {
    padding-top: 20%;
  }
}

@media (width < 510px) {
  .preview {
    padding-top: 25%;
  }
}

.grid_preview {
  justify-self: center;
  max-width: 1248px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.preview #video-preview {
  width: 100%;
  border-top: #fd6314 8px dashed;
  border-left: #fd6314 8px dashed;
  border-bottom: #fd6314 8px dashed;
  border-radius: 7% 0 0 7%;
  pointer-events: none;
  user-select: none;
}

.grid_right-column {
  display: grid;
  gap: 40px;
  grid-template-rows: 1fr 1fr;
  max-width: 608px;
  width: 100%;
}

@media (width < 1315px) {
  .grid_preview,
  .grid_right-column {
    gap: 34px;
  }
}

@media (width < 1025px) {
  .grid_preview,
  .grid_right-column {
    gap: 28px;
  }
}

@media (width < 850px) {
  .grid_preview,
  .grid_right-column {
    gap: 22px;
  }
}

@media (width < 613px) {
  .grid_preview,
  .grid_right-column {
    gap: 18px;
  }
}

@media (width < 552px) {
  .grid_preview,
  .grid_right-column {
    gap: 14px;
  }
}

@media (width < 435px) {
  .grid_preview,
  .grid_right-column {
    gap: 12px;
  }
}

.grid_right-column .delivery {
  border-top: #fd6314 8px dashed;
  border-radius: 0 7% 0 0;
  border-right: #fd6314 8px dashed;
  max-width: 100%;
}

.grid_right-column .discount {
  border-bottom: #fd6314 8px dashed;
  border-radius: 0 0 7% 0;
  border-right: #fd6314 8px dashed;
  max-width: 100%;
}

@media (width < 850px) {
  .preview #video-preview {
    border-width: 6px;
  }
  .grid_right-column .delivery {
    border-width: 6px;
  }
  .grid_right-column .discount {
    border-width: 6px;
  }
}

section {
  padding: 3%;
}

.category-section {
  margin-top: 60px;
  background-image: repeating-linear-gradient(
    45deg,
    #fd6214cb,
    #fd6214cb 40px,
    #fdf7e600 20px,
    #fdf7e600 80px
  );
}

@media (width < 1200px) {
  .category-section {
    margin-top: 40px;
  }
}
@media (width < 800px) {
  .category-section {
    background-image: repeating-linear-gradient(
      45deg,
      #fd6214cb,
      #fd6214cb 20px,
      #fdf7e6 10px,
      #fdf7e6 40px
    );
    margin-top: 30px;
  }
}

.category-menu {
  padding-left: 14%;
  padding-right: 14%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

@media (width < 1200px) {
  .category-menu {
    padding-left: 10%;
    padding-right: 10%;
    gap: 20px;
  }
}

@media (width < 830px) {
  .category-menu {
    padding-left: 8%;
    padding-right: 8%;
    gap: 10px;
  }
}

@media (width < 620px) {
  .category-menu {
    padding-left: 5%;
    padding-right: 5%;
    gap: 6px;
  }
}

.category-menu a {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border: none;
  overflow: hidden;
  text-align: center;
  display: flex;
  text-decoration: none;
  outline: none;
  border: #fdf7e6 6px solid;
}

.category-menu a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.452);
  z-index: 1;
}

.category-menu a span {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(0.875rem, 0.5411rem + 1.4247vw, 2.5rem);
  color: #fff;
  margin: auto;
  text-shadow: 3px 3px #fd6314;
  transition: scale 0.3s;
}

.category-menu a:focus-within span {
  scale: 1.1;
}

.category-menu a:hover span {
  scale: 1.1;
}

@media (width < 1024px) {
  .category-menu a span {
    text-shadow: 2px 2px #fd6314;
  }
}

.category-menu .fruit-button {
  background-image: url("../images/main/fruits.jpg");
}

.category-menu .vegetable-button {
  background-image: url("../images/main/vegetables.jpg");
}

.category-menu .exotic-button {
  background-image: url("../images/main/exotic.jpg");
}

.category h1 {
  text-transform: uppercase;
  text-align: start;
  padding-left: 8%;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 60px;
  color: #fd6314;
  pointer-events: none;
}

@media (width < 1700px) {
  .category h1 {
    font-size: clamp(3.4375rem, 2.6875rem + 1vw, 3.75rem);
  }
}

@media (width < 1200px) {
  .category h1 {
    font-size: clamp(2.5rem, 1.5625rem + 2.5vw, 3.4375rem);
  }
}

@media (width < 800px) {
  .category h1 {
    font-size: clamp(1.875rem, 0.8333rem + 4.4444vw, 2.5rem);
  }
}

@media (width < 600px) {
  .category h1 {
    font-size: clamp(1.25rem, 1.1216rem + 0.5479vw, 1.875rem);
  }
}

#custom-cart {
  background-color: #fc661b;
}

#custom-cart h1 {
  color: #fdf7e6;
}

#custom-cart .cart-logo {
  max-width: 400px;
  margin-left: 8%;
  object-fit: cover;
  aspect-ratio: 1/1;
  object-position: bottom;
}

.cart-grid {
  margin: 0 7%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 120px;
}

.cart-grid #video-cart {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border: 8px dashed #fdf7e6;
  pointer-events: none;
  user-select: none;
}

.custom-cart-description {
  color: #fdf7e6;
  display: flex;
  flex-direction: column;
}

.custom-cart-description h2 {
  margin: 0 0 30px 0;
  font-size: clamp(1.25rem, 1.0574rem + 0.8219vw, 2.1875rem);
  font-weight: 800;
}

.custom-cart-description p {
  margin: 0 0 20px 0;
  font-size: clamp(0.875rem, 0.8236rem + 0.2192vw, 1.125rem);
  font-weight: 800;
  width: 90%;
}

.custom-cart-button {
  margin: auto auto 0 auto;
  width: 50%;
  padding: 18px;
  background-color: #fdf7e6;
  border: 4px solid #fe9110;
  border-radius: 10px;
  box-shadow: 3px 2px 5px #5353535e;
  color: #fe9110;
  font-size: 20px;
  font-weight: 600;
  outline: none;
  transition: scale 0.3s;
}

.custom-cart-button:hover {
  scale: 1.06;
}

@media (width < 1250px) {
  .custom-cart-description p {
    width: 100%;
  }

  .cart-grid {
    gap: 80px;
  }
}

@media (width < 1000px) {
  .cart-grid {
    gap: 40px;
  }

  .custom-cart-button {
    padding: 18px 14px; 
  }
}

@media (width < 800px) {
  .cart-grid {
    grid-template-columns: auto;
    grid-template-rows: 1fr 2fr
  }

  .cart-grid #video-cart {
    width: 70%;
    justify-self: center;
  }

  .custom-cart-button {
    margin-bottom: auto;
    font-size: 16px;
    border-width: 3px;
    
    padding: 12px 8px; 
  }
}

@media (width < 390px) {
  .cart-grid {
    gap: 20px;
  }

  .custom-cart-button {
    padding: 10px 6px; 
    font-size: 14px;
  }
}

.section-div {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 16px;
  row-gap: 30px;
}

@media (width < 1200px) {
  .section-div {
    column-gap: 12px;
    row-gap: 25px;
  }
}

@media (width < 1000px) {
  .section-div {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (width < 870px) {
  .section-div {
    column-gap: 10px;
    row-gap: 20px;
  }
}

@media (width < 670px) {
  .section-div {
    column-gap: 8px;
    row-gap: 8px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (width < 500px) {
  .section-div {
    column-gap: 6px;
    row-gap: 6px;
  }
}

.product {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  color: #181818;

  box-shadow: 2px 3px 5px #dfdbdb86;
  transition: box-shadow 0.3s, border 0.3s;
}

.product-image-section {
  align-items: center;
  display: flex;
  aspect-ratio: 16/9;
  height: min-content;
  overflow: hidden;
  background-color: #f1ead5;
}

.product img {
  object-position: bottom right;
  width: 60%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

@media (width >= 600px) {
  .product img {
    aspect-ratio: 1/1;
  }
}

@media (width < 600px) {
  .product img {
    aspect-ratio: 1/1;
  }
}

.product-description {
  margin: 15px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product .product-title {
  font-weight: 400;
  margin: 5px 0 0 0;
  font-size: clamp(0.875rem, 0.7466rem + 0.5479vw, 1.5rem);
}

.product .product-cost {
  font-weight: 600;
  margin: 5px 0 20px 0;
  font-size: clamp(0.9375rem, 0.8733rem + 0.274vw, 1.25rem);
}

.product .add-product {
  width: 100%;
  background-color: #fe9110;
  color: #ffffff;
  font-size: clamp(0.9375rem, 0.8733rem + 0.274vw, 1.25rem);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px;
  margin-top: auto;
  outline: none;
  transition: background-color 0.3s;
}

.product .add-product:hover {
  background-color: #fd6314;
}

.product .add-product:focus-visible {
  background-color: #fd6314;
}

.cart-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
}

.cart-control button {
  background-color: #fe9110;
  color: white;
  border: none;
  padding: 6px 12px;
  font-size: 16px;
  border-radius: 6px;
  outline: none;
  transition: background-color 0.3s;
}

.cart-control button:hover {
  background-color: #fd6314;
}

.cart-control button:focus-visible {
  background-color: #fd6314;
}

@media (width < 500px) {
  .cart-control {
    gap: 8px;
  }
  .cart-control button {
    padding: 4px 10px;
  }
}

@media (width < 390px) {
  .cart-control {
    gap: 7px;
  }
  .cart-control button {
    padding: 4px 10px;
  }
}

.cart-control span {
  font-size: clamp(0.8125rem, 0.7483rem + 0.274vw, 1.125rem);
}

.cart-popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  max-width: 800px;
  max-height: 99vh;
  background: #fff;
  padding: 20px;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (width < 825px) {
  .cart-popup {
    width: 80%;
  }
}

@media (width < 560px) {
  .cart-popup {
    width: 90%;
  }
}

.cart-popup.hidden {
  display: none;
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  max-height: 61vh;
  padding-right: 10px;
  box-shadow: 2px 2px 5px #ddd, -2px -2px 5px #ddd;
}

.cart-item {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 12px;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex-grow: 1;
  min-width: 0;
  font-size: 16px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 0 auto;
}

@media (width < 1000px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-controls {
    justify-content: flex-start;
    width: 100%;
  }
}

.cart-item-controls button {
  background-color: #fe9110;
  color: white;
  border: none;
  padding: 6px 10px;
  font-size: 16px;
  border-radius: 5px;
  outline: none;
  transition: background-color 0.3s;
}

.cart-item-controls button:hover {
  background-color: #fd6314;
}

.cart-item-controls button:focus-visible {
  background-color: #fd6314;
}

.cart-summary {
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  border-top: 2px solid #fe9110;
  padding-top: 10px;
}

.cart-popup-buttons {
  display: flex;
  justify-content: space-between;
}

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

.cart-header button{
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 800;
  border-radius: 50%;
  transition: opacity 0.3s, scale 0.3s;
  outline: none;
  height: 40px;
  aspect-ratio: 1/1;
  text-align: center;
  align-items: center;
}

.cart-header button:hover {
  opacity: 0.9;
  scale: 1.1;
}

.cart-header button:focus-visible {
  opacity: 0.9;
  scale: 1.1;
}

.cart-popup-buttons button {
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 8px;
  transition: opacity 0.3s, scale 0.3s;
  outline: none;
}

.cart-popup-buttons button:hover {
  opacity: 0.9;
  scale: 1.1;
}

.cart-popup-buttons button:focus-visible {
  opacity: 0.9;
  scale: 1.1;
}

.close-cart {
  background-color: #e12709;
}

.send-to-telegram {
  background-color: #fd6314;
}

.attencion span {
  color: #e12709;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  font-size: clamp(1rem, 0.9486rem + 0.2192vw, 1.25rem);
}

.attencion {
  font-size: clamp(0.8125rem, 0.774rem + 0.1644vw, 1rem);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ffff;
  padding: 10px;
  text-align: center;
  display: none;
  z-index: 9999;
}
.cookie-banner button {
  margin-left: 12px;
  background: #fe9110;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
}

.product.highlight {
  border: 3px solid #fe9110;
  box-shadow: 7px 7px 10px #fe9110;
}

@media (width < 1200px) {
  .product.highlight {
    box-shadow: 5px 5px 10px #fe9110;
  }
}

@media (width < 600px) {
  .product.highlight {
    box-shadow: 3px 3px 10px #fe9110;
  }
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 92.5%;
  background: #fffdf7;
  border: 2px solid #fe9110;
  border-top: none;
  z-index: 100;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  padding: 5px 0;
}
.search-suggestions.active {
  display: block;
}

.search-suggestions div {
  padding: 8px 12px;
  cursor: pointer;
}

.search-suggestions div:hover {
  background-color: #fff2e0;
  font-weight: bold;
}

.search-suggestions .category-label {
  font-weight: bold;
  background-color: #fe9110;
  color: white;
  padding: 6px 12px;
  cursor: default;
}
