:root {
    --blue: #202344;
    --title: #2e3156;
    --dark: #111131;
    --yellow: #fdc831;
    --green: #00a29b;
    --grey: #4a5565;
    --muted: #6a7282;
    --line: #d1d5dc;
    --soft: #f1f1ff;
    --font-body: "Myriad Pro", "Myriad Pro Regular", Arial, sans-serif;
    --font-display: "Myriad Pro", "Myriad Pro Cond", "Helvetica Neue", Arial, sans-serif;
    --font-cond: "Myriad Pro Cond", "Myriad Pro", Arial, sans-serif;
    --font-serif: "Arsenica Variable", Georgia, "Times New Roman", serif;
    --shadow-card: 0 10px 17.2px rgba(0, 0, 0, 0.08), 0 151px 21px rgba(0, 0, 0, 0);
}
.hero {
    height: 728px;
    padding: 24px 60px;
    display: flex;
    gap: 24px;
    align-items: stretch;
}
.hero-main {
    width: 790px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: var(--blue);
}
.hero-main img,
.hero-side-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-main .hero-overlay { opacity: .9; mix-blend-mode: normal; }
.hero-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero-side-card {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.benefits {
    width: 1280px;
    height: 152px;
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 40px;
    color: var(--blue);
}
.benefit { width: 290px; }
.benefit img { width: 55px; height: 55px; object-fit: contain; margin-bottom: 10px; }
.benefit:nth-child(4) img { width: 60px; }
.benefit h3 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    font-weight: 600;
}
.benefit p {
    margin: 0;
    font-family: var(--font-display);
    font-size: 14px;
    line-height: 1.5;
}

.flavors {
    height: 430px;
    margin-top: 53px;
    background: var(--blue);
    color: #fff;
    position: relative;
    padding-top: 46px;
}
.flavors-title {
    text-align: center;
    font-size: 32px;
    line-height: .98;
    color: #fff;
    margin: 0;
}
.flavors-title strong { font-family: var(--font-display); font-weight: 600; }
.flavors-title span {
    display: block;
    margin-top: 3px;
    font-family: var(--font-serif);
    font-weight: 300;
}
.flavor-row {
    width: 1298px;
    height: 208px;
    margin: 56px auto 0;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}
.flavor-icons {
    position: absolute;
    left: 0;
    top: 0;
    width: 1311px;
    height: 130px;
    object-fit: contain;
    pointer-events: none;
}
.flavor {
    flex: 1;
    min-width: 0;
    text-align: center;
}
.flavor-bubble {
    width: 121px;
    height: 120px;
    border-radius: 90px;
    margin: 0 auto 32px;
    display: grid;
    place-items: center;
    color: #000;
    font-size: 34px;
    line-height: 1;
    opacity: 0;
}
.flavor p {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
}

.section-label {
    margin: 0 0 15px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--grey);
    letter-spacing: .1996px;
    font-weight: 400;
}
.products {
    width: 1281px;
    height: 1023px;
    margin: 65px auto 0;
}
.product-block {
    width: 1255px;
    margin-bottom: 50px;
}
.section-head {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.section-head.compact { height: 47px; }
.h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 48px;
    letter-spacing: .3516px;
    color: var(--title);
    font-weight: 600;
}
.btn {
    min-height: 60px;
    padding: 18px 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -.3125px;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
    text-decoration: none;
}
.btn.dark { background: var(--title); color: #fff; }
.btn.yellow { background: var(--yellow); color: var(--blue); }
.btn.outline { border: 2px solid var(--line); color: #364153; }
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(32,35,68,.16);
}
.btn.dark:hover { background: #1f2348; }
.btn.yellow:hover { background: #ffd45f; }
.btn.outline:hover {
    border-color: var(--title);
    background: var(--title);
    color: #fff;
}
.product-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.product-card {
    height: 383.715px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.product-card .visual {
    height: 150px;
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    overflow: hidden;
}
.product-card .visual img {
    width: auto;
    max-width: 82%;
    max-height: 146px;
    object-fit: contain;
}
.product-card h3 {
    margin: 0;
    color: var(--blue);
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.12;
    min-height: 46px;
    position: relative;
    z-index: 1;
}
.product-card h3.tall { line-height: 1.25; }
.product-card .meta {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    flex: 1;
    margin-top: 18px;
}
.product-card .meta p {
    margin: 0;
    flex: 1;
    color: var(--grey);
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -.4395px;
}
.cart-btn {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--title);
    color: #fff;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.cart-btn.yellow { background: var(--yellow); color: var(--blue); }
.cart-btn img {
    width: 39px;
    height: auto;
}
.product-card .cart-btn {
    width: 60px;
    height: 60px;
}
.product-card .cart-btn img {
    width: 30px;
}
.gear-card .cart-btn {
    width: 48px;
    height: 48px;
}
.gear-card .cart-btn img {
    width: 24px;
}
.cart-btn.yellow img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(18%) saturate(1480%) hue-rotate(199deg) brightness(91%) contrast(92%);
}
.cart-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 24px rgba(32,35,68,.16);
}
.cart-btn.yellow:hover { background: #ffd45f; }
.arrow {
    position: absolute;
    top: 172px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 34px;
    line-height: 1;
    z-index: 2;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.arrow:hover {
    transform: scale(1.08);
    background: #1f2348;
    box-shadow: 0 10px 20px rgba(32,35,68,.16);
}
.arrow.left { left: -21px; }
.arrow.right { right: -21px; }

.event {
    width: 1280px;
    height: 532px;
    margin: 81px auto 0;
    background: var(--blue);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 640px 640px;
}
.event-copy {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 21px;
    color: #fff;
}
.eyebrow {
    margin: 0;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .1996px;
    text-transform: uppercase;
}
.split-title {
    margin: 0;
    font-size: 32px;
    line-height: 1;
    color: var(--yellow);
}
.split-title strong { font-family: var(--font-display); font-weight: 600; }
.split-title span { font-family: var(--font-serif); font-weight: 300; }
.event-copy p.desc {
    margin: 0;
    width: 520px;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -.4395px;
}
.event-image {
    transform: rotate(180deg) scaleY(-1);
    overflow: hidden;
    position: relative;
}
.event-image img {
    width: 136.3%;
    height: 109.4%;
    object-fit: cover;
    position: absolute;
    left: -22.24%;
    top: 0;
}

.needs {
    width: 1277px;
    min-height: 760px;
    margin: 100px auto 96px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.needs-left {
    width: 511px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.needs-left h2 { margin-top: 2px; }
.needs-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.needs-left .intro {
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 29.25px;
    color: var(--grey);
    letter-spacing: -.4395px;
}
.needs-cta {
    min-height: 52px;
    margin-top: 18px;
    padding: 14px 28px;
    font-weight: 600;
    justify-self: start;
}
.needs-left img {
    width: 523px;
    height: 430px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}
.needs-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 0;
}
.needs-grid .needs-cta {
    grid-column: 1;
    margin-top: 0;
}
.need-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 .5px rgba(0,0,0,.02), 0 0 .5px rgba(0,0,0,.13), 0 0 .5px rgba(0,0,0,.44);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.need-title {
    display: flex;
    align-items: center;
    gap: 0;
}
.need-num {
    width: 61.531px;
    color: #e5e7eb;
    font-family: var(--font-body);
    font-size: 40px;
    line-height: 60px;
    font-weight: 300;
    letter-spacing: .2637px;
    flex: 0 0 auto;
}
.need-card h3 {
    margin: 0;
    color: var(--title);
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: normal;
    font-weight: 500;
    letter-spacing: .3955px;
}
.need-card p {
    margin: 0;
    color: var(--grey);
    font-size: 16px;
    line-height: 29.25px;
    letter-spacing: -.4395px;
}
.tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
    border-radius: 20px;
    background: rgba(253,200,49,.22);
    color: var(--blue);
    padding: 2px 8px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .1996px;
    white-space: nowrap;
}

.gear {
    height: 872px;
    margin-top: 0;
    background: var(--soft);
    padding: 100px 67px 100px 92px;
}
.gear-inner { width: 1281px; }
.mixed-title {
    margin: 0;
    color: var(--blue);
    font-size: 32px;
    line-height: 1;
}
.mixed-title strong { font-family: var(--font-display); font-weight: 600; }
.mixed-title span { font-family: var(--font-serif); font-weight: 300; }
.gear .section-head { margin-bottom: 24px; }
.gear-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    width: 1281px;
}
.gear-card {
    height: 586px;
    max-width: 420px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 17.2px rgba(0,0,0,.08), 0 151px 21px rgba(0,0,0,0);
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.gear-card .visual {
    height: 372px;
    display: grid;
    place-items: center;
}
.gear-card .visual img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}
.gear-card h3 {
    margin: 0 0 16px;
    font-family: var(--font-serif);
    color: var(--blue);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
}
.gear-card .desc {
    margin: 0;
    color: var(--grey);
    opacity: .6;
    font-size: 16px;
    letter-spacing: -.4395px;
}
.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
}
.price {
    flex: 1;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
    color: var(--blue);
}
.badge {
    position: absolute;
    left: 20px;
    top: 20px;
    background: var(--green);
    color: var(--blue);
    border-radius: 20px;
    padding: 4px 8px 2px;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .1996px;
}

.guides {
    width: 1276px;
    height: 823.193px;
    margin: 149px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.guides .head-copy { display: flex; flex-direction: column; gap: 16px; }
.guide-sub {
    display: flex;
    align-items: center;
    gap: 10px;
}
.guide-sub p {
    flex: 1;
    margin: 0;
    color: var(--grey);
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -.4395px;
}
.guide-content {
    width: 1280px;
    display: flex;
    gap: 20px;
}
.article-card {
    width: 486.666px;
    height: 443.193px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10.1px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
}
.article-card img {
    width: 100%;
    height: 207.193px;
    object-fit: cover;
}
.article-body { padding: 0 20px; }
.article-title {
    height: 66px;
    margin: 0;
    overflow: hidden;
    color: var(--title);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -.4395px;
}
.article-body .excerpt {
    margin: 12px 0 0;
    color: var(--grey);
    font-size: 14px;
    line-height: 22.75px;
    letter-spacing: -.1504px;
}
.article-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    color: var(--title);
    font-size: 14px;
    line-height: 20px;
}
.article-author {
    color: #1a1a1a;
    line-height: 25.2px;
    font-weight: 500;
}
.article-date { color: var(--grey); line-height: 22.75px; }
.guide-card {
    flex: 1;
    background: rgba(217,81,82,.05);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 21px;
}
.guide-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 48px;
    color: var(--title);
}
.guide-card h3 strong { font-family: var(--font-display); }
.guide-card h3 span { font-family: var(--font-serif); font-weight: 300; }
.guide-card p {
    margin: 0;
    color: var(--grey);
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -.4395px;
}
.simulator {
    height: 202px;
    border-radius: 20px;
    background:
    radial-gradient(ellipse at 16% 0%, rgba(255,255,255,.12) 0 1px, transparent 2px),
    repeating-radial-gradient(ellipse at 12% 20%, rgba(255,255,255,.13) 0 1px, transparent 1px 46px),
    var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
}
.simulator h3 {
    margin: 0 0 4px;
    color: var(--yellow);
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 48px;
    letter-spacing: .3516px;
}
.simulator p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -.4395px;
}

.trust {
    width: 1314px;
    height: auto;
    margin: 100px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}
.brands {
    width: 1314px;
    height: 302px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 68px;
}
.brands h2 {
    margin: 0;
    text-align: center;
    font-size: 36px;
    line-height: 48px;
    color: var(--title);
    letter-spacing: .3516px;
}
.brands h2 strong { font-family: var(--font-display); }
.brands h2 span { font-family: var(--font-serif); font-weight: 300; }
.brands img {
    width: 1269.273px;
    height: 160px;
    object-fit: contain;
}
.dots {
    margin-top: -26px;
    display: flex;
    gap: 8px;
}
.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--blue);
}
.dot.active { background: var(--green); }
.reviews {
    width: 1303px;
    height: 307px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.reviews h2 {
    margin: 0;
    width: 1148px;
    text-align: center;
    color: var(--blue);
    font-size: 32px;
    line-height: 1;
}
.reviews h2 strong { font-family: var(--font-display); font-weight: 600; }
.reviews h2 span { font-family: var(--font-serif); font-weight: 300; }
.reviews-row {
    width: 1303px;
    display: flex;
    gap: 20px;
    overflow: visible;
}
.review-summary,
.review-card {
    width: 280px;
    height: 220px;
    flex: 0 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(7,4,146,.1), 0 24px 60px rgba(6,47,125,.05), 0 12px 24px rgba(27,59,119,.05);
    padding: 20px;
}
.review-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #000;
    text-align: center;
}
.review-summary h3 { margin: 0; font-family: var(--font-serif); font-size: 18px; line-height: 26px; }
.stars-big { display: flex; gap: 10px; }
.stars-big span {
    width: 40px;
    height: 40px;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 28px;
}
.trustpilot { color: #000; font-size: 16px; line-height: 26px; }
.trustpilot::before { content: "★"; color: var(--green); font-size: 24px; vertical-align: -2px; margin-right: 4px; }
.review-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    color: #000;
}
.stars-small {
    display: flex;
    gap: 1px;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
}
.stars-small span { width: 20px; height: 20px; background: var(--yellow); display: grid; place-items: center; }
.review-top { display: flex; align-items: flex-start; justify-content: space-between; height: 26px; }
.review-top em { font-style: normal; font-family: var(--font-body); font-size: 12px; line-height: 26px; }
.review-card h3 { margin: 0; font-weight: 700; font-size: 16px; line-height: 26px; color: #000; }
.review-card p { margin: 0; font-size: 14px; line-height: 22px; color: #000; }
.review-card hr { width: 60px; height: 1px; border: 0; background: #c4c4c4; margin: 0; }
.review-card b { font-size: 14px; line-height: 22px; }

.faq {
    width: 1024px;
    display: flex;
    align-items: flex-start;
}
.faq-left {
    width: 458px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-title {
    margin: 0;
    width: 486px;
    color: var(--blue);
    font-size: 36px;
    line-height: 48px;
    letter-spacing: .3516px;
}
.faq-title strong { display: block; font-family: var(--font-display); font-weight: 600; }
.faq-title span { display: block; font-family: var(--font-serif); font-weight: 300; }
.faq-left .btn { width: 156px; height: 56px; min-height: 56px; font-weight: 600; padding: 0 32px; }
.faq-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-q {
    width: 100%;
    min-height: 53px;
    border: 1px solid rgba(32,35,68,.2);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: var(--blue);
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.faq-q.open { border-color: rgba(217,81,82,.2); }
.faq-q:hover {
    border-color: rgba(32,35,68,.38);
    background: rgba(247,248,255,.65);
    transform: translateY(-1px);
}
.faq-answer {
    padding: 0 16px;
    color: var(--grey);
    font-size: 14px;
    line-height: 22.75px;
    letter-spacing: -.1504px;
}
.faq-answer p { margin: 0; }
.faq-answer ul { margin: 0; padding-left: 21px; }
.faq-answer li { margin: 0; }
.faq-answer strong { font-weight: 600; }

.footer {
    min-height: 582px;
    height: auto;
    margin-top: 72px;
    background: var(--blue);
    color: #cbcbcb;
    padding: 70px 35px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.footer-inner { width: 1345.12px; display: flex; flex-direction: column; gap: 21px; }
.footer-top { display: flex; gap: 40px; padding-bottom: 17px; border-bottom: 1px solid var(--yellow); }
.footer-brand { width: 177px; display: flex; flex-direction: column; gap: 32px; }
.footer-brand .footer-logo {
    width: 146px;
    height: 52px;
    object-fit: contain;
}
.footer-brand p, .foot-col p, .notice p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -.1504px;
}
.foot-cols { flex: 1; display: flex; gap: 40px; }
.foot-col { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.foot-col h3 {
    margin: 0;
    color: var(--yellow);
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
}
.foot-links { display: flex; flex-direction: column; gap: 4px; }
.foot-links p {
    cursor: pointer;
    transition: color .2s ease, opacity .2s ease;
}
.foot-links p:hover {
    color: #fff;
    opacity: 1;
}
.minor-warning {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
}
.notice {
    height: 63px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.notice-icon { color: var(--green); font-size: 22px; }
.socials {
    width: 488px;
    max-width: 100%;
    margin: -5px auto 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.socials img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.social {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
}
.accessibility {
    position: fixed;
    right: 8px;
    bottom: 0;
    width: 24px;
    height: 24px;
    border-radius: 12px 12px 0 0;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    z-index: 10;
}

.pdp-shell a {
    text-decoration: none;
}

.pdp-wishlist-yith a.yith-wcwl-add-to-wishlist-button svg {
    display: none;
}

.pdp-wishlist-yith a.yith-wcwl-add-to-wishlist-button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    -webkit-text-stroke: 1.2px currentColor;
}

.pdp-wishlist-yith a.yith-wcwl-add-to-wishlist-button:hover::before {
    color: #00a29b;
}

.pdp-actions .pdp-wishlist-yith .yith-add-to-wishlist-button-block {
    margin: 0;
}

.pdp-buy.woocommerce-variation-add-to-cart.variations_button button.pdp-cart.single_add_to_cart_button::before {
    content: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
    background-color: #00a29b;
    color: #fff;
}

/* .pdp-buy button.pdp-cart.single_add_to_cart_button.button.alt:hover {
    background-color: var(--yellow) !important;
    color: var(--blue) !important;
} */

tr.woocommerce-cart-form__cart-item.cart_item span.bpx-cart-wishlist a.yith-wcwl-add-to-wishlist-button::before {
    content: unset;
}

@media (max-width: 1180px) {
    body { min-width: 0; }
    .page {
    width: 100%;
    max-width: 1440px;
    }
    .topbar {
    padding: 0 24px;
    gap: 18px;
    }
    .topbar-left,
    .topbar-right {
    gap: 12px;
    }
    .topbar-search {
    flex-basis: 340px;
    }
    .mainnav {
    padding: 6px 24px;
    gap: 12px;
    }
    .navlinks {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    }
    .navlinks::-webkit-scrollbar { display: none; }
    .nav-item { flex: 0 0 auto; }
    .navlink { padding: 8px 12px; }
    .mega-menu {
    left: 24px;
    right: 24px;
    grid-template-columns: 240px 1fr 230px;
    gap: 22px;
    }
    .hero,
    .benefits,
    .products,
    .event,
    .needs,
    .gear-inner,
    .guides,
    .trust,
    .brands,
    .reviews,
    .reviews-row,
    .footer-inner {
    width: calc(100% - 48px);
    }
    .hero {
    height: auto;
    min-height: 0;
    padding: 24px;
    }
    .hero-main { width: 58%; min-height: 440px; }
    .benefits {
    height: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 20px;
    }
    .benefit { width: auto; }
    .flavor-row {
    width: calc(100% - 48px);
    gap: 24px;
    }
    .flavor-icons {
    left: 0;
    width: 100%;
    }
    .product-block,
    .gear-grid,
    .guide-content {
    width: 100%;
    }
    .product-grid,
    .gear-grid {
    gap: 28px;
    }
    .event {
    grid-template-columns: 1fr 1fr;
    }
    .event-copy p.desc { width: auto; }
    .needs {
    gap: 36px;
    }
    .needs-left { width: 42%; }
    .needs-grid { gap: 18px; }
    .gear { padding-left: 24px; padding-right: 24px; }
    .gear-card { max-width: none; }
    .brands img {
    width: 100%;
    }
    .reviews h2,
    .faq,
    .faq-title {
    width: 100%;
    }
    .footer-top,
    .foot-cols {
    gap: 24px;
    }
}

@media (max-width: 900px) {
    body {
    min-width: 0;
    overflow-x: hidden;
    }
    /* main {
    padding-top: 152px;
    } */
    .page {
    width: 100%;
    overflow: hidden;
    }
    .topbar {
    height: auto;
    min-height: 44px;
    padding: 8px 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 12px;
    overflow: visible;
    }
    .topbar-left {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    }
    .topbar-left::-webkit-scrollbar { display: none; }
    .topbar-search {
    order: 3;
    flex: 1 0 100%;
    height: 34px;
    }
    .topbar-right {
    order: 2;
    gap: 10px;
    margin-left: auto;
    }
    .toplink {
    flex: 0 0 auto;
    font-size: 13px;
    }
    .topbar-right > .toplink:not(.cart) {
    display: none;
    }
    .top-icon {
    width: 30px;
    height: 30px;
    }
    .mainnav {
    height: auto;
    padding: 10px 16px 12px;
    flex-wrap: wrap;
    gap: 10px 12px;
    align-items: center;
    position: relative;
    z-index: 5;
    background: rgba(255,255,255,.96);
    }
    .logo {
    width: 112px;
    height: auto;
    }
    .menu-toggle {
    order: 2;
    display: inline-flex;
    margin-left: 0;
    }
    .lang {
    order: 1;
    width: auto;
    margin-left: auto;
    }
    .lang button {
    height: 32px;
    font-size: 14px;
    }
    .navlinks {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    height: auto;
    display: none;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 118px);
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 44px rgba(17,17,49,.14);
    color: var(--blue);
    }
    .mainnav.is-open .navlinks {
    display: flex;
    }
    .nav-item {
    width: 100%;
    height: auto;
    display: block;
    }
    .navlink {
    width: 100%;
    justify-content: space-between;
    padding: 9px 13px;
    background: #f5f8fc;
    font-size: 14px;
    }
    .chev {
    display: inline-flex;
    transform: rotate(-90deg);
    transition: transform .16s ease;
    }
    .nav-item.is-subopen .chev {
    transform: rotate(0deg);
    }
    .mega-menu {
    position: static;
    display: none;
    min-height: 0;
    padding: 10px 4px 2px;
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    }
    .nav-item.is-subopen .mega-menu {
    display: grid;
    }
    .mega-menu::before,
    .mega-intro,
    .mega-card,
    .mega-note {
    display: none;
    }
    .mega-grid,
    .mega-grid.two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    }
    .mega-col,
    .mega-col.wide {
    grid-column: auto;
    padding: 0;
    }
    .mega-heading {
    margin: 8px 10px 3px;
    font-size: 11px;
    }
    .mega-link {
    min-height: 31px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 13px;
    background: rgba(245,248,252,.72);
    }

    .hero {
    width: 100%;
    height: auto;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    }
    .hero-main {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.55;
    }
    .hero-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    }
    .hero-side-card {
    min-height: 0;
    aspect-ratio: 1.65;
    }

    .benefits {
    width: calc(100% - 32px);
    height: auto;
    margin: 28px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
    }
    .benefit {
    width: auto;
    }
    .benefit h3 {
    font-size: 18px;
    }
    .benefit p {
    font-size: 13px;
    }

    .flavors {
    height: auto;
    margin-top: 36px;
    padding: 38px 16px 42px;
    }
    .flavors-title,
    .mixed-title,
    .split-title {
    font-size: 28px;
    }
    .flavor-row {
    width: 100%;
    height: auto;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 14px;
    }
    .flavor-icons {
    display: none;
    }
    .flavor-bubble {
    width: 82px;
    height: 82px;
    margin-bottom: 12px;
    opacity: 1;
    font-size: 24px;
    }
    .flavor p {
    font-size: 16px;
    line-height: 1.25;
    }

    .products {
    width: calc(100% - 32px);
    height: auto;
    margin: 42px auto 0;
    }
    .product-block {
    width: 100%;
    margin-bottom: 42px;
    }
    .section-head,
    .section-head.compact {
    height: auto;
    gap: 16px;
    align-items: flex-start;
    }
    .h2 {
    font-size: 30px;
    line-height: 1.12;
    }
    .btn {
    min-height: 48px;
    padding: 13px 22px;
    font-size: 15px;
    }
    .product-grid,
    .gear-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    }
    .product-card {
    height: auto;
    min-height: 360px;
    padding: 18px;
    }
    .product-card .visual {
    height: 132px;
    flex-basis: 132px;
    margin-bottom: 20px;
    }
    .product-card .visual img {
    max-height: 126px;
    }
    .product-card h3 {
    font-size: 18px;
    min-height: auto;
    }
    .product-card .meta {
    gap: 14px;
    }
    .product-card .meta p {
    font-size: 15px;
    line-height: 1.55;
    }
    .cart-btn {
    width: 60px;
    height: 60px;
    }
    .cart-btn img {
    width: 31px;
    }
    .arrow { display: none; }

    .event {
    width: calc(100% - 32px);
    height: auto;
    margin: 54px auto 0;
    grid-template-columns: 1fr;
    }
    .event-copy {
    padding: 34px 28px;
    }
    .event-image {
    height: 300px;
    }
    .event-image img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .needs {
    width: calc(100% - 32px);
    min-height: 0;
    margin: 58px auto 64px;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    }
    .needs-left {
    width: 100%;
    height: auto;
    gap: 18px;
    }
    .needs-left .intro {
    font-size: 16px;
    line-height: 1.55;
    }
    .needs-left img {
    width: 100%;
    height: clamp(250px, 48vw, 360px);
    object-position: center;
    }
    .needs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
    }
    .need-card {
    padding: 20px;
    }
    .need-card h3 {
    font-size: 21px;
    }
    .need-card p {
    font-size: 15px;
    line-height: 1.55;
    }

    .gear {
    height: auto;
    margin-top: 58px;
    padding: 54px 16px;
    }
    .gear-inner,
    .gear-grid {
    width: 100%;
    }
    .gear-card {
    height: auto;
    min-height: 470px;
    }
    .gear-card .visual {
    height: 250px;
    }
    .price {
    font-size: 30px;
    }

    .guides {
    width: calc(100% - 32px);
    height: auto;
    margin: 58px auto 0;
    }
    .guide-sub {
    align-items: flex-start;
    flex-direction: column;
    }
    .guide-sub p,
    .guide-card p,
    .simulator p {
    font-size: 16px;
    line-height: 1.55;
    }
    .guide-content {
    width: 100%;
    flex-direction: column;
    }
    .article-card {
    width: 100%;
    height: auto;
    }
    .guide-card {
    padding: 34px 28px;
    }
    .guide-card h3 {
    line-height: 1.15;
    }
    .simulator {
    height: auto;
    padding: 34px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    }
    .simulator h3 {
    line-height: 1.15;
    }

    .trust {
    width: calc(100% - 32px);
    height: auto;
    margin: 64px auto 0;
    gap: 58px;
    }
    .brands,
    .reviews,
    .reviews-row,
    .faq {
    width: 100%;
    height: auto;
    }
    .brands {
    gap: 30px;
    }
    .brands h2,
    .reviews h2,
    .faq-title {
    width: 100%;
    font-size: 28px;
    line-height: 1.15;
    }
    .brands img {
    width: 100%;
    height: auto;
    }
    .reviews-row {
    overflow-x: auto;
    padding: 4px 4px 18px;
    scrollbar-width: thin;
    }
    .review-summary,
    .review-card {
    width: 260px;
    }
    .faq {
    flex-direction: column;
    gap: 18px;
    }
    .faq-left {
    width: 100%;
    padding: 0;
    }

    .footer {
    height: auto;
    margin-top: 70px;
    padding: 52px 16px 24px;
    }
    .footer-inner {
    width: 100%;
    }
    .footer-top {
    flex-direction: column;
    gap: 28px;
    }
    .footer-brand {
    width: 100%;
    gap: 18px;
    }
    .foot-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    }
    .notice {
    height: auto;
    align-items: flex-start;
    padding: 18px;
    }
    .socials {
    width: min(100%, 360px);
    padding: 4px 0 0;
    }
}

@media (max-width: 560px) {
    .topbar {
    font-size: 12px;
    }
    .topbar-left .toplink {
    font-size: 12px;
    padding-inline: 4px;
    }
    .topbar-left .toplink:nth-child(3) {
    display: none;
    }
    .topbar-search input {
    font-size: 13px;
    }
    .mainnav {
    padding-inline: 14px;
    }
    .logo {
    width: 104px;
    }
    .hero {
    padding: 12px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    }
    .hero::-webkit-scrollbar { display: none; }
    .hero-main {
    flex: 0 0 calc(100vw - 24px);
    aspect-ratio: 1.02;
    scroll-snap-align: start;
    }
    .hero-side {
    display: contents;
    }
    .hero-side-card {
    flex: 0 0 calc(100vw - 24px);
    aspect-ratio: 1.7;
    scroll-snap-align: start;
    }
    .benefits {
    grid-template-columns: 1fr;
    }
    .benefit {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
    align-items: start;
    }
    .benefit img {
    grid-row: span 2;
    margin: 0;
    }
    .flavors-title,
    .h2,
    .mixed-title,
    .split-title,
    .brands h2,
    .reviews h2,
    .faq-title {
    font-size: 26px;
    }
    .flavor-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .section-head,
    .section-head.compact {
    flex-direction: column;
    }
    .needs-grid {
    grid-template-columns: 1fr;
    }
    .product-grid,
    .gear-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: -12px;
    padding: 4px 12px 18px;
    }
    .product-grid::-webkit-scrollbar,
    .gear-grid::-webkit-scrollbar {
    display: none;
    }
    .product-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 0;
    scroll-snap-align: start;
    }
    .product-card .meta {
    align-items: center;
    }
    .event-copy,
    .guide-card,
    .simulator {
    padding: 28px 22px;
    }
    .event-image {
    height: 240px;
    }
    .needs-left img {
    height: 220px;
    }
    .needs-cta {
    width: 100%;
    }
    .gear-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 0;
    scroll-snap-align: start;
    }
    .gear-card .visual {
    height: 230px;
    }
    .guide-card .btn,
    .simulator .btn {
    width: 100%;
    text-align: center;
    }
    .reviews-row {
    margin-inline: -16px;
    width: calc(100% + 32px);
    padding-left: 16px;
    }
    .review-summary,
    .review-card {
    width: 250px;
    }
    .faq-q {
    font-size: 15px;
    }
    .foot-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
    }
    .footer {
    padding-top: 38px;
    }
    .footer-brand p {
    display: none;
    }
    .foot-col {
    gap: 7px;
    }
    .foot-col h3 {
    font-size: 17px;
    line-height: 1.25;
    }
    .foot-links {
    gap: 3px;
    }
    .foot-links p {
    font-size: 12px;
    line-height: 1.28;
    }
    .notice {
    font-size: 13px;
    padding: 14px;
    }
    .notice p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    }
}


/* Product page */
.product-page main.pdp-main {
    padding-top: 108px;
}
.pdp-shell {
    width: 1280px;
    margin: 0 auto;
    padding: 20px 0 0px;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

/* .tax-product_cat .woocommerce-archive-wrapper {
    padding-top: 35px;
}  */

.pdp-hero {
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(380px, 1fr);
    gap: 94px;
    align-items: start;
}
.pdp-media {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}
.pdp-gallery-card {
    min-height: 600px;
    border: 1px solid rgba(194,200,194,.34);
    border-radius: 12px;
    background: #fff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.bpa-product-gallery--placeholder {
    border-style: dashed;
    background: #f7f8fa;
    color: #1f2933;
    font-size: 14px;
    text-align: center;
}
.pdp-badges {
    position: absolute;
    left: 24px;
    top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}
.pdp-badge {
    border-radius: 999px;
    background: var(--green);
    color: var(--blue);
    padding: 5px 12px 4px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
}
.pdp-gallery-image {
    width: min(100%, 470px);
    max-height: 470px;
    object-fit: contain;
    margin: auto;
}
.bpa-product-gallery__slider {
    width: 100%;
}
.bpa-product-gallery__slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}
.bpa-product-gallery__slider.slick-initialized .slick-track {
    display: flex;
    align-items: center;
}
.bpa-product-gallery__slider.slick-initialized .slick-slide {
    height: auto;
}
.bpa-product-gallery__slider .slick-prev,
.bpa-product-gallery__slider .slick-next {
    z-index: 2;
}
.pdp-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}
.pdp-thumb {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--blue);
    opacity: .95;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease;
}
.pdp-thumb.is-active {
    background: var(--green);
    transform: scale(1.08);
}
.pdp-details {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* border-top: 1px solid rgba(74, 85, 101, .2); */
}
.pdp-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}
.pdp-brand {
    color: #000;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.pdp-rating {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--grey);
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    text-decoration: none;
    white-space: nowrap;
}
.trustpilot-logo {
    position: relative;
    width: 83px;
    height: 18px;
    overflow: hidden;
    display: inline-block;
    flex: 0 0 auto;
    transform: translateY(-3px);
}
.trustpilot-logo img {
    position: absolute;
    left: -5px;
    top: -2px;
    width: 94px;
    height: auto;
    max-width: none;
    display: block;
    transform: none;
}
.pdp-stars {
    color: #00b67a;
    letter-spacing: 1px;
    line-height: 16px;
    text-decoration: none;
}
.pdp-review-text {
    line-height: 16px;
    text-decoration: underline;
}
body.reviews-open {
    overflow: hidden;
}
.reviews-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(28, 30, 62, .58);
}
.reviews-modal.is-open {
    display: flex;
}
.reviews-dialog {
    width: min(620px, 100%);
    max-height: min(720px, calc(100vh - 48px));
    overflow: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(28, 30, 62, .28);
    padding: 28px;
    color: var(--blue);
}
.reviews-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}
.reviews-kicker {
    margin: 0 0 6px;
    color: #00b67a;
    font-size: 13px;
    line-height: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.reviews-title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 1.08;
    font-weight: 650;
}
.reviews-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 auto;
}
.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--grey);
    font-size: 14px;
    font-weight: 700;
}
.reviews-summary-stars,
.review-stars {
    color: #00b67a;
    letter-spacing: 1px;
}
.review-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
}
.review-card {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(31, 34, 68, .12);
    border-radius: 8px;
    padding: 16px;
    background: #fbfcfd;
}
.review-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}
.review-card p {
    margin: 0;
    color: var(--grey);
    font-size: 14px;
    line-height: 1.5;
}
@media (max-width: 640px) {
    .reviews-modal {
    padding: 14px;
    }
    .reviews-dialog {
    padding: 22px;
    }
    .reviews-title {
    font-size: 24px;
    }
}
.pdp-title {
    margin: 0 0 22px;
    color: var(--blue);
    font-family: var(--font-serif);
    font-size: 42px;
    line-height: 1.06;
    font-weight: 520;
    letter-spacing: -.35px;
}
.pdp-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 46px;
}
.pdp-price {
    color: #1a1c1c;
    font-family: var(--font-serif);
    font-size: 34px;
    line-height: 40px;
    font-weight: 650;
}
.pdp-unit {
    color: var(--grey);
    font-size: 16px;
    line-height: 24px;
}
.pdp-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 46px;
}
.pdp-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pdp-label {
    flex: 0 0 auto;
    color: #1a1c1c;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}
.pdp-select-wrap {
    flex: 1;
    min-width: 160px;
    position: relative;
}
.pdp-select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #c2c8c2;
    border-radius: 999px;
    background: #fff;
    color: var(--grey);
    padding: 0 42px 0 18px;
    font: inherit;
    font-size: 14px;
    appearance: none;
    outline: none;
    cursor: pointer;
}
.pdp-select-wrap::after {
    content: "⌄";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-52%);
    color: var(--grey);
    pointer-events: none;
}
.pdp-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1c1c;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}
.pdp-stock-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
}
.pdp-stock.is-out-of-stock .pdp-stock-dot {
    background: #d9534f;
}
.bpa-pdp-cart-form .single_variation {
    display: none !important;
}
.pdp-variation-price {
    margin-bottom: 14px;
    color: var(--blue);
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 650;
}
.pdp-variation-price:empty {
    display: none;
}
.pdp-booster {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1c1c;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-align: left;
    background-color: #00a29b38;
    border: 1px solid #00A29B;
    border-radius: 5px;
    padding: 20PX;
}
button.pdp-booster:hover {
    color: initial;
    background-color: initial;
}
.pdp-switch {
    width: 36px;
    height: 20px;
    border-radius: 20px;
    background: #aaa;
    position: relative;
    flex: 0 0 auto;
    transition: background-color .18s ease;
}
.pdp-switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    transition: transform .18s ease;
}
.pdp-booster.is-active .pdp-switch {
    background: var(--green);
}
.pdp-booster.is-active .pdp-switch::after {
    transform: translateX(16px);
}
.pdp-buy {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}
.pdp-qty-label {
    color: var(--blue);
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 650;
    white-space: nowrap;
}
.pdp-qty {
    width: 128px;
    height: 48px;
    border: 1px solid #c2c8c2;
    border-radius: 999px;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex: 0 0 auto;
    background: #fff;
}
.pdp-qty button {
    width: 38px;
    height: 100%;
    color: #1a1c1c;
    font-size: 18px;
    transition: background-color .18s ease;
    background-color: #fff;
    padding: 0;
}
.pdp-qty button:hover, .pdp-format-actions .pdp-qty button:focus {
    background: #f5f8fc;
    color: initial;
}
.pdp-qty-value {
    flex: 1;
    text-align: center;
    color: #1a1c1c;
    font-size: 14px;
    font-weight: 600;
}
.pdp-cart {
    flex: 1;
    min-height: 48px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.31px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.pdp-actions {
    min-width: 0;
    display: flex;
    flex: 1;
    align-items: center;
    gap: 12px;
}
.pdp-wishlist {
    width: 48px;
    height: 48px;
    border: 2px solid var(--green);
    border-radius: 50%;
    background: #fff;
    color: var(--green);
    display: flex;
    flex: 0 0 48px;
    place-items: center;
    font-family: Arial, sans-serif;
    font-size: 30px;
    line-height: 1;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
    justify-content: center;
    align-items: center;
}
.pdp-wishlist:hover {
    transform: translateY(-2px);
    border-color: #d94f70;
    background: #fff;
    color: #d94f70;
}
.pdp-wishlist.is-active {
    background: #fff;
    border-color: #d94f70;
    color: #d94f70;
}
.pdp-wishlist-yith {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}
.pdp-wishlist-yith .yith-wcwl-add-to-wishlist {
    margin: 0;
}
.pdp-wishlist-yith a,
.pdp-wishlist-yith .add_to_wishlist,
.pdp-wishlist-yith .yith-wcwl-wishlistaddedbrowse a,
.pdp-wishlist-yith .yith-wcwl-wishlistexistsbrowse a {
    width: 48px;
    height: 48px;
    border: 2px solid var(--green);
    border-radius: 50%;
    background: #fff;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-indent: -999px;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.pdp-wishlist-yith a::before,
.pdp-wishlist-yith .add_to_wishlist::before {
    content: "";
    text-indent: 0;
    width: 25px;
    height: 25px;
    background-color: var(--green);
    -webkit-mask: url("../images/iconoir-heart.svg") center / contain no-repeat;
    mask: url("../images/iconoir-heart.svg") center / contain no-repeat;
}
.pdp-wishlist-yith a:hover,
.pdp-wishlist-yith .add_to_wishlist:hover {
    transform: translateY(-2px);
    border-color: #d94f70;
    background: #fff;
    color: #d94f70;
}
.pdp-wishlist-yith a:hover::before,
.pdp-wishlist-yith .add_to_wishlist:hover::before {
    background-color: #d94f70;
    -webkit-mask-image: url("../images/iconoir-heart-filled.svg");
    mask-image: url("../images/iconoir-heart-filled.svg");
}
.pdp-wishlist-yith .yith-wcwl-wishlistaddedbrowse a,
.pdp-wishlist-yith .yith-wcwl-wishlistexistsbrowse a,
.pdp-wishlist-yith .yith-wcwl-add-to-wishlist-button--added,
.pdp-wishlist-yith .added_to_wishlist {
    background: #fff;
    border-color: #d94f70;
    color: #d94f70;
}
.pdp-wishlist.is-active::before,
.pdp-wishlist-yith .yith-wcwl-wishlistaddedbrowse a::before,
.pdp-wishlist-yith .yith-wcwl-wishlistexistsbrowse a::before,
.pdp-wishlist-yith .yith-wcwl-add-to-wishlist-button--added::before,
.pdp-wishlist-yith .added_to_wishlist::before {
    background-color: #d94f70;
    -webkit-mask-image: url("../images/iconoir-heart-filled.svg");
    mask-image: url("../images/iconoir-heart-filled.svg");
}
.pdp-cart:hover {
    transform: translateY(-2px);
    background: var(--yellow);
    color: var(--blue);
    box-shadow: 0 12px 24px rgba(253, 200, 49, .24);
}
.pdp-cart img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.pdp-cart:hover img {
    filter: none;
}
.pdp-certifications {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    margin: 18px 0 0;
}
.pdp-certifications img {
    display: block;
    width: auto;
    height: auto;
    max-height: 150px;
    max-width: none;
    object-fit: contain;
}
.pdp-certifications.pdp-certifications--three-active {
    justify-content: space-between;
}
.bpa-product-certificate--placeholder {
    min-height: 90px;
    border: 1px dashed #c2ccd6;
    border-radius: 12px;
    background: #f7f8fa;
    color: #1f2933;
    justify-content: center;
    padding: 20px;
    font-size: 14px;
    text-align: center;
}
.pdp-certifications .cert-france {
    width: 150px;
}
.pdp-certifications .cert-nvp {
    width: 120px;
}
.pdp-certifications .cert-afnor {
    width: 140px;
    filter: invert(1);
}
.pdp-reassurance {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 0;
}
.pdp-reassurance-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    border-bottom: 0;
}
.pdp-reassurance-item img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    grid-row: span 2;
}
.pdp-reassurance-item h3 {
    margin: 0;
    color: var(--blue);
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 650;
}
.pdp-reassurance-item p {
    margin: 0;
    color: var(--grey);
    font-size: 14px;
    line-height: 1.45;
    font-family: "Myriad Pro", "Myriad Pro Regular", Arial, sans-serif;
}
.pdp-reassurance-item h3,
.pdp-reassurance-item p {
    min-width: 0;
    width: 100%;
}
.pdp-body {
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(380px, 1fr);
    gap: 94px;
    align-items: start;
}
.pdp-description,
.pdp-side,
.pdp-related,
.pdp-guides,
.pdp-categories {
    min-width: 0;
}
.pdp-categories {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pdp-categories p {
    margin: 0;
    color: var(--grey);
    font-size: 18px;
    line-height: 29.25px;
}
.pdp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pdp-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: #364153;
    padding: 7px 12px;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}
.pdp-tag:hover {
    border-color: var(--blue);
    background: #f5f8fc;
    color: var(--blue);
}
.pdp-description {
    color: var(--grey);
    font-size: 18px;
    line-height: 29.25px;
}
.pdp-description h2,
.pdp-side-title,
.pdp-section-title {
    margin: 0;
    color: var(--blue);
    font-family: var(--font-serif);
    font-weight: 600;
}
.pdp-description h2 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}
.pdp-description p {
    margin: 0 0 16px;
}
.pdp-description ul {
    margin: 0;
    padding-left: 24px;
}
.pdp-description li {
    margin: 0 0 8px;
}
.pdp-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pdp-details > .pdp-side {
    margin-top: 28px;
}
.pdp-side-title {
    font-size: 22px;
    line-height: 1.25;
}
.pdp-format-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pdp-slider-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pdp-slider-dot {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: transparent;
    font-size: 0;
    line-height: 0;
    opacity: 1;
    transition: background-color .2s ease;
    padding: 0;
}
.pdp-slider-dot.is-active {
    flex-basis: 16px;
    background: var(--green);
    opacity: 1;
}
.pdp-format-card {
    min-height: 86px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 17.2px rgba(0,0,0,.08), 0 151px 21px rgba(0,0,0,0);
    display: grid;
    grid-template-columns: 62px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
}
.pdp-format-card img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    background: #f6f6f6;
    border-radius: 5px;
}
.pdp-format-name {
    color: var(--blue);
    font-family: var(--font-serif);
    font-size: 14px;
    line-height: 1.28;
    font-weight: 600;
}
.pdp-format-price {
    display: block;
    margin-top: 3px;
    color: #1a1c1c;
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 700;
}
.pdp-format-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pdp-format-actions .pdp-qty {
    width: 70px;
    height: 30px;
}
.pdp-format-actions .pdp-qty button {
    width: 22px;
    font-size: 14px;
}
.pdp-mini-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--title);
    display: flex;
    place-items: center;
    transition: transform .2s ease, box-shadow .2s ease;
    justify-content: center;
    align-items: center;
}
.pdp-mini-cart:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 24px rgba(32,35,68,.16);
}
.pdp-mini-cart img {
    width: 20px;
    height: auto;
    filter: none;
    background: transparent;
    border-radius: 0;
}
.pdp-mini-cart-icon {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}
.pdp-related {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.pdp-section-title {
    font-size: 32px;
    line-height: 1.15;
}
.pdp-section-title strong {
    font-family: var(--font-display);
    font-weight: 600;
}
.pdp-section-title span {
    font-family: var(--font-serif);
    font-weight: 300;
}
.pdp-related-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.pdp-related-grid.slick-initialized {
    display: block;
}
/* .pdp-related-grid.slick-initialized .slick-track {
    display: flex;
    gap: 48px;
} */
.pdp-related-grid.slick-initialized .slick-slide {
    height: inherit;
}
.js-pdp-related-add-to-cart.is-loading,
.js-bpa-ajax-add-to-cart.is-loading {
    opacity: 0.6;
    pointer-events: none;
}
a.added_to_cart.wc-forward {
    display: none;
}
.pdp-related-card {
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-card);
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 30px;
}
.pdp-related-visual {
    height: 150px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
}
.pdp-related-visual img {
    max-width: 82%;
    max-height: 146px;
    object-fit: contain;
}
.pdp-related-card h3 {
    margin: 0;
    min-height: 46px;
    color: var(--blue);
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.12;
    font-weight: 600;
}
.pdp-related-card h3 a {
    color: inherit;
    text-decoration: none;
}
.pdp-related-meta {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    flex: 1;
    margin-top: 0;
}
.pdp-related-meta p {
    margin: 0;
    color: var(--grey);
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -.4395px;
}
.pdp-related-info {
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
}
.pdp-related-price {
    margin-top: auto;
    color: var(--blue);
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 1;
    font-weight: 650;
    white-space: nowrap;
}
.pdp-related-card .cart-btn {
    width: 48px;
    height: 48px;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pdp-related-card .cart-btn img,
.pdp-related-card .cart-btn svg {
    width: 16px;
    height: 16px;
}
.pdp-accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(74,85,101,.2);
}
.bpa-product-details--placeholder {
    min-height: 90px;
    border: 1px dashed #c2ccd6;
    border-radius: 12px;
    background: #f7f8fa;
    color: #1f2933;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 14px;
    text-align: center;
}
.pdp-accordion-item {
    border-bottom: 1px solid rgba(74,85,101,.2);
}
.pdp-accordion-button {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--grey);
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
    transition: color .18s ease;
    background-color: #fff;
    padding: unset;
}
.pdp-accordion-button:hover, .pdp-accordion-button:focus {
    color: var(--blue);
    background-color: #fff;
}
.pdp-accordion-panel {
    display: none;
    padding: 0 0 20px;
    color: var(--grey);
    font-size: 16px;
    line-height: 1.55;
}
.pdp-accordion-item.is-open .pdp-accordion-panel {
    display: block;
}
.pdp-accordion-icon {
    transition: transform .18s ease;
}
.pdp-accordion-item.is-open .pdp-accordion-icon {
    transform: rotate(180deg);
}
.pdp-guides {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pdp-guides-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}
.pdp-eyebrow {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .2px;
}
.pdp-guides-subtitle {
    margin: 10px 0 0;
    color: var(--grey);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}
.pdp-guide-grid {
    display: grid;
    grid-template-columns: 487px 1fr;
    gap: 20px;
    align-items: stretch;
}
.pdp-guide-card {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,.06);
    overflow: hidden;
}
.pdp-guide-card img {
    width: 100%;
    aspect-ratio: 456 / 194;
    object-fit: cover;
}
.pdp-guide-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pdp-guide-body h3 {
    margin: 0;
    color: var(--title);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}
.pdp-guide-body p {
    margin: 0;
    color: var(--grey);
    font-size: 14px;
    line-height: 22.75px;
}
.pdp-guide-foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--grey);
    font-size: 14px;
}
.pdp-download {
    border-radius: 20px;
    background: rgba(217,81,82,.05);
    padding: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}
.pdp-download h3 {
    margin: 0;
    color: var(--title);
    font-size: 28px;
    line-height: 1.2;
    font-family: var(--font-serif);
    font-weight: 300;
}
.pdp-download h3 strong {
    font-family: var(--font-display);
    font-weight: 700;
}
.pdp-download p {
    margin: 0;
    color: var(--grey);
    font-size: 18px;
    line-height: 29.25px;
}
.pdp-simulator {
    border-radius: 20px;
    background: var(--blue);
    padding: 52px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}
.pdp-simulator h3 {
    margin: 0 0 4px;
    color: var(--yellow);
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}
.pdp-simulator p {
    margin: 0;
    max-width: 720px;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -.44px;
}
.bpa-product-gallery__slider ul.slick-dots li {
    margin: 0;
}
.bpa-product-gallery__slider ul.slick-dots li.slick-active button::before {
    color: #00a29b;
}

.bpa-product-gallery__slider ul.slick-dots li button::before {
    color: #202344;
    font-size: 14px;
    opacity: 1;
}

aside.pdp-side.bpa-other-format a {
    font-family: var(--font-serif);
    font-size: 14px;
    line-height: 1.28;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

.single-product .article-foot div {
    color: #4a5565 !important;
    line-height: 1.3em;
}

.single-product .article-foot a {
    color: #4a5565;
}

article.article-card.vdlv-article-list__item .article-title a {
    color: #2e3156;
    font-size: 18px;
    font-weight: 600;
}

.pdp-related-info p {
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 58px;
}

section.pdp-related .slick-arrow::before {
    color: #2e3156;
    font-size: 40px;
    opacity: 1;
}

section.pdp-related .slick-prev {
    left: 0;
    z-index: 9;
}

section.pdp-related .slick-next {
    right: 30px;
}

.pdp-buy button.single_add_to_cart_button.button.alt {
    display: flex;
    justify-content: flex-start;
}

.pdp-buy button.single_add_to_cart_button.button::before {
    content: none;
}

@media (max-width: 1180px) {
    .pdp-shell {
        width: calc(100% - 48px);
    }
    .pdp-hero {
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
        gap: 42px;
    }
    .pdp-body {
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
        gap: 42px;
    }
    .pdp-title {
        font-size: 36px;
    }
    .pdp-related-grid {
        gap: 28px;
    }
    .pdp-related-grid.slick-initialized .slick-track {
        gap: 28px;
    }
    .pdp-guide-grid {
        grid-template-columns: minmax(360px, 487px) 1fr;
    }

    .vdlv-article-list {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .product-page main.pdp-main {
        padding-top: 152px;
    }
    .pdp-shell {
        width: calc(100% - 32px);
        padding: 34px 0 58px;
        gap: 54px;
    }
    .pdp-body,
    .pdp-guide-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .pdp-hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .pdp-media,
    .pdp-details {
        display: contents;
    }
    .pdp-gallery-card {
        order: 1;
        width: 100%;
        min-height: 0;
        aspect-ratio: 1 / .92;
        margin-bottom: 32px;
        padding: 30px;
    }
    .pdp-gallery-image {
        max-height: 360px;
    }
    .pdp-meta {
        order: 2;
        margin-bottom: 14px;
    }
    .pdp-title {
        order: 3;
        font-size: 34px;
    }
    .pdp-price-row {
        order: 4;
    }
    .pdp-hero .bpa-pdp-cart-form {
        order: 5;
    }
    .pdp-certifications {
        order: 6;
    }
    .pdp-details > .pdp-side {
        order: 7;
        margin-top: 40px;
    }
    .pdp-reassurance {
        order: 8;
    }
    .pdp-description {
        order: 9;
        margin-top: 40px;
    }
    .pdp-form {
        order: initial;
    }
    .pdp-buy {
        order: initial;
    }
    .pdp-certifications {
        margin: 24px 0 0;
    }
    .pdp-price-row,
    .pdp-form {
        margin-bottom: 30px;
    }
    .pdp-reassurance {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        margin-top: 42px;
    }
    .pdp-reassurance-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        min-width: 0;
        padding: 0;
        border-bottom: 0;
    }
    .pdp-format-list {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 4px 4px 18px;
        margin-inline: -4px;
        scrollbar-width: none;
    }
    .pdp-format-list::-webkit-scrollbar {
        display: none;
    }
    .pdp-format-list.slick-initialized {
        display: block;
        width: 100%;
        min-width: 0;
        overflow: hidden;
        margin-inline: 0;
        padding: 0;
    }
    .pdp-format-list.slick-initialized .slick-list {
        width: 100%;
        height: auto !important;
        overflow: hidden;
    }
    /* .pdp-format-list.slick-initialized .slick-track {
        display: flex;
        width: 100%;
        gap: 0;
    } */
    .pdp-format-list.slick-initialized .slick-slide {
        display: block !important;
        height: auto !important;
        min-height: 86px;
        padding-inline: 8px;
        box-sizing: border-box;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .pdp-format-list.slick-initialized .pdp-format-card.slick-slide {
        display: grid !important;
        min-width: 0;
        width: 100%;
        flex: 0 0 100%;
        height: auto;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .pdp-format-list.slick-initialized .pdp-format-card.slick-slide > * {
        visibility: visible !important;
        opacity: 1 !important;
    }
    .pdp-slider-dots {
        display: flex;
        min-height: 18px;
        margin-top: 2px;
        position: relative;
        z-index: 2;
    }
    .pdp-side > .pdp-slider-dots {
        width: 100%;
        flex: 0 0 18px;
        padding-top: 2px;
    }
    .pdp-slider-dot {
        display: block;
        flex: 0 0 16px;
    }
    .pdp-slider-dot.is-active {
        flex-basis: 16px;
    }
    .pdp-format-card {
        min-width: min(86vw, 390px);
        scroll-snap-align: start;
    }
    .pdp-related-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        margin-inline: -12px;
        padding: 4px 12px 18px;
        scrollbar-width: none;
    }
    .pdp-related-grid::-webkit-scrollbar {
        display: none;
    }
    .pdp-related-card {
        flex: 0 0 min(82vw, 330px);
        scroll-snap-align: start;
    }
    .pdp-related-grid.slick-initialized {
        width: 100%;
        min-width: 0;
        margin-inline: 0;
        padding: 0;
        overflow: hidden;
    }
    .pdp-related-grid.slick-initialized .slick-list {
        width: 100%;
        height: auto !important;
        overflow: hidden;
    }
    .pdp-related-grid.slick-initialized .slick-track {
        width: 100%;
        gap: 0;
    }
    .pdp-related-grid.slick-initialized .slick-slide {
        display: block !important;
        height: auto !important;
        min-height: 260px;
        padding-inline: 10px;
        box-sizing: border-box;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .pdp-related-grid.slick-initialized .pdp-related-card.slick-slide {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        height: auto;
        margin-left: 0;
        margin-right: 0;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .pdp-related-grid.slick-initialized .pdp-related-card.slick-slide > * {
        visibility: visible !important;
        opacity: 1 !important;
    }
    .pdp-format-list.slick-initialized .slick-arrow,
    .pdp-related-grid.slick-initialized .slick-arrow {
        display: none !important;
    }
    .pdp-guides-head,
    .pdp-simulator {
        flex-direction: column;
        align-items: flex-start;
    }
    .pdp-guides-head {
        gap: 18px;
    }
    .pdp-download,
    .pdp-simulator {
        padding: 34px 28px;
    }

    .inside-article {
    margin-top: 60px;
}
}

@media (max-width: 560px) {
    .pdp-shell {
        padding-top: 28px;
        gap: 46px;
    }
    .pdp-gallery-card {
        width: 100vw;
        aspect-ratio: 1 / 1.06;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        padding: 24px;
    }
    .pdp-badges {
        top: 16px;
        left: 16px;
    }
    .pdp-title {
        font-size: 30px;
    }
    .pdp-meta,
    .pdp-selector {
        align-items: flex-start;
        flex-direction: column;
    }
    .pdp-buy {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 12px;
    }
    .pdp-actions {
        grid-column: 1 / -1;
    }
    .pdp-select-wrap,
    .pdp-cart,
    .pdp-qty,
    .pdp-actions {
        width: 100%;
    }
    .pdp-qty {
        justify-content: space-between;
    }
    .pdp-booster {
        align-items: flex-start;
    }
    .pdp-certifications {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        margin: 22px 0 0;
    }
    .pdp-certifications .cert-france {
        width: 104px;
    }
    .pdp-certifications .cert-nvp {
    width: 90px;
    }
    .pdp-certifications .cert-afnor {
    width: 108px;
    }
    .pdp-reassurance {
    gap: 8px;
    margin-top: 34px;
    }
    .pdp-reassurance-item {
    gap: 7px;
    }
    .pdp-reassurance-item img {
    width: 40px;
    height: 40px;
    }
    .pdp-reassurance-item h3 {
    font-size: 13px;
    line-height: 1.18;
    }
    .pdp-reassurance-item p {
    font-size: 10px;
    line-height: 1.35;
    }
    .pdp-section-title {
    font-size: 27px;
    }
    .pdp-description,
    .pdp-download p,
    .pdp-simulator p,
    .pdp-categories p {
    font-size: 16px;
    line-height: 1.55;
    }
    .pdp-description h2 {
    font-size: 23px;
    }
    .pdp-description,
    .pdp-details > .pdp-side {
    margin-top: 34px;
    }
    .pdp-format-card {
    grid-template-columns: 58px 1fr;
    }
    .pdp-format-price {
    font-family: var(--font-serif);
    font-size: 14px;
    }
    .pdp-format-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    }
    .pdp-format-actions .pdp-qty {
    width: 110px;
    }
    .pdp-guides-head .btn,
    .pdp-simulator .btn {
    width: 100%;
    text-align: center;
    }
    .pdp-accordion-button {
    min-height: 62px;
    }
    .pdp-accordion-panel h2 {
    font-size: 25px;
    }
    .pdp-accordion-panel h3 {
    font-size: 20px;
    }
    .pdp-slider-dots,
    .pdp-side > .pdp-slider-dots {
    width: 100vw;
    align-self: center;
    justify-content: center;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    }
}
