:root {
    --primary-pink: #f49cc4;
    --primary-blue: #3d4fa7;
    --primary-blue-dark: #17224d;
    --primary-cyan: #73d8ea;
    --primary-yellow: #ffe866;
    --text-black: #17224d;
    --text-grey: #4f5b86;
    --bg-light: #fff5d0;
    --bg-white: #fffdf8;
    --border-color: #b8d8ef;
    --font-main: "Trebuchet MS", "Segoe UI", sans-serif;
    --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --container-width: 1400px;
    --shadow-card: 0 18px 40px rgba(61, 79, 167, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-black);
    background:
        radial-gradient(circle at top left, rgba(115, 216, 234, 0.35), transparent 30%),
        radial-gradient(circle at top right, rgba(244, 156, 196, 0.28), transparent 24%),
        var(--bg-white);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.section {
    padding: 72px 0;
}

h1.section-title,
h2.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--primary-blue);
    text-shadow: 3px 3px 0 rgba(255, 232, 102, 0.75);
}

p.section-subtitle,
p.section-desc {
    color: var(--text-grey);
    margin-bottom: 2rem;
    font-size: 1.02rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.btn-black {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 12px 24px;
    font-weight: 800;
    font-size: 0.9rem;
    border: 3px solid var(--primary-blue);
    box-shadow: 6px 6px 0 rgba(61, 79, 167, 0.18);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    text-transform: uppercase;
}

.btn-black:hover {
    background: var(--primary-pink);
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 rgba(61, 79, 167, 0.18);
}

.btn-black.small {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(23, 34, 77, 0.82);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    border-radius: 20px;
    color: var(--text-black);
    padding: 32px 38px;
    text-align: center;
    max-width: 420px;
    box-shadow: 0 24px 50px rgba(23, 34, 77, 0.24);
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--primary-blue);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

button {
    padding: 10px 25px;
    font-size: 16px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

#yesBtn {
    background: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    color: #fff;
}

#yesBtn:hover {
    background: var(--primary-cyan);
    color: var(--primary-blue);
}

#noBtn {
    background: white;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

#noBtn:hover {
    background: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
}

.warn {
    font-size: 16px;
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.warn.active {
    display: none;
}

.header {
    background: var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(23, 34, 77, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 88px;
}

.logo-box {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
}

.brand-wordmark {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: white;
    text-shadow: 3px 3px 0 rgba(244, 156, 196, 0.6);
}

.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        gap: 22px;
    }

    .desktop-nav a {
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        letter-spacing: 0.04em;
    }

    .desktop-nav a:hover {
        color: var(--primary-yellow);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-link,
.cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-link:hover,
.cart-link:hover {
    color: var(--primary-yellow);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    width: 25px;
    min-width: 25px;
    height: 22px;
    cursor: pointer;
    z-index: 1100;
    align-items: stretch;
    justify-content: center;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 88px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 88px);
    background: var(--primary-blue);
    transition: right 0.3s ease-in-out;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 999;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu nav a {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.features-bar {
    border-bottom: 1px solid var(--border-color);
    padding: 26px 0;
    background: linear-gradient(90deg, rgba(255, 232, 102, 0.38), rgba(115, 216, 234, 0.28));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    text-align: left;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
    }
}

@media (min-width: 700px) and (max-width: 1023px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 500px) and (max-width: 699px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 1.35;
}

.feature-text strong {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 2px;
    color: var(--primary-blue);
}

.feature-text span {
    color: var(--text-grey);
}

.hero-slider {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(115, 216, 234, 0.45), rgba(244, 156, 196, 0.32));
    border-bottom: 6px solid var(--primary-yellow);
}

.slider-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(61, 79, 167, 0.72);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 20;
}

.slider-arrow:hover {
    background: rgba(244, 156, 196, 0.9);
}

.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-yellow);
    width: 24px;
    border-radius: 999px;
}

.brands-section {
    background: linear-gradient(180deg, rgba(115, 216, 234, 0.2), rgba(255, 245, 208, 0.8));
}

.brands-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll-brands 34s linear infinite;
    align-items: center;
    padding-left: 20px;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    max-height: 56px;
    transition: transform 0.2s;
}

.brand-logo:hover {
    transform: translateY(-3px) scale(1.02);
}

.new-arrivals {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 156, 196, 0.14));
}

.best-sellers {
    background: linear-gradient(180deg, rgba(255, 245, 208, 0.65), rgba(115, 216, 234, 0.18));
}

.tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 15px;
}

.tabs-wrapper.center {
    justify-content: center;
}

.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.92);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(61, 79, 167, 0.08);
}

.tab-btn.active {
    background: var(--primary-blue);
    color: white;
}

.arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: var(--primary-yellow);
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
}

.arrow-btn:hover {
    border-color: var(--primary-pink);
    background: var(--primary-pink);
}

.products-grid,
.reviews-list-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-grid::-webkit-scrollbar,
.reviews-list-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 100%;
    position: relative;
    background: white;
    padding: 14px;
    border-radius: 28px;
    border: 2px solid rgba(61, 79, 167, 0.08);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 600px) {
    .product-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .product-card {
        flex: 0 0 calc(33.333% - 13.333px);
    }
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(61, 79, 167, 0.22);
}

.image-wrapper {
    background: linear-gradient(180deg, rgba(115, 216, 234, 0.28), rgba(255, 232, 102, 0.18));
    margin-bottom: 15px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 22px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.image-wrapper a {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(61, 79, 167, 0.92);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.image-wrapper a:hover {
    background: var(--primary-pink);
}

.product-card:hover .image-wrapper a {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.product-info {
    text-align: left;
}

.product-brand {
    font-size: 10px;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.08em;
}

.product-name {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    min-height: 40px;
}

.rating {
    font-size: 12px;
    color: var(--primary-blue);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

.rating .review-count {
    color: var(--text-grey);
    font-size: 10px;
}

.price {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-blue);
}

.promo-banner {
    background: linear-gradient(135deg, rgba(61, 79, 167, 0.97), rgba(89, 108, 201, 0.95));
    padding: 48px 0;
}

.promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .promo-content {
        flex-direction: row;
        justify-content: center;
    }
}

.promo-image {
    flex: 1;
    max-width: 380px;
}

.promo-text-side {
    flex: 1;
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .promo-text-side {
        text-align: left;
    }
}

.promo-text-side h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.7rem);
    color: var(--primary-yellow);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.promo-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .promo-icons,
    .promo-buttons {
        justify-content: flex-start;
    }
}

.promo-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.reviews-section {
    background: linear-gradient(180deg, rgba(244, 156, 196, 0.24), rgba(255, 255, 255, 0.94));
    padding-top: 40px;
}

.reviews-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .reviews-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
}

.review-summary {
    flex: 0 0 280px;
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
    .review-summary {
        text-align: left;
    }
}

.summary-score {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.summary-subtitle {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.stars.big {
    font-size: 18px;
    color: var(--primary-pink);
    margin-bottom: 10px;
    line-height: 1.4;
}

.summary-count {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-black);
}

.review-card {
    background: rgba(255, 255, 255, 0.94);
    padding: 20px;
    border: 2px solid rgba(61, 79, 167, 0.08);
    border-radius: 18px;
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 14px 28px rgba(61, 79, 167, 0.1);
}

.review-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--primary-blue);
}

.review-card p {
    font-size: 13px;
    color: #455273;
    margin-bottom: 15px;
    line-height: 1.45;
    flex-grow: 1;
}

.reviewer {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-blue-dark);
}

.insights-section {
    background: linear-gradient(180deg, rgba(115, 216, 234, 0.22), rgba(255, 255, 255, 0.92));
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .insights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.insight-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.insight-visual-card {
    background: linear-gradient(135deg, #394897 0%, #566bcd 100%);
    color: white;
    border-radius: 18px;
    padding: 30px 20px;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(61, 79, 167, 0.22);
}

.logo-corner {
    position: absolute;
    top: 18px;
    left: 18px;
}

.logo-corner img {
    width: 46px;
    height: auto;
}

.logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--primary-yellow);
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.card-title-overlay {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.05;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.card-subtitle-overlay {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-yellow);
}

.insight-footer .footer-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--text-black);
}

.read-more {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.faq-section {
    background: linear-gradient(180deg, rgba(255, 245, 208, 0.55), rgba(255, 255, 255, 0.95));
}

footer {
    width: 100%;
    background: linear-gradient(180deg, #26357e 0%, #17224d 100%);
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 40px 100px;
}

footer a {
    color: inherit;
}

.social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 20px;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 6px 10px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: white;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.footer-logo {
    padding: 0 20px 0 0;
    margin-right: 20px;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-wordmark {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: white;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 rgba(244, 156, 196, 0.6);
}

.footer-cont {
    width: 100%;
    display: flex;
    color: white;
    font-size: 22px;
    gap: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}

.foot-cont-one {
    display: flex;
    gap: 60px;
}

.cont-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cont-col:first-child {
    color: rgba(255, 255, 255, 0.72);
}

.cont-col:first-child a:first-child {
    color: white;
}

.foot-cont-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.foot-cont-two div {
    align-items: center;
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 28px;
    fill: var(--primary-yellow);
}

.foot-cont-three {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: white;
    font-size: 18px;
}

.city {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.foot-cont-three p {
    position: relative;
    padding-right: 18px;
    cursor: pointer;
}

.foot-cont-three p::after {
    content: "\25BE";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.foot-cont-three p.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.foot-cont-three a {
    display: none;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1023px) {
    .section {
        padding: 56px 0;
    }

    .tabs-wrapper {
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-inner {
        position: relative;
        padding-right: 64px;
    }

    .header-inner {
        gap: 12px;
    }

    .brand-wordmark {
        font-size: 1.35rem;
    }

    .header-actions {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        gap: 0;
        margin-left: 0;
    }

    .icon-link,
    .cart-link {
        display: none;
    }

    .hamburger {
        display: flex;
        width: 44px;
        min-width: 44px;
        height: 44px;
        padding: 10px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.12);
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .hamburger::before {
        content: "\2630";
        color: white;
        font-size: 24px;
        line-height: 1;
    }

    .hamburger span {
        display: none;
    }

    .modal-content {
        padding: 28px 24px;
    }

    .warn {
        font-size: 11px;
    }

    .image-wrapper a {
        display: block;
    }

    .promo-text-side,
    .review-summary {
        text-align: center;
    }

    .card-title-overlay {
        font-size: 22px;
    }

    footer {
        padding: 36px 26px;
    }

    .social {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo {
        margin-right: 0;
        padding-right: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-cont {
        font-size: 18px;
        flex-direction: column;
        gap: 28px;
    }

    .foot-cont-one {
        flex-direction: column;
        gap: 22px;
    }

    .foot-cont-three {
        flex-direction: column;
    }
}
