:root {
  --color-tread-black: #1c1c1c;
  --color-terrain-green: #384638;
  --color-momentum-orange: #fe9620;
  --color-dark-orange: #9c3f00;
  --color-border: #e4ded6;
  --color-message-gray: #f1eeeb;
  --color-gravel-gray: #dcd4cd;
  --color-stone-white: #fdfcf8;
  --color-white: #fff;

  --height-header-1: 34px;
  --height-header-2-web: 90px;
  --height-header-2-mobile: 68px;

  --height-option: 3rem;

  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: owners-text, "source-han-sans-korean", sans-serif;
  font-size: 16px;
  color: var(--color-terrain-green);
  font-weight: 400;
  min-height: 100vh;
  position: relative;
}

.top-margin {
  height: calc(var(--height-header-1) + var(--height-header-2-web));
}

a {
  text-decoration: none;
}

button {
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
}

ul {
  list-style-type: none;
  padding-inline-start: 0;
}

ul.list {
  list-style-type: disc;
  margin-left: 1rem;
}

ol.list li::marker {
  background-color: var(--color-terrain-green);
  color: var(--color-tread-black);
}

.emphasized-button {
  display: inline-flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 28px;
  background-color: var(--color-momentum-orange);
  color: var(--color-tread-black);
  width: fit-content;

  font-family: owners-text, "source-han-sans-korean", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.36px;
  text-transform: uppercase;
}

.primary-button {
  display: inline-flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 28px;
  min-width: 120px;
  background-color: var(--color-terrain-green);
  color: var(--color-stone-white);
  width: fit-content;

  font-family: owners-text,"source-han-sans-korean", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.36px;
  text-transform: uppercase;
}

.arrow-link-white {
  font-family: owners-text,"source-han-sans-korean", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--color-white);
}

.arrow-link-white::after {
  content: url("../images/link-arrow-white.png");
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

.arrow-link-black {
  font-family: owners-text,"source-han-sans-korean", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--color-tread-black);
}

.arrow-link-black::after {
  content: url("../images/link-arrow-black.png");
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

.justify-center {
  justify-content: center;
}

.w-100 {
  width: 100%;
}

h1,
.h1 {
  font-family: owners-XWide,"source-han-sans-korean", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}

h2,
.h2 {
  font-family: owners-XWide,"source-han-sans-korean", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

h3,
.h3 {
  font-family: owners-XWide,"source-han-sans-korean", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

h4,
.h4 {
  font-family: owners-XWide,"source-han-sans-korean", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 3%;
  text-transform: uppercase;
}

.subtitle-large {
  font-family: owners-text,"source-han-sans-korean", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.subtitle-standard {
  font-family: owners-text,"source-han-sans-korean", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.subtitle-small {
  font-family: owners-text,"source-han-sans-korean", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
}

.text-large {
  font-family: owners-text,"source-han-sans-korean", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 26px;
}

.text-standard {
  font-family: owners-text,"source-han-sans-korean", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 22px;
}

.text-small {
  font-family: owners-text,"source-han-sans-korean", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25rem;
}

.wp {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: var(--max-width);
  padding: 0 20px;
}

.p-0 {
  padding: 0;
}

.mb-4 {
  margin-bottom: 0.25rem;
}

.mb-8 {
  margin-bottom: 0.5rem;
}

.mb-16 {
  margin-bottom: 1rem;
}

.mb-32 {
  margin-bottom: 2rem;
}

.mb-48 {
  margin-bottom: 3rem;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
}

.header1 {
  height: var(--height-header-1);
  background-color: var(--color-terrain-green);
}

.header1 .wp {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  gap: 2rem;
}

.header1 .nav1,
.header1 .nav2 {
  color: var(--color-stone-white);
}

.header1 .nav1 {
  padding-top: 2px;
}

.header1 .nav2 {
  cursor: pointer;
  position: relative;
}

.header1 .nav2::after {
  content: url("../images/icons02.png");
  vertical-align: text-top;
}

.header1 .nav2 ul {
  display: none;
  position: absolute;
  top: 27px;
  right: 0;
  z-index: 100;
  background-color: var(--color-white);
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 0.5rem;
  min-width: 185px;
  box-shadow:
    0 8px 16px 0 rgba(0, 0, 0, 0.16),
    0 24px 64px 0 rgba(0, 0, 0, 0.08);
}

.header1 .nav2 li {
  border-radius: 8px;
  height: 2rem;
}

.header1 .nav2 li a {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  padding: 0 1rem;
  height: 100%;
  width: 100%;
  color: var(--color-tread-black);
}

.header1 .nav2 .fi {
  margin-right: 0.5rem;
}

.header1 .nav2 li a:hover {
  text-decoration: underline;
  color: var(--color-terrain-green);
}

.header2 {
  height: var(--height-header-2-web);
  background-color: var(--color-stone-white);
}

.header2 .wp {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}

.header2 .nav-left {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.header2 .nav-left a {
  color: var(--color-tread-black);
}

.header2 .nav-left a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: var(--color-tread-black);
  transition: width 0.3s;
  border: 0;
  margin-left: 0;
  margin-top: 0.25rem;
}

.header2 .nav-left a:not(.logo):hover::after {
  width: 100%;
}

.find-store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: owners-text,"source-han-sans-korean", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  height: 3rem;
  min-width: 11rem;
  max-width: 13.4375rem;
  border: 2px solid var(--color-border);
  border-radius: 2rem;
  color: var(--color-tread-black);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.04) 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}

.m-header2 {
  display: none;
  height: var(--height-header-2-mobile);
  background-color: var(--color-stone-white);
}

.m-header2 .wp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-header2 .menu {
  display: unset;
}

.m-header2 .btn-store-mobile {
  background-color: var(--color-message-gray);
  border-radius: 24px;
}

.m-header2 .logo {
  height: 80%;
}

.m-header2 .logo img {
  height: 100%;
}

.m-nav {
  display: none;
  position: fixed;
  top: calc(var(--height-header-1) + var(--height-header-2-mobile));
  left: 0;
  z-index: 99;
  background-color: var(--color-stone-white);
  padding-bottom: var(--height-option);
}

.m-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.m-nav li {
  padding: 0 1rem;
  height: var(--height-option);
  display: flex;
  align-items: center;
}

.m-nav li a::after {
  content: url("../images/icons03.png");
  vertical-align: middle;
  margin-left: 1rem;
}

.m-nav a {
  color: var(--color-terrain-green);
  line-height: 3.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.96px;
  text-transform: none;
  width: 100%;
}

/* FOOTER */
footer {
  padding: 69px 96px 15px;
  background-color: var(--color-terrain-green);
  color: var(--color-stone-white);
  margin-top: 16px;
}

footer .main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

footer .logo {
  width: 100%;
  max-width: 238px;
}

footer .logo svg {
  width: 100%;
  height: auto;
  display: block;
}

footer .l {
  width: 30%;
}

footer .r {
  width: 60%;
  display: flex;
}

footer a {
  color: var(--color-stone-white);
}

footer dl {
  width: 50%;
  margin-block-start: 0;
  margin-block-end: 0;
}

footer dd {
  margin-inline-start: 1rem;
  padding-bottom: 16px;
}

footer .copy {
  text-align: center;
}

footer .copy span {
  margin-block-start: 1.5rem;
  margin-block-end: 0;
  white-space: nowrap;
}

/* PANEL */
.panel,
.panel picture {
  display: flex;
}

.panel.white {
  color: var(--color-terrain-green);
}

.panel.green {
  background-color: var(--color-terrain-green);
  color: var(--color-white);
}

.panel.gray {
  background-color: var(--color-gravel-gray);
  color: var(--color-terrain-green);
}

.panel .content,
.panel .image {
  width: 50%;
}

.panel .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

.panel .content .content-cta {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* BANNER */
.banner {
  background-color: var(--color-terrain-green);
  color: var(--color-white);
  padding: 0;
}

.banner .slick-dots {
  position: absolute;
  left: 2rem;
  width: 50%;
  bottom: 12px;
  font-size: 0;
}
.banner .slick-dots li {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 2px;
  cursor: pointer;
}
.banner .slick-dots li.slick-active {
  background-color: var(--color-momentum-orange);
}

.tyre-category {
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: var(--color-terrain-green);
}

/* BREADCRUMBS */

.breadcrumbs {
  font-family: owners-text,"source-han-sans-korean", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-terrain-green);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.breadcrumbs > *:not(:first-child)::before {
  content: "/";
  font-weight: 500;
  padding: 0 8px;
}

.breadcrumbs a {
  font-weight: 500;
  color: var(--color-terrain-green);
}

/* PAGE MENU */

.page-menu {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.page-menu::before,
.page-menu::after {
  border-bottom: 3px solid var(--color-gravel-gray);
  width: 100%;
  content: "";
}

.page-menu li {
  padding: 24px 0;
  flex: 0 0 auto;
  white-space: nowrap;
  border-bottom: 3px solid var(--color-gravel-gray);
}

.page-menu a {
  padding: 24px;
  color: var(--color-tread-black);
}

.page-menu .on {
  background-color: var(--color-message-gray);
  border-bottom: 3px solid var(--color-momentum-orange);
}

.page-menu::-webkit-scrollbar {
  height: 8px;
}

.page-menu::-webkit-scrollbar-thumb {
  background: #e9e9e9;
  border-radius: 4px;
}

.results {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--color-terrain-green);
  height: 40px;
}

/* PRODUCT TILE */
.tyre-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  align-content: stretch;
}

.product-tile {
  display: flex;
  height: 380px;
  width: 31%;
  max-width: 360px;
  padding: 15px 24px 24px 24px;
  margin-bottom: 1rem;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  align-self: stretch;

  border-radius: 16px;
  border: 2px solid var(--color-border);
  background: var(--color-stone-white);

  box-shadow:
    0 4px 4px 0 rgba(0, 0, 0, 0.04),
    0 8px 16px 0 rgba(0, 0, 0, 0.08);
}

.product-tile .layer1 {
  display: flex;
  flex: 1;
}

.product-tile .layer1 img {
  height: 240px;
  margin: -52px 0 0 -72px;
}

.product-tile .layer1 .feat-img {
  width: 50%;
}

.product-tile .layer1 .fnb {
  width: 50%;
}

.fnb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.product-tile .layer1 .fnb ul {
  width: 100%;
  word-break: keep-all;
  white-space: normal;
}

.fnb li {
  min-height: 1.5rem;
  padding: 2px 8px;
  background-color: var(--color-message-gray);
  color: var(--color-tread-black);
  border-radius: 4px;
}

.product-tile .layer1 .fnb li {
  color: var(--color-terrain-green);
  width: 100%;
}

.product-tile .product-name {
  height: 4rem;
  color: var(--color-terrain-green);
  display: flex;
  align-items: flex-end;
  padding-right: 8rem;
}

.tyre-categories {
  margin-top: 1rem;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
}

.tyre-categories li {
  width: 284px;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  margin: 0 1rem 0.5rem 0;
  height: 530px;
  background-color: var(--color-terrain-green);
  border-radius: 8px;
  position: relative;
  color: var(--color-white);
}

.tyre-categories li img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 80%;
}

.tyre-categories li .name {
  z-index: 50;
  padding: 0 0 40px 24px;
}

.tyre-categories li .name h3 {
  margin-bottom: 1.5rem;
}

.tyre-categories::-webkit-scrollbar {
  height: 12px;
}

.tyre-categories::-webkit-scrollbar-thumb {
  background: #e9e9e9;
  border-radius: 6px;
  margin: 1rem;
}

.tyre-info {
  display: flex;
  color: var(--color-terrain-green);
}

.tyre-info .l,
.tyre-info .r {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  padding: 3rem;
}

.tyre-info .l {
  justify-content: center;
}

.tyre-info .r h1 {
  padding-right: 6rem;
}

.tyre-info .controls {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.tyre-gallery .slick-arrow {
  position: absolute;
  cursor: pointer;
  font-size: 0;
  border: none;
  border-radius: 8px;
  outline: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  z-index: 2;
  top: 50%;
  margin-top: -20px;
  text-align: center;
}

.tyre-gallery .slick-prev {
  left: 0;
  background: url(../images/prev5.png) center center no-repeat;
}

.tyre-gallery .slick-next {
  right: 0;
  background: url(../images/next5.png) center center no-repeat;
}

.tyre-ratings {
  background-color: var(--color-terrain-green);
  color: var(--color-white);
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.rating {
  display: flex;
  align-items: center;
}

.rating span {
  width: 400px;
}

.rating ul {
  display: flex;
  flex-direction: row;
  font-size: 0;
}

.rating ul li {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin-right: 24px;
  background: url(../images/star-filled.png) center center no-repeat;
}

.rating ul .l1 {
  background: url(../images/star-outline.png) center center no-repeat;
}

.rating ul .l2 {
  background: url(../images/star-half-filled.png) center center no-repeat;
}

/* PRODUCT TILE */
.store-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.store-tile {
  display: flex;
  padding: 15px 24px 24px 24px;
  margin-bottom: 1rem;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  box-shadow:
    0 4px 4px 0 rgba(0, 0, 0, 0.04),
    0 8px 16px 0 rgba(0, 0, 0, 0.08);
}

.store-tile .contact-info {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.store-tile .contact-info a {
  width: 25%;
  color: var(--color-terrain-green);
  text-decoration: underline;
}

.store-tile .contact-info a::before {
  content: url("../images/phone.png");
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.fnb-group,
.news-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 6rem;
}

.news-group a {
  color: var(--color-terrain-green);
}

.news-group a:hover {
  background-color: var(--color-message-gray);
}

.fnb-item,
.news-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  width: 30%;
  padding: 0 20px;
}

.news-item {
  justify-content: start;
  padding: 20px 20px;
  border-radius: 16px;
}

.fnb-item img,
.news-item img {
  border-radius: 8px;
}

picture.pbanner {
  display: flex;
}

.cont-group {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 4rem;
}

.news-title {
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-description {
  height: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.swiper-history {
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  width: 90%;
}
.swiper-history::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  top: 50%;
  background-color: var(--color-terrain-green);
}
.swiper-wrapper {
  padding: 0 40px;
}
.swiper-history .swiper-slide {
  position: relative;
  height: 270px;
  width: 137px;
}
.swiper-history .swiper-slide:nth-child(odd) {
  background: url(../images/3a.png) left bottom no-repeat;
  padding-left: 20px;
  padding-top: 139px;
  top: -135px;
}
.swiper-history .swiper-slide:nth-child(even) {
  background: url(../images/3.png) left top no-repeat;
  padding-left: 20px;
  padding-top: 45px;
  top: 138px;
}
.swiper-history .swiper-slide .even-yao {
  width: 180%;
}
.swiper-button-prev {
  width: 37px;
  height: 37px;
  background: url(../images/5.png) no-repeat;
  left: 0px;
  margin-top: -17px;
}
.swiper-button-next {
  width: 37px;
  height: 37px;
  background: url(../images/6.png) no-repeat;
  right: 0;
  margin-top: -17px;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.swiper-history-2 {
  overflow: hidden;
  position: relative;
  padding: 37px 0;
  width: 90%;
}
.swiper-history-2::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  top: 50%;
  background-color: var(--color-terrain-green);
}
.swiper-history-2 .swiper-slide {
  position: relative;
  height: 320px;
  width: 137px;
}
.swiper-history-2 .swiper-slide:nth-child(odd) {
  background: url(../images/4.png) left bottom no-repeat;
  padding-left: 20px;
  padding-top: 140px;
  top: -162px;
}
.swiper-history-2 .swiper-slide:nth-child(even) {
  background: url(../images/3.png) left top no-repeat;
  padding-left: 20px;
  padding-top: 70px;
  top: 162px;
}
.swiper-history-2 .swiper-slide .even-yao {
  width: 180%;
}

@media only screen and (max-width: 1399px) {
  h1,
  .h1 {
    font-size: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 48px;
    line-height: 48px;
  }

  .tyre-info .l {
    width: 40%;
  }

  .tyre-info .r {
    width: 60%;
  }
}

@media only screen and (max-width: 991px) {
  .top-margin {
    height: calc(var(--height-header-1) + var(--height-header-2-mobile));
  }

  h1,
  .h1 {
    font-size: 36px;
    line-height: 36px;
  }

  h1.page-title {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.6px;
  }

  .header1 .nav1,
  .header2 {
    display: none;
  }

  .m-header2 {
    display: block;
  }

  .m-nav,
  .panel .content,
  .panel .image {
    width: 100%;
  }

  footer {
    padding-top: 45px;
  }

  footer .l,
  footer .r {
    width: 45%;
  }

  footer dd {
    padding-bottom: 8px;
  }

  .panel {
    flex-direction: column;
  }

  .panel.reverse {
    flex-direction: column-reverse;
  }

  .panel .content {
    max-width: unset;
    padding: 1.24rem;
  }

  .banner .panel .content {
    padding-bottom: 3rem;
  }
  
  .tyre-list {
    justify-content: center;
  }

  .product-tile {
    width: 48%;
  }

  .tyre-info .l,
  .tyre-info .r {
    padding: 1rem;
  }

  .tyre-gallery .slick-prev {
    left: 35%;
    top: unset;
  }

  .tyre-gallery .slick-next {
    right: 35%;
    top: unset;
  }

  .rating span {
    font-size: 1.25rem;
  }

  .news-item {
    width: 45%;
  }
}

@media only screen and (max-width: 767px) {
  footer {
    padding: 20px 0 15px;
  }

  footer .l {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  footer .r {
    width: 100%;
    margin-top: 1rem;
    justify-content: space-evenly;
  }

  footer dl {
    width: unset;
  }

  .tyre-info {
    flex-direction: column;
    align-items: center;
  }

  .tyre-info .l,
  .tyre-info .r {
    width: 100%;
  }

  .tyre-info .l img {
    max-width: 600px;
  }

  .tyre-gallery .slick-prev {
    left: 0;
    top: 50%;
  }

  .tyre-gallery .slick-next {
    right: 0;
    top: 50%;
  }

  .tyre-ratings {
    gap: 24px;
  }

  .rating {
    flex-direction: column;
    text-align: center;
  }

  .fnb-item {
    width: 45%;
  }

  .store-tile .contact-info {
    flex-direction: column;
    gap: 0;
  }

  .store-tile .contact-info a {
    width: 100%;
  }

  .news-item {
    width: 100%;
  }

  .news-title {
    height: unset;
    overflow: visible;
    text-overflow: unset;
    display: block;
  }

  .news-description {
    height: unset;
    overflow: visible;
    text-overflow: unset;
    display: block;
  }
}

@media only screen and (max-width: 679px) {
  .product-tile {
    width: 100%;
  }

  .product-tile .layer1 img {
    height: 220px;
    margin: -52px 0 0 -60px;
  }
}

@media only screen and (max-width: 575px) {
  .panel .content .content-cta {
    flex-direction: column;
  }

  .panel .content {
    align-items: center;
    text-align: center;
  }

  .panel .content.fix-left {
    text-align: left;
  }

  .tyre-info .l,
  .tyre-info .r {
    padding: 1rem;
  }

  .fnb-item {
    width: 100%;
  }

  h2.long {
    font-size: 25px;
    line-height: 25px;
  }
}

.distributor-logos {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.distributor-logo__tirepick-logo {
  height: 15px;
}