.site-main{
    padding-bottom: 40px;
}

.home-hero {
    position: relative;
    margin-bottom: 75px;
  }
  
  .home-hero__slider {
    position: relative;
    overflow: hidden;
  }
  
  .home-hero__track {
    position: relative;
  }
  
  .home-hero__slide {
    position: relative;
    background-color: #f7f3eb;
    isolation: isolate;
    overflow: hidden;
  }
  
  .home-hero__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: var(--hero-slide-bg, #f3ead7);
    transform: translateY(-115%) scaleY(1.08);
    transform-origin: top center;
    will-change: transform;
  }
  
  .home-hero__slide.is-animating::before {
    animation: tersaHeroBgDropSmooth 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  
  .home-hero__slide[hidden] {
    display: none;
  }
  
  .home-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1520px);
    margin: 0 auto;
    min-height: clamp(540px, 74svh, 720px);
    padding: clamp(22px, 3vw, 40px) clamp(20px, 4vw, 42px) 24px;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
  }
  
  .home-hero__content,
  .home-hero__image,
  .home-hero__badge {
    opacity: 0;
    will-change: transform, opacity;
  }
  
  .home-hero__content {
    transform: translateY(-120px);
  }
  
  .home-hero__image {
    transform: translateY(-135px) scale(0.94);
  }
  
  .home-hero__badge {
    transform: scale(0.86);
  }
  
  .home-hero__slide.is-animating .home-hero__content {
    animation: tersaHeroContentDrop 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.42s;
  }
  
  .home-hero__slide.is-animating .home-hero__image {
    animation: tersaHeroImageDrop 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.52s;
  }
  
  .home-hero__slide.is-animating .home-hero__badge {
    animation: tersaHeroBadgeFade 0.8s ease forwards;
    animation-delay: 1.45s;
  }
  
  .home-hero__slide.is-active .home-hero__badge-main {
    animation: tersaHeroBadgePulse 1.9s ease-in-out 2.2s infinite;
  }
  
  @keyframes tersaHeroBgDropSmooth {
    0% {
      transform: translateY(-115%) scaleY(1.08);
    }
    72% {
      transform: translateY(1.5%) scaleY(1.01);
    }
    100% {
      transform: translateY(0) scaleY(1);
    }
  }
  
  @keyframes tersaHeroContentDrop {
    0% {
      opacity: 0;
      transform: translateY(-120px);
    }
    68% {
      opacity: 1;
      transform: translateY(8px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes tersaHeroImageDrop {
    0% {
      opacity: 0;
      transform: translateY(-135px) scale(0.94);
    }
    68% {
      opacity: 1;
      transform: translateY(10px) scale(1.01);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  @keyframes tersaHeroBadgeFade {
    0% {
      opacity: 0;
      transform: scale(0.86);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes tersaHeroBadgePulse {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.08);
    }
  }
  
  .home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
  }
  
  .home-hero__prices {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    line-height: 1;
  }
  
  .home-hero__price {
    font-family: var(--f-body);
    font-size: clamp(20px, 1.6vw, 26px);
    font-weight: 500;
  }
  
  .home-hero__price--current {
    color: #ff2b06;
  }
  
  .home-hero__price--old {
    color: #111111;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
  }
  
  .home-hero__title {
    margin: 0;
    font-family: var(--f-body);
    font-size: clamp(46px, 5vw, 78px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #000000;
    text-wrap: balance;
  }
  
  .home-hero__description {
    margin: 22px 0 0;
    max-width: 460px;
    font-family: var(--f-body);
    font-size: clamp(16px, 1.15vw, 20px);
    line-height: 1.5;
    color: #111111;
  }

  .home-hero__description > :first-child {
    margin-top: 0;
  }

  .home-hero__description > :last-child {
    margin-bottom: 0;
  }
  
  .home-hero__cta {
    display: inline-block;
    margin-top: 32px;
    font-family: var(--f-body);
    font-size: clamp(14px, 0.95vw, 16px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--c-accent);
    padding: 20px 35px;
    transition: background-color 0.3s ease;
    &:hover {
      background-color: var(--c-accent-hover);
    }
  }
  
  .home-hero__cta:hover,
  .home-hero__cta:focus-visible {
    color: #ffffff;
  }
  
  .home-hero__cta:focus-visible,
  .home-hero__dot:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 4px;
  }
  
  .home-hero__media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
  }
  
  .home-hero__image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .home-hero__picture {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .home-hero__img {
    display: block;
    width: 100%;
    /*
    max-width: 590px;
    height: auto;
    object-fit: contain;*/
  }
  
  .home-hero__badge {
    position: absolute;
    top: -14%;
    left: -8%;
    z-index: 3;
    width: clamp(120px, 11vw, 190px);
    height: clamp(120px, 11vw, 190px);
    border-radius: 50%;
    background-color: #cf2f64;
    color: #ffffff;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 14px;
  }
  
  .home-hero__badge-top {
    display: block;
    font-size: clamp(11px, 0.9vw, 16px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  
  .home-hero__badge-main {
    display: block;
    font-size: clamp(30px, 3vw, 62px);
    line-height: 0.9;
    font-weight: 800;
    transform-origin: center;
  }
  
  .home-hero__badge-bottom {
    display: block;
    font-size: clamp(11px, 0.85vw, 15px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  
  .home-hero__pagination {
    position: absolute;
    inset-inline: 0;
    bottom: 18px;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  
  .home-hero__dot {
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
  }
  
  .home-hero__dot::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 16px;
    height: 16px;
    border: 2px solid #111111;
    border-radius: 50%;
    background-color: transparent;
    transform: translate(-50%, -50%);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  
  .home-hero__dot:hover::before,
  .home-hero__dot:focus-visible::before {
    transform: translate(-50%, -50%) scale(1.08);
  }
  
  .home-hero__dot.is-active::before {
    background-color: #000000;
    border-color: #000000;
  }
  
  @media (max-width: 1024px) {
    .home-hero__inner {
      grid-template-columns: 1fr;
      gap: clamp(18px, 3.8vw, 34px);
      text-align: center;
      align-items: start;
      min-height: auto;
      padding-top: clamp(24px, 4vw, 40px);
      padding-bottom: clamp(28px, 4.8vw, 48px);
    }
  
    .home-hero__content {
      order: 2;
      max-width: 100%;
    }

    .home-hero__media {
      order: 1;
    }
  
    .home-hero__prices,
    .home-hero__pagination {
      justify-content: center;
    }
  
    .home-hero__description {
      margin-inline: auto;
      max-width: 620px;
      font-size: clamp(16px, 2vw, 20px);
    }
  
    .home-hero__media {
      min-height: 0;
    }
  
    .home-hero__badge {
      top: clamp(-64px, -6vw, -34px);
      left: clamp(56px, 16vw, 180px);
      width: clamp(120px, 16vw, 150px);
      height: clamp(120px, 16vw, 150px);
    }
    .home-hero__badge-top, 
    .home-hero__badge-bottom{
        font-size: clamp(10px, 1.4vw, 12px);
    }

    .home-hero__badge-main{
        font-size: clamp(36px, 5vw, 50px);
    }
  
    .home-hero__img {
      max-width: clamp(420px, 62vw, 560px);
    }
  
    .home-hero__pagination {
      position: static;
      margin-top: 12px;
    }
  }

  @media (max-width: 880px) {
    .home-hero__badge{
        left: clamp(32px, 12vw, 110px);
    }
  }
  
  @media (max-width: 767px) {
    .home-hero__inner {
      padding-inline: 18px;
      padding-top: clamp(18px, 5vw, 28px);
      padding-bottom: clamp(18px, 5vw, 28px);
      gap: clamp(12px, 4vw, 20px);
    }
  
    .home-hero__prices {
      margin-bottom: clamp(10px, 3vw, 14px);
      gap: 10px;
    }
  
    .home-hero__price {
      font-size: clamp(18px, 5.2vw, 21px);
    }
  
    .home-hero__title {
      font-size: clamp(36px, 11vw, 60px);
      line-height: 1.03;
    }
  
    .home-hero__description {
      display: none;
    }
  
    .home-hero__cta {
      margin-top: clamp(20px, 6vw, 24px);
      font-size: clamp(13px, 4vw, 15px);
      padding: clamp(14px, 4vw, 18px) clamp(24px, 8vw, 32px);
    }
  
    .home-hero__badge {
      left: clamp(28px, 18vw, 116px);
      width: clamp(90px, 28vw, 109px);
      height: clamp(90px, 28vw, 109px);
      padding: 10px;
    }
    .home-hero__badge-top,
    .home-hero__badge-bottom{
        font-size: clamp(8px, 2.7vw, 10px);
    }
    .home-hero__badge-main{
        font-size: clamp(28px, 10vw, 42px);
    }
  
    .home-hero__img {
      max-width: clamp(270px, 88vw, 380px);
    }
  
    .home-hero__dot {
      width: 20px;
      height: 20px;
    }
  
    .home-hero__dot::before {
      width: 14px;
      height: 14px;
    }
  }
  
  @media (max-width: 600px) {
    .home-hero__badge{
        left: clamp(18px, 6vw, 36px);
    }
  }

  @media (max-width: 450px) {
    .home-hero__badge{
        left: 0;
        width: clamp(76px, 22vw, 84px);
        height: clamp(76px, 22vw, 84px);
    }
    .home-hero__badge-main{
        font-size: clamp(20px, 7vw, 28px);
    }
    .home-hero__badge-top,
    .home-hero__badge-bottom{
        font-size: clamp(7px, 2.5vw, 8px);
    }
  }
@media (max-width: 375px) {
  .home-hero__badge{
    top: 64%;
    right: 0;
    left: auto;
  }
}
  @media (prefers-reduced-motion: reduce) {
    .home-hero__slide::before,
    .home-hero__content,
    .home-hero__image,
    .home-hero__badge {
      opacity: 1;
      transform: none;
      animation: none !important;
    }
  
    .home-hero__badge-main {
      animation: none !important;
    }
  }

/************************************************************
    SHOP BY CATEGORY
************************************************************/
  /* SHOP BY CATEGORY */
  .home-shop-categories {
    padding: clamp(44px, 6vw, 82px) 0;
    background-color: #f3f3f3;
  }
  
  .home-shop-categories__inner {
    width: min(100%, 1600px);
    margin: 0 auto;
    /* padding: 0 clamp(20px, 4vw, 48px); */
  }
  
  .home-shop-categories__title {
    margin: 0 0 clamp(28px, 4vw, 52px);
    font-family: var(--f-body);
    font-size: clamp(25px, 2.1vw, 42px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #000000;
  }
  
  .home-shop-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
  }
  
  .home-shop-categories__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    min-height: 160px;
    color: #111111;
    text-align: center;
    text-decoration: none;
  }
  
  .home-shop-categories__item:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 6px;
  }
  
  .home-shop-categories__icon-wrap {
    position: relative;
    flex: 0 0 118px;
    width: 118px;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .home-shop-categories__icon-bg {
    position: absolute;
    width: 10rem;
    height: 8rem;
    border-radius:8% 8% 8% 45%;
    background-color: #fff;
  }
  
  .home-shop-categories__icon {
    position: relative;
    z-index: 1;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
  }
  
  .home-shop-categories__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  
  .home-shop-categories__item:hover .home-shop-categories__icon,
  .home-shop-categories__item:focus-visible .home-shop-categories__icon {
    animation: tersaCategoryIconShake 0.28s linear 2;
  }
  
  @keyframes tersaCategoryIconShake {
    0% {
      transform: translateX(0);
    }
    20% {
      transform: translateX(-6px);
    }
    40% {
      transform: translateX(6px);
    }
    60% {
      transform: translateX(-5px);
    }
    80% {
      transform: translateX(5px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  .home-shop-categories__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  
  .home-shop-categories__name {
    display: block;
    font-family: var(--f-body);
    font-size: clamp(12px, 1.7vw, 20px);
    line-height: 1.2;
    font-weight: 700;
    color: #111111;
    transition: color 0.18s ease;
  }
  
  .home-shop-categories__item:hover .home-shop-categories__name,
  .home-shop-categories__item:focus-visible .home-shop-categories__name {
    color: var(--c-accent);
  }
  
  @media (max-width: 1300px) {
    .home-shop-categories__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 900px) {
    .home-shop-categories__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px 18px;
    }
  
    .home-shop-categories__item {
      min-height: 132px;
    }
  
    .home-shop-categories__icon-wrap {
      flex-basis: 96px;
      width: 96px;
      height: 96px;
    }
  
    .home-shop-categories__icon {
      width: 72px;
      height: 72px;
    }
  
    .home-shop-categories__icon-bg {
      width: 5rem;
      height: 4rem;
      top: 14px;
      right: 8px;
    }
  }
  
  @media (max-width: 640px) {
    .home-shop-categories {
      padding: 36px 0;
    }
  
    .home-shop-categories__inner {
      padding: 0 18px;
    }
  
    .home-shop-categories__title {
      margin-bottom: 28px;
      font-size: 26px;
    }
  
    .home-shop-categories__grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }
  
    .home-shop-categories__item {
      min-height: 122px;
      gap: 12px;
    }
  
    .home-shop-categories__icon-wrap {
      flex: 0 0 82px;
      width: 82px;
      height: 82px;
    }
  
    .home-shop-categories__icon {
      width: 62px;
      height: 62px;
    }
  
    .home-shop-categories__icon-bg {
      width: 4.5rem;
      height: 3.5rem;
      top: 12px;
      right: 6px;
    }
  
    .home-shop-categories__name {
      font-size: 22px;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .home-shop-categories__icon,
    .home-shop-categories__name {
      transition: none;
      animation: none !important;
    }
  }


  /************************************************************
    PROMO BANNERS
  ************************************************************/
  .home-promo-banners {
    padding: clamp(40px, 5vw, 80px) 0;
    background-color: #f3f3f3;
  }
  
  .home-promo-banners__inner {
    width: min(100%, 1600px);
    margin: 0 auto;
    /* padding: 0 clamp(20px, 4vw, 48px); */
  }
  
  .home-promo-banners__grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: clamp(18px, 2vw, 28px);
  }
  
  .home-promo-banners__item {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-decoration: none;
    color: #111111;
  }
  
  .home-promo-banners__item:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 6px;
  }
  
  .home-promo-banners__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e9e9e9;
    /* aspect-ratio: 1 / 1.08; */
  }
  
  .home-promo-banners__image {
    display: block;
    width: 100%;
    height: 100%;
  
  }
  
  .home-promo-banners__frame {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }
  
  .home-promo-banners__line {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.72);
    will-change: transform;
  }
  
  .home-promo-banners__line--top,
  .home-promo-banners__line--bottom {
    left: 0;
    width: 100%;
    height: 22px;
    transform: scaleX(0);
  }
  
  .home-promo-banners__line--left,
  .home-promo-banners__line--right {
    top: 0;
    height: 100%;
    width: 22px;
    transform: scaleY(0);
  }
  
  .home-promo-banners__line--top {
    top: 0;
    transform-origin: left center;
  }
  
  .home-promo-banners__line--right {
    right: 0;
    transform-origin: center top;
  }
  
  .home-promo-banners__line--bottom {
    bottom: 0;
    transform-origin: right center;
  }
  
  .home-promo-banners__line--left {
    left: 0;
    transform-origin: center bottom;
  }
  
  .home-promo-banners__item:hover .home-promo-banners__line--top,
  .home-promo-banners__item:focus-visible .home-promo-banners__line--top {
    animation: tersaPromoTopIn 0.45s ease forwards;
  }
  
  .home-promo-banners__item:hover .home-promo-banners__line--right,
  .home-promo-banners__item:focus-visible .home-promo-banners__line--right {
    animation: tersaPromoRightIn 0.45s ease 0.08s forwards;
  }
  
  .home-promo-banners__item:hover .home-promo-banners__line--bottom,
  .home-promo-banners__item:focus-visible .home-promo-banners__line--bottom {
    animation: tersaPromoBottomIn 0.45s ease 0.16s forwards;
  }
  
  .home-promo-banners__item:hover .home-promo-banners__line--left,
  .home-promo-banners__item:focus-visible .home-promo-banners__line--left {
    animation: tersaPromoLeftIn 0.45s ease 0.24s forwards;
  }
  
  @keyframes tersaPromoTopIn {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(0.52);
    }
  }
  
  @keyframes tersaPromoRightIn {
    from {
      transform: scaleY(0);
    }
    to {
      transform: scaleY(0.52);
    }
  }
  
  @keyframes tersaPromoBottomIn {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(0.52);
    }
  }
  
  @keyframes tersaPromoLeftIn {
    from {
      transform: scaleY(0);
    }
    to {
      transform: scaleY(0.52);
    }
  }
  
  .home-promo-banners__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    padding: 0 12px;
  }
  
  .home-promo-banners__eyebrow {
    font-family: var(--f-body);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #222222;
  }
  
  .home-promo-banners__title {
    font-family: var(--f-body);
    font-size: clamp(20px, 3vw, 42px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: #000000;
    text-wrap: balance;
  }
  
  .home-promo-banners__description {
    font-family: var(--f-body);
    font-size: clamp(16px, 1vw, 20px);
    line-height: 1.45;
    font-weight: 400;
    color: #111111;
  }
  
  @media (max-width: 900px) {
    .home-promo-banners__grid {
      grid-template-columns: 1fr;
    }
  
    .home-promo-banners__media {
      aspect-ratio: 1 / 1;
    }
  
    .home-promo-banners__title {
      font-size: clamp(34px, 8vw, 56px);
    }
  }
  
  @media (max-width: 640px) {
    .home-promo-banners {
      padding: 32px 0 40px;
    }
  
    .home-promo-banners__inner {
      padding: 0 18px;
    }
  
    .home-promo-banners__item {
      gap: 16px;
    }
  
    .home-promo-banners__line--top,
    .home-promo-banners__line--bottom {
      height: 16px;
    }
  
    .home-promo-banners__line--left,
    .home-promo-banners__line--right {
      width: 16px;
    }
  
    .home-promo-banners__title {
      font-size: clamp(32px, 10vw, 50px);
    }
  
    .home-promo-banners__description {
      font-size: 15px;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .home-promo-banners__line {
      animation: none !important;
      transform: none !important;
    }
  }

  /************************************************************
    PROMO COUNTDOWN
  ************************************************************/
  .home-promo-countdown {
   
    overflow: hidden;
  }
  
  .home-promo-countdown__inner {
    width: min(100%, 1600px);
    margin: 0 auto;
    /* padding: clamp(32px, 4vw, 56px) clamp(20px, 4vw, 48px) 0; */
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    align-items: end;
    gap: clamp(24px, 4vw, 56px);
    background-color: #f1dfcb;
  }
  
  .home-promo-countdown__content {
    padding: clamp(12px, 2vw, 24px) clamp(36px, 4vw, 48px);
    align-self: center;
  }
  
  .home-promo-countdown__eyebrow {
    margin: 0 0 22px;
    font-family: var(--f-body);
    font-size: clamp(18px, 1.1vw, 26px);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111111;
  }
  
  .home-promo-countdown__title {
    margin: 0;
    font-family: var(--f-body);
    font-size: clamp(52px, 6vw, 72px);
    line-height: 0.96;
    font-weight: 400;
    letter-spacing: -0.045em;
    color: #000000;
    text-wrap: balance;
  }
  
  .home-promo-countdown__timer {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 42px;
  }
  
  .home-promo-countdown__unit {
    width: clamp(110px, 8vw, 130px);
    height: clamp(110px, 8vw, 130px);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
  }
  
  .home-promo-countdown__value {
    display: block;
    font-family: var(--f-body);
    font-size: clamp(10px, 2.6vw, 32px);
    line-height: 1;
    font-weight: 800;
    color: #000000;
  }
  
  .home-promo-countdown__label {
    display: block;
    margin-top: 8px;
    font-family: var(--f-body);
    font-size: clamp(16px, 1vw, 24px);
    line-height: 1.1;
    font-weight: 400;
    color: #111111;
  }
  
  .home-promo-countdown__media {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    min-width: 0;
  }
  
  .home-promo-countdown__image {
    display: block;
    width: 100%;
    max-width: 960px;
    height: auto;
    object-fit: contain;
  }
  
  @media (max-width: 1024px) {
    .home-promo-countdown__inner {
      grid-template-columns: 1fr;
      align-items: start;
      gap: 22px;
      padding-top: 34px;
    }
  
    .home-promo-countdown__content {
      padding-bottom: 0;
      text-align: center;
    }
  
    .home-promo-countdown__timer {
      justify-content: center;
    }
  
    .home-promo-countdown__media {
      justify-content: center;
    }
  
    .home-promo-countdown__image {
      max-width: 760px;
    }
  }
  
  @media (max-width: 767px) {
    .home-promo-countdown__inner {
      padding-inline: 18px;
      padding-top: 28px;
      gap: 18px;
    }
  
    .home-promo-countdown__eyebrow {
      margin-bottom: 18px;
      font-size: 16px;
    }
  
    .home-promo-countdown__title {
      font-size: clamp(42px, 12vw, 70px);
      line-height: 1;
    }
  
    .home-promo-countdown__timer {
      gap: 12px;
      margin-top: 28px;
    }
  
    .home-promo-countdown__unit {
      width: 92px;
      height: 92px;
      padding: 10px;
    }
  
    .home-promo-countdown__value {
      font-size: 28px;
    }
  
    .home-promo-countdown__label {
      margin-top: 6px;
      font-size: 14px;
    }
  
    .home-promo-countdown__image {
      max-width: 100%;
    }
  }

 
