
.dip-product-wall {
    width: 100%;
}

.dip-product-wall__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 1.5vw, 22px);
}

.dip-product-wall__tile {
    position: relative;
    display: flex;
    min-height: clamp(160px, 22vw, 320px);
    overflow: hidden;
    border-radius: 24px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
}

.dip-product-wall__tile--product {
    align-items: flex-end;
}

.dip-product-wall__image-wrap {
    position: absolute;
    inset: 0;
}

.dip-product-wall__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.dip-product-wall__tile--product:hover img {
    transform: scale(1.05);
}

.dip-product-wall__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 18px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.62),
        rgba(0, 0, 0, 0)
    );
    color: #fff;
}

.dip-product-wall__name,
.dip-product-wall__price {
    display: block;
}

.dip-product-wall__name {
    font-weight: 700;
    line-height: 1.15;
}

.dip-product-wall__price {
    margin-top: 6px;
    font-size: 0.95rem;
}

.dip-product-wall__tile--center {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: clamp(20px, 4vw, 48px);
    text-align: center;
   }

.dip-product-wall__center-title {
    display: block;
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 0.95;
}

.dip-product-wall__center-text {
    display: block;
    margin-top: 12px;
    font-size: clamp(1rem, 1.5vw, 1.35rem);
}

@media (max-width: 700px) {
    .dip-product-wall__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dip-product-wall__tile {
        min-height: 190px;
        border-radius: 18px;
    }

    .dip-product-wall__tile--center {
        grid-column: 1 / -1;
        min-height: 160px;
        order: -1;
    }
}

.dip-product-wall__tile {
    isolation: isolate;
    will-change: transform, opacity;
}

.dip-product-wall__tile--leaving {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
     }

.dip-product-wall__tile--entering {
    animation: dipProductWallEnter 0.55s ease both;
}

@keyframes dipProductWallEnter {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(1.015);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dip-product-wall__tile,
    .dip-product-wall__image-wrap img {
        transition: none !important;
        animation: none !important;
    }
}

.dip-product-wall--style-plain-raw .dip-product-wall__grid {
    gap: 0;
}

.dip-product-wall--style-plain-raw .dip-product-wall__tile {
    border-radius: 0;
    min-height: clamp(180px, 23vw, 340px);
    background: transparent;
}

.dip-product-wall--style-plain-raw .dip-product-wall__content {
    display: none;
}

.dip-product-wall--style-plain-raw .dip-product-wall__image-wrap img {
    transform: none;
}

.dip-product-wall--style-plain-raw .dip-product-wall__tile--product:hover img {
    transform: none;
}

.dip-product-wall--style-framed .dip-product-wall__grid {
    gap: clamp(14px, 2vw, 28px);
}

.dip-product-wall--style-framed .dip-product-wall__tile {
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    background: #fff;
}

.dip-product-wall--style-framed .dip-product-wall__content {
    margin: 14px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.58);
}

.dip-product-wall--style-poster .dip-product-wall__grid {
    gap: clamp(8px, 1vw, 14px);
}

.dip-product-wall--style-poster .dip-product-wall__tile {
    min-height: clamp(220px, 26vw, 390px);
    border-radius: 6px;
}

.dip-product-wall--style-poster .dip-product-wall__content {
    padding: clamp(18px, 2vw, 34px);
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.12),
        rgba(0, 0, 0, 0)
    );
}

.dip-product-wall--style-poster .dip-product-wall__name {
    font-size: clamp(1.1rem, 1.6vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.dip-product-wall__logo-image {
    display: block;
    width: min(70%, 260px);
    height: auto;
    max-height: 70%;
    object-fit: contain;
}

.dip-product-wall__tile--leaving-gentle {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
}

.dip-product-wall__tile--entering-gentle {
    animation: dipWallGentleIn 0.6s ease both;
}

@keyframes dipWallGentleIn {
    from { opacity: 0; transform: translateY(-8px) scale(1.015); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.dip-product-wall__tile--leaving-slide {
    opacity: 0;
    transform: translateX(-24px);
}

.dip-product-wall__tile--entering-slide {
    animation: dipWallSlideIn 0.6s ease both;
}

@keyframes dipWallSlideIn {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

.dip-product-wall__tile--leaving-lift {
    opacity: 0;
    transform: translateY(-22px) scale(0.98);
}

.dip-product-wall__tile--entering-lift {
    animation: dipWallLiftIn 0.65s ease both;
}

@keyframes dipWallLiftIn {
    from { opacity: 0; transform: translateY(24px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.dip-product-wall__tile--leaving-flip {
    opacity: 0;
    transform: rotateY(18deg) scale(0.98);
}

.dip-product-wall__tile--entering-flip {
    animation: dipWallFlipIn 0.7s ease both;
}

@keyframes dipWallFlipIn {
    from { opacity: 0; transform: rotateY(-18deg) scale(0.98); }
    to { opacity: 1; transform: rotateY(0) scale(1); }
}

.dip-product-wall__tile--leaving-ripple {
    opacity: 0;
    transform: scale(0.94);
    filter: blur(3px);
}

.dip-product-wall__tile--entering-ripple {
    animation: dipWallRippleIn 0.7s ease both;
}

@keyframes dipWallRippleIn {
    0% { opacity: 0; transform: scale(1.06); filter: blur(4px); }
    60% { opacity: 1; transform: scale(0.99); filter: blur(0); }
    100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

.dip-product-wall__tile--leaving-shuffle {
    opacity: 0;
    transform: rotate(-2deg) translateY(18px) scale(0.96);
}

.dip-product-wall__tile--entering-shuffle {
    animation: dipWallShuffleIn 0.7s ease both;
}

@keyframes dipWallShuffleIn {
    from { opacity: 0; transform: rotate(2deg) translateY(-18px) scale(1.03); }
    to { opacity: 1; transform: rotate(0) translateY(0) scale(1); }
}

.dip-product-wall__tile--leaving-grow {
    opacity: 0;
    transform: scale(1.08);
}

.dip-product-wall__tile--entering-grow {
    animation: dipWallGrowIn 0.65s ease both;
}

@keyframes dipWallGrowIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.dip-product-wall__tile--leaving-float {
    opacity: 0;
    transform: translateY(-16px) scale(1.02);
}

.dip-product-wall__tile--entering-float {
    animation: dipWallFloatIn 0.8s ease both;
}

@keyframes dipWallFloatIn {
    from { opacity: 0; transform: translateY(22px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.dip-wall-block {
    position: relative;
    padding-top: var(--section-y-supertight, clamp(32px, 5vw, 70px));
    padding-bottom: var(--section-y-supertight, clamp(32px, 5vw, 70px));
    overflow: hidden;
}

.dip-wall-block.bg-none {
    background: transparent;
}

.dip-wall-outer {
    width: min(100% - 32px, 1200px);
    margin-inline: auto;
}

.dip-wall-wide .dip-wall-outer {
    width: 100%;
    max-width: none;
}

.dip-wall-standard .dip-wall-inner,
.dip-wall-split .dip-wall-inner {
    width: min(100%, 1200px);
    margin-inline: auto;
}

.dip-wall-wide .dip-wall-outer,
.dip-wall-split-wide .dip-wall-outer {
    width: 100%;
    max-width: none;
}

.dip-wall-inner {
    display: grid;
    gap: clamp(24px, 4vw, 48px);
}

.dip-wall-align-top .dip-wall-inner {
    align-items: start;
}

.dip-wall-align-middle .dip-wall-inner {
    align-items: center;
}

.dip-wall-align-bottom .dip-wall-inner {
    align-items: end;
}

@media (min-width: 850px) {
    .dip-wall-split .dip-wall-inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }
}

.dip-wall-content {
    max-width: 760px;
}

.dip-wall-content h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.dip-wall-copy {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.65;
}

.dip-wall-copy > *:first-child {
    margin-top: 0;
}

.dip-wall-copy > *:last-child {
    margin-bottom: 0;
}

.dip-wall-standard .dip-wall-content,
.dip-wall-wide .dip-wall-content {
    text-align: center;
    margin-inline: auto;
}

.dip-wall-split-wide .dip-wall-content {
    max-width: 540px;
    padding-left: clamp(24px, 4vw, 72px);
    padding-right: clamp(12px, 2vw, 32px);
}

.dip-wall-split-wide .dip-wall-media {
    padding-right: clamp(24px, 4vw, 72px);
}

.dip-wall-split-wide .dip-wall-inner {
    grid-template-columns: minmax(360px, 0.75fr) minmax(520px, 1.25fr);
}

.dip-wall-media {
    width: 100%;
}

.dip-wall-standard .dip-wall-media {
    max-width: 980px;
    margin-inline: auto;
}

.dip-wall-wide .dip-product-wall--style-plain-raw .dip-product-wall__grid {
    width: 100%;
}

.dip-wall-wide .dip-product-wall--style-plain-raw .dip-product-wall__tile {
    border-radius: 0;
}

@media (min-width: 850px) {
    .dip-wall-split .dip-wall-inner,
    .dip-wall-split-wide .dip-wall-inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .dip-wall-split-wide .dip-wall-inner {
        width: 100%;
    }
}

@media (max-width: 849px) {
    .dip-wall-block {
        padding: clamp(40px, 10vw, 64px) 0;
    }

      .dip-wall-split .dip-wall-inner,
    .dip-wall-split-wide .dip-wall-inner {
        grid-template-columns: 1fr;
    }

    .dip-wall-content {
        text-align: center;
        margin-inline: auto;
    }
}

.dip-product-wall__tile--logo.bg-none {
    background: transparent;
}

.dip-product-wall__tile--logo.bg-red-dip {
    background: var(--red-dip);
}

.dip-product-wall__tile--logo.bg-sea-dip {
    background: var(--sea-dip);
}

.dip-product-wall__tile--logo.bg-sherbert-dip {
    background: var(--sherbert-dip);
}

.dip-product-wall__tile--logo.bg-blue-dip {
    background: var(--blue-dip);
}

.dip-product-wall__tile--logo.bg-milk-dip {
    background: var(--milk-dip);
}

.dip-product-wall__tile--logo.bg-white-dip {
    background: var(--white-dip);
}

.dip-product-wall__tile--logo.bg-black-dip {
    background: var(--black-dip);
}

.dip-product-wall__tile--logo.bg-green-dip {
    background: var(--green-dip);
}

.dip-product-wall__tile--logo.bg-foam-dip {
    background: var(--foam-dip);
}


.dip-product-wall__tile--logo.bg-red-dip{
    color: var(--sherbert-dip);
}

.dip-product-wall__tile--logo.bg-sherbert-dip{
    color: var(--red-dip);
}

.dip-product-wall__tile--logo.bg-sea-dip,
.dip-product-wall__tile--logo.bg-blue-dip,
.dip-product-wall__tile--logo.bg-green-dip,
.dip-product-wall__tile--logo.bg-black-dip {
    color: var(--white-dip);
}


.dip-product-display__row {
    display: grid;
    gap: clamp(14px, 2vw, 28px);
}

.dip-product-display__row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dip-product-display__row--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dip-product-display__grid {
    display: grid;
    gap: clamp(14px, 2vw, 28px);
}

.dip-product-display__grid--grid_2x2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dip-product-display__grid--grid_3x1 {
    grid-template-columns: 1fr;
}

.dip-product-display__single {
    max-width: 460px;
    margin-inline: auto;
}

.dip-product-display__row .dip-product-wall__tile,
.dip-product-display__grid .dip-product-wall__tile,
.dip-product-display__single .dip-product-wall__tile {
    min-height: clamp(220px, 28vw, 420px);
}

@media (max-width: 849px) {
    .dip-product-display__row--3,
    .dip-product-display__row--4,
    .dip-product-display__grid--grid_2x2 {
        grid-template-columns: 1fr;
    }
}


.dip-product-display__slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 52px;
}

.dip-product-display__slider .swiper-slide {
    height: auto;
}

.dip-product-display__slider .dip-product-wall__tile {
    height: 100%;
    min-height: clamp(240px, 28vw, 420px);
}

.dip-product-display__slider-nav {
   position: absolute;
    inset-inline: auto 24px;   /* right:24px */
    bottom: 12px;
    z-index: 20;
    display: flex;
    gap: 10px;
}

.dip-product-display__slider-button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
   }

.dip-product-display__slider-button.dip-product-display__slider-button--next

{
    background: var(--white-dip);
    color: var(--green-dip);
}

.dip-product-display__slider-button.dip-product-display__slider-button--next:hover

{
    background: var(--green-dip);
    color: var(--white-dip);
}

.dip-product-display__slider-button.dip-product-display__slider-button--prev
{
    background: var(--white-dip);
    color: var(--red-dip);
}

.dip-product-display__slider-button.dip-product-display__slider-button--prev:hover

{
    background: var(--red-dip);
    color: var(--white-dip);
}

.dip-product-display__slider-button.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

.dip-product-display--slider {
    overflow: hidden;
}

.dip-product-display--slider .dip-wall-media,
.dip-product-display--slider .dip-product-display__slider {
    min-width: 0;
    overflow: hidden;
}

.dip-product-display--slider .swiper-slide {
    flex-shrink: 0;
    height: auto;
}

.dip-product-display--slider .dip-product-wall__tile {
    width: 100%;
    height: 100%;
    min-height: clamp(240px, 28vw, 420px);
}

@media (max-width: 699px) {
    .dip-product-display--slider .swiper-slide {
        width: 78vw !important;
    }
}


/* Standard/content/split sliders use their actual container width */
.dip-product-display--slider .swiper-slide {
    width: calc(
        (100% - ((var(--dip-slider-visible, 4) - 1) * var(--dip-slider-gap, 24px)))
        / var(--dip-slider-visible, 4)
    ) !important;
    flex-shrink: 0;
}

/* Wide sliders use viewport width so they don't balloon beyond the screen */
.dip-wall-wide .dip-product-display--slider .swiper-slide {
    width: calc(
        (100vw - ((var(--dip-slider-visible, 4) - 1) * var(--dip-slider-gap, 24px)))
        / var(--dip-slider-visible, 4)
    ) !important;
}

@media (max-width: 699px) {
    .dip-product-display--slider .swiper-slide {
        width: 78vw !important;
    }
}

.dip-wall-wide.dip-product-display--slider,
.dip-wall-wide .dip-product-display--slider,
.dip-product-display--slider .dip-wall-outer,
.dip-product-display--slider .dip-wall-inner,
.dip-product-display--slider .dip-wall-media {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
}

.dip-product-display--slider .dip-product-display__slider {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
}

.dip-product-display--slider .swiper-wrapper {
    width: auto;
    max-width: none;
}


.dip-product-display--hero .dip-product-display__hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: stretch;
    min-height: clamp(420px, 54vw, 760px);
    overflow: hidden;
    border-radius: clamp(18px, 2vw, 34px);
    text-decoration: none;
    color: inherit;
    background: rgba(0, 0, 0, 0.06);
}

.dip-product-display--hero .dip-product-display__hero-image {
    display: block;
    min-height: 100%;
    overflow: hidden;
}

.dip-product-display--hero .dip-product-display__hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(320px, 46vw, 720px);
    object-fit: cover;
}

.dip-product-display--hero .dip-product-display__hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: clamp(28px, 5vw, 72px);
}

.dip-product-display__hero-title {
    display: block;
    font-size: clamp(2rem, 4.8vw, 5.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.dip-product-display__hero-button {
    display: inline-flex;
    width: fit-content;
    margin-top: 12px;
    padding: 12px 20px;
    border-radius: 999px;
    background: currentColor;
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 849px) {
    .dip-product-display--hero .dip-product-display__hero-card {
        grid-template-columns: 1fr;
    }

    .dip-product-display--hero .dip-product-display__hero-content {
        text-align: center;
        align-items: center;
    }
}