/* Page-specific styles: index.html */
:root {
  --red: #e9332b;
  --red-dark: #c8241e;
  --red-soft: #fff0ed;
  --green: #88be21;
  --green-dark: #679a0e;
  --green-soft: #f0f8df;
  --orange: #ffad24;
  --cream: #fffaf1;
  --ink: #231f20;
  --muted: #726d69;
  --line: #ebe6df;
  --white: #fff;
  --shadow: 0 18px 48px rgba(74, 49, 34, 0.1);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-width: 1180px;
  background: #fff;
  color: var(--ink);
  font:
    16px/1.5 Manrope,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}


.wrap {
  width: min(1370px, calc(100% - 48px));
  margin: auto;
}


.quick-nav {
  height: 41px;
  border-top: 1px solid #f3eee8;
}
.quick-nav .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 27px;
}
.quick-nav a {
  text-decoration: none;
  color: #57514d;
  font-size: 12px;
  font-weight: 600;
  transition: 0.15s;
}
.quick-nav a:hover {
  color: var(--red);
}
.quick-nav a.offer {
  margin-left: auto;
  color: var(--red);
}
.page {
  padding: 20px 0 50px;
  background: linear-gradient(#fffdf8 0, #fff 510px);
}
.market-grid {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.category-nav {
  height: 465px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 11px 7px 10px 11px;
  box-shadow: 0 10px 28px #5b3a2420;
}
.category-nav h2 {
  font-size: 15px;
  margin: 4px 8px 8px;
}
.category-scroll {
  height: 408px;
  overflow: auto;
  padding-right: 5px;
  scrollbar-width: thin;
  scrollbar-color: #d5cfc7 #f5f1ec;
}
.category-scroll::-webkit-scrollbar {
  width: 6px;
}
.category-scroll::-webkit-scrollbar-thumb {
  background: #d5cfc7;
  border-radius: 6px;
}
.cat-link {
  min-height: 41px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 9px;
  padding: 6px 8px;
  text-decoration: none;
  color: #393431;
  font-weight: 550;
  transition: 0.16s;
}
.cat-link:hover,
.cat-link.active {
  background: var(--red-soft);
  color: var(--red);
  transform: translateX(2px);
}
.cat-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex: 0 0 30px;
}
.cat-link:hover .cat-icon {
  background: #fff;
}
.cat-link span {
  line-height: 1.25;
}
.cat-link em {
  margin-left: auto;
  font-style: normal;
  color: #aaa29b;
}
.hero {
  height: 465px;
  border-radius: 17px;
  overflow: hidden;
  position: relative;
  background: #f5eccd;
  box-shadow: var(--shadow);
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.hero:hover img {
  transform: scale(1.025);
}
.hero-content {
  position: absolute;
  inset: 0;
  padding: 0;
  pointer-events: none;
}
.hero-kicker,
.hero-content h1,
.hero-content p {
  display: none;
}
.hero h1 {
  max-width: 560px;
  margin: 17px 0 12px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.hero p {
  max-width: 500px;
  margin: 0 0 24px;
  font-size: 16px;
  color: #574b37;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  position: absolute;
  right: 25px;
  bottom: 22px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--red);
  padding: 0 18px;
  font-weight: 750;
  cursor: pointer;
  transition: 0.2s;
  pointer-events: auto;
  box-shadow: 0 8px 22px #2d1d1233;
}
.hero-btn:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.hero-dots {
  position: absolute;
  left: 25px;
  bottom: 27px;
  display: flex;
  gap: 7px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 8px;
  background: #fff9;
  cursor: pointer;
  padding: 0;
  transition: 0.2s;
}
.hero-dots button.active {
  width: 27px;
  background: var(--red);
}
.benefits {
  grid-column: 1/-1;
  height: 70px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 8px 22px #63462e0d;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}
.benefit:first-child {
  border-left: 0;
}
.benefit i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 17px;
}
.benefit b,
.benefit small {
  display: block;
}
.benefit b {
  font-size: 12px;
}
.benefit small {
  font-size: 10px;
  color: var(--muted);
}
.section {
  margin-top: 39px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  margin-bottom: 17px;
}
.section-head h2 {
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0;
}
.section-head p {
  margin: 0 0 1px 16px;
  color: var(--muted);
}
.section-head a {
  margin-left: auto;
  text-decoration: none;
  color: var(--red);
  font-weight: 700;
}
.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.category-card {
  height: 210px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  text-decoration: none;
  color: var(--ink);
  transition: 0.24s;
}
.category-card:nth-child(2n) {
  background: var(--green-soft);
}
.category-card:nth-child(3n) {
  background: var(--red-soft);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px #54311e18;
  border-color: transparent;
}
.category-card img {
  position: absolute;
  right: -12px;
  bottom: 34px;
  width: 92%;
  height: 135px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px #6b432225);
  transition: 0.3s;
}
.category-card:hover img {
  transform: scale(1.06) rotate(-1deg);
}
.category-card b {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 13px;
  font-size: 13px;
  line-height: 1.25;
}
.category-card span {
  position: absolute;
  left: 13px;
  top: 12px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff9;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--red);
}
.products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.product {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  transition: 0.22s;
  position: relative;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 17px 34px #432a1d17;
  border-color: #ead8cb;
}
.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  border-radius: 7px;
  padding: 4px 7px;
  font-size: 9px;
  font-weight: 750;
}
.fav {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 3px 12px #3b291523;
  font-size: 17px;
  cursor: pointer;
  z-index: 2;
  transition: 0.16s;
}
.fav:hover,
.fav.active {
  color: var(--red);
  background: var(--red-soft);
}
.product-image {
  height: 165px;
  border-radius: 10px;
  background: #faf7f2;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s;
}
.product:hover .product-image img {
  transform: scale(1.05);
}
.stock {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--green-dark);
  font-size: 10px;
  margin-top: 10px;
}
.stock i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.product h3 {
  font-size: 13px;
  line-height: 1.35;
  height: 36px;
  margin: 6px 0;
  color: #332e2b;
}
.sku {
  font-size: 9px;
  color: #9a928b;
}
.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 8px;
}
.price strong {
  font-size: 19px;
  color: var(--red);
}
.price small {
  font-size: 10px;
  color: var(--muted);
}
.buy {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.18s;
}
.buy:hover {
  background: var(--green-dark);
  transform: scale(1.06);
}
.buy.added {
  background: var(--red);
}
.b2b-banner {
  height: 155px;
  margin-top: 38px;
  border-radius: 16px;
  background: linear-gradient(110deg, #2c2927 0%, #40362d 70%, #e9332b 140%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}
.b2b-banner:after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  right: 100px;
  top: -170px;
  border: 45px solid #ffffff0c;
}
.b2b-banner h2 {
  font-size: 25px;
  margin: 0 0 6px;
}
.b2b-banner p {
  margin: 0;
  color: #ddd3ca;
}
.b2b-banner button {
  margin-left: auto;
  height: 46px;
  border: 0;
  border-radius: 10px;
  padding: 0 19px;
  background: var(--orange);
  font-weight: 750;
  cursor: pointer;
  z-index: 1;
}
.footer {
  background: #2d2a28;
  color: #d6d0cb;
  padding: 35px 0;
}
.footer .wrap {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer img {
  width: 84px;
  filter: brightness(0) invert(1);
}
.footer p {
  margin: 0;
  font-size: 12px;
}
.footer nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
}
.footer a {
  color: #d6d0cb;
  text-decoration: none;
  font-size: 12px;
}


.close {
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}


.checkout {
  height: 44px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  display: grid;
  place-items: center;
  text-decoration: none;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 10px);
  background: #302d2b;
  color: #fff;
  border-radius: 10px;
  padding: 11px 16px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  z-index: 80;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
/* Revision 2: larger typography, product controls and contemporary depth */


.page {
  padding-top: 25px;
  background:
    radial-gradient(circle at 82% 8%, #edf9d9 0, transparent 28%),
    radial-gradient(circle at 16% 30%, #fff0e6 0, transparent 32%),
    linear-gradient(180deg, #fffdf8, #fff 710px);
}
.category-nav {
  height: 490px;
  position: relative;
  padding-bottom: 45px;
}
.category-nav h2 {
  font-size: 18px;
}
.category-scroll {
  height: 390px;
  padding-bottom: 46px;
}
.cat-link {
  min-height: 46px;
  font-size: 14px;
}
.category-nav:after {
  content: attr(data-more);
  position: absolute;
  left: 11px;
  right: 12px;
  bottom: 9px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--red), #ff785f);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 -12px 22px #fff;
  pointer-events: none;
}
.hero {
  height: 490px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border: 1px solid #fff8;
  border-radius: 50%;
  background: #ffffffeb;
  color: #332b25;
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px #37261933;
  transition: 0.2s;
}
.hero-arrow:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.08);
}
.hero-arrow.prev {
  left: 18px;
}
.hero-arrow.next {
  right: 18px;
}
.benefit b {
  font-size: 14px;
}
.benefit small {
  font-size: 12px;
}
.section-head h2 {
  font-size: 30px;
}
.section-head p,
.section-head a {
  font-size: 15px;
}
.categories {
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.category-card {
  height: 220px;
  background: linear-gradient(145deg, #fffdf5, #fff0dd);
}
.category-card:nth-child(2n) {
  background: linear-gradient(145deg, #f8ffe9, #e5f7bf);
}
.category-card:nth-child(3n) {
  background: linear-gradient(145deg, #fff7f4, #ffdcd5);
}
.category-card b {
  font-size: 15px;
}
.products {
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.product {
  padding: 14px;
  background: linear-gradient(155deg, #fff 70%, #fffaf2);
  overflow: visible;
}
.product-image {
  height: 185px;
}
.stock {
  font-size: 12px;
}
.product h3 {
  height: auto;
  min-height: 43px;
  font-size: 16px;
  margin: 7px 0 3px;
}
.sku {
  font-size: 11px;
}
.product-badge {
  font-size: 11px;
}
.tags {
  display: flex;
  gap: 5px;
  min-height: 25px;
  margin: 7px 0;
  flex-wrap: wrap;
}
.tag {
  padding: 3px 7px;
  border-radius: 12px;
  background: #fff0cf;
  color: #8c5a00;
  font-size: 10px;
  font-weight: 800;
}
.review {
  height: 21px;
  color: #6b645e;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review:before {
  content: "★";
  color: var(--orange);
  margin-right: 5px;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #5f5852;
  font-weight: 800;
  cursor: pointer;
}
.info-btn:hover,
.info-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.product-info {
  display: none;
  margin: 8px 0 0;
  padding: 9px 10px;
  border-radius: 9px;
  background: #f6f2ed;
  color: #5c554f;
  font-size: 11px;
}
.product-info.open {
  display: block;
}
.price-row {
  margin-top: 10px;
}
.price strong {
  font-size: 22px;
}
.price small {
  font-size: 12px;
}
.purchase {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  margin-top: 10px;
}
.qty {
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  overflow: hidden;
  background: #fff;
}
.qty button {
  border: 0;
  background: #f7f3ee;
  font-size: 19px;
  cursor: pointer;
}
.qty button:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}
.qty input {
  min-width: 0;
  width: 100%;
  border: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  outline: 0;
}
.buy {
  width: 44px;
  height: 44px;
}
.footer p,
.footer a {
  font-size: 13px;
}
.footer nav {
  margin-left: auto;
}
.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #ffffff33;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  transition: 0.2s;
}
.socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}


.catalog-close {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 9px;
  background: #f7f3ee;
  color: var(--ink);
  font-size: 21px;
  cursor: pointer;
}


@media (max-width: 1279px) {
  html,
  body {
    min-width: 0;
  }
  .wrap {
    width: min(100% - 32px, 1160px);
  }
  
  
  
  
  
  
  .market-grid {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .categories {
    grid-template-columns: repeat(4, 1fr);
  }
  .products {
    grid-template-columns: repeat(4, 1fr);
  }
  .products .product:last-child {
    display: none;
  }
  .footer .wrap {
    gap: 18px;
  }
}
@media (max-width: 1023px) {
  
  
  
  
  
  
  
  
  
  .page {
    padding-top: 18px;
  }
  .market-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .category-nav {
    height: auto;
    padding: 12px 12px 10px;
    overflow: hidden;
  }
  .category-nav h2 {
    display: none;
  }
  .category-scroll {
    height: auto;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 2px 42px 8px 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }
  .category-nav:after {
    content: "Ще  →";
    left: auto;
    right: 8px;
    bottom: 10px;
    width: 54px;
    height: 38px;
    box-shadow: -18px 0 18px #fff;
  }
  .cat-link {
    min-width: 190px;
    min-height: 50px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--line);
  }
  .cat-link:hover,
  .cat-link.active {
    transform: none;
  }
  .hero {
    height: auto;
    aspect-ratio: 2.18;
  }
  .benefits {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit {
    min-height: 70px;
  }
  .benefit:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .benefit:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .categories {
    grid-template-columns: repeat(3, 1fr);
  }
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
  .products .product:last-child {
    display: block;
  }
  .section-head {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px;
  }
  .section-head p {
    order: 3;
    width: 100%;
    margin: 0;
  }
  .b2b-banner {
    height: auto;
    min-height: 170px;
  }
  .footer .wrap {
    flex-wrap: wrap;
  }
  .footer nav {
    order: 3;
    width: 100%;
    margin: 0;
  }
  .socials {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  html,
  body {
    font-size: 15px;
  }
  .wrap {
    width: calc(100% - 24px);
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .page {
    padding: 12px 0 32px;
  }
  .market-grid {
    gap: 10px;
  }
  .category-nav {
    margin: 0 -12px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding-left: 12px;
  }
  .cat-link {
    min-width: 174px;
    font-size: 13px;
  }
  .hero {
    margin: 0 -2px;
    border-radius: 13px;
    aspect-ratio: 1.55;
  }
  .hero img {
    object-fit: cover;
  }
  .hero-arrow {
    width: 38px;
    height: 38px;
    margin-top: -19px;
    font-size: 27px;
  }
  .hero-arrow.prev {
    left: 10px;
  }
  .hero-arrow.next {
    right: 10px;
  }
  .hero-btn {
    right: 12px;
    bottom: 12px;
    height: 38px;
    font-size: 11px;
    padding: 0 11px;
  }
  .hero-dots {
    left: 13px;
    bottom: 16px;
  }
  .benefits {
    grid-template-columns: 1fr 1fr;
    border-radius: 11px;
  }
  .benefit {
    min-height: 76px;
    padding: 10px 12px;
    gap: 8px;
  }
  .benefit i {
    width: 32px;
    height: 32px;
  }
  .benefit b {
    font-size: 12px;
  }
  .benefit small {
    font-size: 10px;
  }
  .section {
    margin-top: 29px;
  }
  .section-head {
    margin-bottom: 13px;
  }
  .section-head h2 {
    font-size: 24px;
  }
  .section-head a {
    font-size: 12px;
    margin-left: auto;
  }
  .section-head p {
    font-size: 13px;
  }
  .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .category-card {
    height: 180px;
  }
  .category-card img {
    height: 108px;
    bottom: 38px;
  }
  .category-card b {
    font-size: 13px;
  }
  .category-card span {
    width: 25px;
    height: 25px;
    font-size: 11px;
  }
  .products {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin: 0 -12px;
    padding: 2px 12px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .product,
  .products .product:last-child {
    display: block;
    flex: 0 0 78vw;
    min-width: 78vw;
    scroll-snap-align: start;
  }
  .product-image {
    height: 180px;
  }
  .product h3 {
    font-size: 15px;
  }
  .b2b-banner {
    padding: 26px 22px;
    display: block;
  }
  .b2b-banner h2 {
    font-size: 22px;
  }
  .b2b-banner p {
    font-size: 13px;
  }
  .b2b-banner button {
    margin: 18px 0 0;
    width: 100%;
  }
  .footer {
    padding: 28px 0;
  }
  .footer .wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }
  .footer p {
    font-size: 11px;
  }
  .footer nav {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
  .socials {
    margin: 0;
  }
  
  
  .toast {
    width: max-content;
    max-width: calc(100% - 24px);
    text-align: center;
  }
  .socials a {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 420px) {
  html,
  body {
    overflow-x: hidden;
  }
  .wrap {
    width: calc(100% - 20px);
  }
  
  
  
  
  
  .hero {
    aspect-ratio: 1.38;
  }
  .hero-btn {
    display: none;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .benefit {
    min-height: 58px;
    border-left: 0 !important;
    border-top: 1px solid var(--line);
  }
  .benefit:first-child {
    border-top: 0;
  }
  .categories {
    gap: 8px;
  }
  .category-card {
    height: 165px;
  }
  .category-card img {
    height: 96px;
  }
  .section-head h2 {
    font-size: 22px;
  }
  .section-head a {
    display: none;
  }
  .product {
    flex: 0 0 82vw;
    min-width: 82vw;
  }
  .footer .wrap {
    grid-template-columns: 80px 1fr;
  }
  .footer .socials {
    grid-column: 1/-1;
  }
  .footer nav {
    grid-template-columns: 1fr 1fr;
  }
  
}


@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
