* {
    border: 0 solid;
    /* box-sizing: border-box; */
    color: inherit;
    font: inherit;
    margin: 0;
    padding: 0;
    /* overflow-wrap: break-word; */
}

/* *, :after, :before {
  border: 0 solid;
  box-sizing: border-box;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
} */

img,
video {
    max-width: 100%;
}

a,
a:visited {
    /* color: inherit; */
}

/* table {
  border-collapse: collapse;
  border-spacing: 0;
} */

/* img {
  border-style: none;
} */

:root {
    --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    --font-weight: 300;
    --font-weight-strong: 800;
    --font-weight-medium: 700;
    --font-weight-medium-light: 500;
    --max-block-width: 32rem;
    --module-gap: 1.5rem;
    --text-line-height: 1.8;
    --base-font-size: calc(1rem + 0.5vw);
    /* 1.125rem; */
    --color-gray-100: #fafafa;
    --color-gray-200: #f4f4f4;
    --color-gray-300: #E3E3E3;
    --color-gray-500: #ccc;
    --color-gray-600: #a0a0a0;
    --color-gray-700: #7f7e7e;
    --color-gray-800: #424242;
    --color-gray-900: #333;
    --color-blue-300: #eff4f9;
    --color-primary-000: #ffe6d9;
    --color-primary-100: #fcdac9;
    --color-primary-200: #efba9c;
    --color-primary-400: #f36f21;
    --color-primary-450: #de6218;
    --color-primary-500: #cb5015;
    --color-primary-700: #7d300d;
    --color-primary-800: #521f08;
    --box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1);
}

:root {
    font-family: var(--default-font-family);
    font-size: var(--base-font-size);
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    color: var(--color-gray-900);
    font-weight: var(--font-weight);
}

i {
    font-style: italic;
}

p,
ul,
tr,
td,
h3,
button,
a {
    line-height: var(--text-line-height);
}

h1,
h2 {
    line-height: 1.5;
}

h1,
h2 {
    font-weight: var(--font-weight-strong);
}

h3,
strong {
    font-weight: var(--font-weight-medium);
}

h1+p,
h2+p,
h2+ul,
p+h3 {
    margin-top: var(--module-gap);
}

p+p,
p+ul,
ul+p,
ul+ul {
    margin-top: 1em;
}

/* 
  RESPONSIVITY 
*/

@media only screen and (min-width: 1200px) {
    :root {
        --base-font-size: calc(1rem + 0.3vw);
    }
}

.brand-shapes {
    background: var(--brand-shapes-b, #999);
    height: 4rem;
    position: relative;
}

.brand-shapes>* {
    height: 100%;
    position: absolute;
    width: 100%;
}

.brand-shapes>.mirror {
    margin: 2px 0;
    /* FIX because Chrome pixel gap */
    transform: scale(1, -1);
}

.brand-shapes-triangle {
    background: var(--brand-shapes-c, #eee);
    /* FIX 5% because Chrome pixel gap */
    -webkit-clip-path: polygon(100% 0, -5% 0, 100% 100%);
    clip-path: polygon(100% 0, -5% 0, 100% 100%);
    margin: -2px 0;
    /* FIX Chrome px gap */
}

.brand-shapes-trapezoid {
    background: var(--brand-shapes-a, #ddd);
    -webkit-clip-path: polygon(0 0, 100% 90%, 100% 100%, 0 50%);
    clip-path: polygon(0 0, 100% 90%, 100% 100%, 0 50%);
}

@media only screen and (min-width: 1200px) {
    .brand-shapes {
        height: 5rem;
    }
    .brand-shapes-trapezoid {
        -webkit-clip-path: polygon(0 0, 100% 95%, 100% 100%, 0 30%);
        clip-path: polygon(0 0, 100% 95%, 100% 100%, 0 30%);
    }
}

@media only screen and (min-width: 1800px) {
    .brand-shapes {
        height: 7rem;
    }
}

/* .r-blocks {
    --columns: 1;
    --gap: 3rem;
    --max-column-width: 35rem;
    --grid-template-columns: repeat(var(--columns), minmax(auto, var(--max-column-width)));
    --justify-content: space-around;

    display: grid;
    gap: var(--gap);
    grid-template-columns: var(--grid-template-columns);
    justify-content: var(--justify-content);
} */

.r-blocks {
    --r-blocks-max-block-width: 35rem;
    --r-blocks-gap: 1.5rem;
    --r-blocks-justify-content: space-around;
    display: grid;
    gap: var(--r-blocks-gap);
}

.r-blocks--ac {
    align-items: center;
}

.r-blocks--jc {
    --r-blocks-justify-content: center;
}

@media only screen and (min-width: 1200px) {
    .r-blocks {
        display: grid;
        gap: calc(var(--r-blocks-gap) * 4);
        grid-template-columns: repeat(2, minmax(400px, var(--r-blocks-max-block-width)));
        justify-content: var(--r-blocks-justify-content);
    }
}

.container {
    --container-gap: 1.5rem;
    --container-max-block-width: 35rem;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--container-max-block-width);
    padding-left: var(--container-gap);
    padding-right: var(--container-gap);
}

@media only screen and (min-width: 600px) {
    .container {
        padding-left: calc(var(--container-gap) * 2);
        padding-right: calc(var(--container-gap) * 2);
    }
}

@media only screen and (min-width: 1200px) {
    .container--medium {
        max-width: calc(var(--container-max-block-width) * 2);
    }
    .container--wide {
        max-width: calc(var(--container-max-block-width) * 2.5);
    }
}

.simple-gallery {
    --simple-gallery-gap: 1rem;
}

.simple-gallery img {
    min-width: 250px;
    opacity: 1;
    transition: all 1s;
}

.simple-gallery>img.loading {
    opacity: 0.1;
}

.simple-gallery-grid {
    display: grid;
    grid-gap: var(--simple-gallery-gap);
    grid-template-columns: auto auto auto auto;
    margin: var(--simple-gallery-gap) 0;
}

.simple-gallery-grid div {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Important for iphone */
    cursor: pointer;
    height: 10vh;
    min-width: 100%;
    width: 100%;
}

.simple-gallery-grid>*:hover {
    opacity: 0.8;
}

.accordion {
    list-style: none outside;
    margin: 0 auto;
    padding: 0;
}

.accordion>*+* {
    border-top: 1px solid var(--color-gray-200);
}

.accordion-item-hd {
    cursor: pointer;
    display: block;
    font-weight: var(--font-weight-medium);
    padding: 1em 0;
    position: relative;
}

.accordion-item-input:checked~.accordion-item-bd {
    /* padding-top: 15px; */
    margin-bottom: 1em;
    max-height: 1000px;
    transition: max-height 1s ease-in, margin 0.3s ease-in, padding 0.3s ease-in;
}

.accordion-item-input:checked~.accordion-item-hd>.accordion-item-hd-cta {
    transform: rotate(0);
}

.accordion-item-hd-cta {
    color: var(--color-primary-500);
    display: block;
    font-size: 12px;
    line-height: 1;
    pointer-events: none;
    position: absolute;
    /*minus half font-size*/
    right: 0;
    text-align: center;
    top: calc(50% - 6px);
    transform: rotate(-180deg);
    transition: transform 0.3s ease;
    width: 30px;
}

.accordion-item-bd {
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.15s ease-out, margin-bottom 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-item-input {
    clip: rect(0 0 0 0);
    height: 1px;
    left: -9999px;
    margin: -1;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.button {
    background: #fff3eb;
    color: var(--color-primary-500);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-weight: var(--font-weight-medium);
    padding: 0.6em 1.5em;
    text-decoration: none;
    transition: background 0.2s;
}

.button:hover {
    background: #fce8db;
}

.button:active {
    position: relative;
    top: 1px;
}

.button.button--dark {
    border-radius: 0.5em;
    background: var(--color-primary-450);
    color: #fff;
}

.button.button--dark:hover {
    background: var(--color-primary-500);
}

.button.button--wide {
    box-sizing: border-box;
    display: block;
    text-align: center;
    width: 100%;
}

table,
tbody,
tr,
td {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

td {
    padding: 1rem;
}

td:first-child {
    background: var(--color-gray-200);
}

table strong {
    font-weight: var(--font-weight-medium-light);
}

table small {
    font-size: 0.8em;
}

@media only screen and (min-width: 800px) {
    table {
        display: table
    }
    tr {
        display: table-row;
    }
    tbody,
    td {
        width: initial;
        display: table-row-group;
    }
    td {
        display: table-cell;
    }
}

.hslider {
    list-style: none;
}

.hslider {
    display: grid;
    grid-gap: var(--module-gap);
    grid-template-columns: 1rem repeat(6, 70vw) 1rem;
    grid-template-rows: minmax(15em, 1fr);
    overflow-x: auto;
    -ms-scroll-snap-type: x proximity;
    scroll-snap-type: x proximity;
}

.hslider>li {
    scroll-snap-align: center;
}

.hslider:before,
.hslider:after {
    content: "";
}

@media only screen and (min-width: 1200px) {
    .hslider {
        grid-gap: calc(var(--module-gap) * 2);
        grid-template-columns: 1fr 1fr 1fr;
    }
    .hslider:before,
    .hslider:after {
        content: none;
    }
}

.topbar {
    align-items: center;
    background: transparent;
    display: grid;
    grid-template-areas: "logo country toggle" "nav nav nav";
    grid-template-columns: 1fr;
    grid-template-rows: minmax(4.5rem, 1fr);
    position: relative;
}

.topbar-logo {
    /* FIX little a bottom-margin */
    display: inline-flex;
    grid-area: logo;
    padding: 0 0 0 1rem;
}

.topbar-logo img {
    height: 0.7rem;
}

.topbar-country-code {
    display: inline-flex;
    grid-area: country;
    text-decoration: none;
}

.topbar-country-code img {
    height: 1rem;
    opacity: 0.7;
    transition: opacity 0.25s;
}

.topbar-country-code:hover img {
    opacity: 1;
}

.topbar-country-code span {
    display: none;
    font-size: 0.6em;
}

.topbar-country-code img+span {
    margin-left: 0.5em;
}

@media only screen and (min-width: 600px) {
    .topbar-country-code span {
        display: initial;
    }
}

.topbar nav {
    grid-area: nav;
    padding: 1.5rem 0;
    /* border-top: 3px solid #fff4ef; */
    text-align: center;
}

.topbar nav li {
    padding: 1rem;
}

.topbar button {
    align-items: center;
    background: inherit;
    border-bottom-left-radius: 0.5rem;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    grid-area: toggle;
    height: 100%;
    outline: none;
    padding: 1rem 1.5rem;
    transition: border-radius 0.25s;
}

/* .topbar button[aria-expanded=true] {
  border-bottom-left-radius: .5rem;
} */

.topbar button svg {
    fill: none;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 4;
    width: 1rem;
}

.topbar button[aria-expanded="true"] svg path {
    d: path("M3,3 29,29 M16,16 16,16 M3,29 29,3");
}

.topbar button svg path {
    transition: d 0.25s;
}

.topbar button>* {
    pointer-events: none;
}

.topbar button[aria-expanded="false"]+nav {
    display: none;
}

.topbar button[aria-expanded="true"]+nav {
    display: block;
}

.highlights-grid {
    display: grid;
    grid-gap: 3rem;
    grid-template-columns: auto;
    margin-bottom: 3rem;
    margin-top: 3rem;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .highlights-grid {
        grid-template-columns: auto auto;
    }
}

@media only screen and (min-width: 1200px) {
    .highlights-grid {
        grid-template-columns: auto auto auto auto;
    }
}

.highlights-grid p {
    margin: initial;
}

.hero-section {
    --brand-shapes-a: var(--color-primary-400);
    --brand-shapes-b: white;
    --brand-shapes-c: var(--color-primary-500);
    background: var(--color-primary-500);
}

.hero-section h1 {
    color: white;
    color: var(--color-primary-000);
    font-size: 1.5em;
    padding: 3rem;
    text-align: center;
}

.hero-shapes-container {
    position: relative;
}

.hero-shapes-container .brand-shapes {
    position: absolute;
    width: 100%;
}

.hero-shapes-container .brand-shapes:first-child {
    --brand-shapes-b: transparent;
    --brand-shapes-c: white;
}

.hero-shapes-container .brand-shapes:nth-child(2) {
    --brand-shapes-b: transparent;
    bottom: 0;
}

.hero-image {
    background-color: var(--color-primary-500);
    background-image: var(--hero-image-mobile);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 80vh;
}

@media only screen and (min-width: 1200px) {
    .hero-image {
        background-image: var(--hero-image-desktop);
    }
}

@media only screen and (min-width: 2000px) {
    .hero-image {
        background-image: var(--hero-image-desktop-x);
        background-position: top;
    }
}

.hero-shapes-container+section {
    background: var(--color-primary-500);
}

.reviews-section h3>span {
    color: var(--color-primary-500);
    display: inline-block;
    font-size: 0.7em;
    margin: 0 1em;
}

.reviews-section p {
    font-style: italic;
    margin-top: .5em;
}

.reviews-section h2 {
    margin-bottom: 3rem;
}

.reviews-section-more {
    margin-top: 3rem;
    text-align: center;
}

.reviews-section img+h3 {
    margin-top: .5em;
}

@media only screen and (max-width: 1200px) {
    .reviews-section .container:nth-child(2) {
        margin: 0;
        max-width: 100%;
        padding: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .reviews-section h2 {
        text-align: center;
    }
}

footer {
    background: var(--color-gray-900);
    color: var(--color-gray-500);
}

footer a {
    text-decoration: none;
}

footer svg {
    background: #232323;
    border-radius: 50%;
    color: var(--color-gray-500);
    fill: var(--color-gray-500);
    padding: 0.7rem;
}

footer hr {
    background: var(--color-gray-800);
    height: 1px;
    margin: var(--module-gap) 0;
}

.footer-links .highlighted-link {
    color: var(--color-gray-200);
    display: inline-block;
    margin-top: 0.5em;
}

.footer-links h3 {
    color: var(--color-gray-200);
    font-size: 1.25rem;
}

.footer-links h3+ul {
    margin-top: 0.5em;
}

.footer-links ul {
    list-style: none;
    line-height: 2.1;
}

.footer-extra .country-selector {
    align-items: center;
    display: flex;
}

.footer-extra .country-selector *+* {
    margin-left: 1em;
}

.footer-extra .country-selector img {
    max-width: 1.2em;
}

.footer-extra .social-links {
    display: flex;
    gap: 0.6rem;
}

.footer-extra .social-links a {
    display: block;
}

.footer-links {
    display: grid;
    gap: 1rem;
    grid-template-columns: auto;
    margin-top: 6rem;
}

@media only screen and (min-width: 600px) {
    .footer-links {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }
}

.footer-extra {
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
}

.footer-terms {
    font-size: 0.7em;
    padding-bottom: 6rem;
    line-height: 1.7em;
    text-align: center;
    color: var(--color-gray-600);
}

/* Limited Quantity Counter - Professional Style */

.limited-quantity-counter {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #fff9f5 0%, #fff5f0 100%);
    border: 2px solid #f5c99b;
    border-radius: 0.8rem;
    box-shadow: 0 3px 10px rgba(216, 67, 21, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.limited-quantity-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #d84315, #ff6b35);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.quantity-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: #d84315;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.quantity-alert svg {
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.quantity-remaining {
    color: #d84315;
    font-size: 1.3em;
    font-weight: 700;
    animation: glow 2s ease-in-out infinite;
    display: inline-block;
    padding: 0 0.3rem;
}

@keyframes glow {
    0%,
    100% {
        text-shadow: 0 0 5px rgba(216, 67, 21, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 15px rgba(216, 67, 21, 0.6);
        transform: scale(1.02);
    }
}

.quantity-bar {
    width: 85%;
    margin: 0 auto 0.8rem;
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0, #e0e0e0);
    border-radius: 7px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quantity-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #d84315, #ff6b35, #d84315);
    background-size: 200% 100%;
    border-radius: 7px;
    transition: width 0.5s ease;
    box-shadow: 0 2px 6px rgba(216, 67, 21, 0.4);
    animation: gradient 3s ease infinite;
    position: relative;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.quantity-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 7px 7px 0 0;
}

.quantity-sold {
    font-size: 0.82rem;
    color: #666;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Ensure pricing box spacing */

.variant-box-price-box {
    margin-bottom: 1rem;
}

.variants-box-content .button--dark {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Add urgent flash for low stock */

@keyframes urgent-flash {
    0%,
    100% {
        color: #d84315;
        transform: scale(1);
    }
    50% {
        color: #ff1744;
        transform: scale(1.05);
    }
}

.quantity-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d84315;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.quantity-alert svg {
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.quantity-remaining {
    color: #d84315;
    font-size: 1.2em;
    font-weight: 700;
}

.quantity-bar {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.quantity-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #d84315, #ff6b35);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.quantity-sold {
    font-size: 0.85em;
    color: #666;
    text-align: center;
}

.subscribe {
    background: var(--color-primary-500);
    color: var(--color-primary-000);
}

.subscribe .brand-shapes {
    --brand-shapes-a: var(--color-primary-400);
    --brand-shapes-b: var(--color-gray-900);
    --brand-shapes-c: var(--color-primary-500);
}

.subscribe .brand-shapes:first-child {
    --brand-shapes-a: var(--color-primary-400);
    --brand-shapes-b: white;
    --brand-shapes-c: var(--color-primary-500);
}

.subscribe-container {
    margin-bottom: 4.5rem;
    margin-top: 4.5rem;
}

.subscribe-container h2 {
    line-height: 1;
}

.subscribe-container input {
    background: #bb460f;
    border-bottom-left-radius: 0.5em;
    border-top-left-radius: 0.5em;
    box-sizing: border-box;
    padding: 1em;
    width: 100%;
}

.subscribe-container input:focus {
    outline: 2px solid var(--color-primary-700);
}

.subscribe-container input::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.5;
}

.subscribe-container input::-moz-placeholder {
    color: inherit;
    opacity: 0.5;
}

.subscribe-container input:-ms-input-placeholder {
    color: inherit;
    opacity: 0.5;
}

.subscribe-container input::-ms-input-placeholder {
    color: inherit;
    opacity: 0.5;
}

.subscribe-container input::placeholder {
    color: inherit;
    opacity: 0.5;
}

.subscribe-container .button {
    background: var(--color-primary-700);
    border-bottom-right-radius: 0.5em;
    border-top-right-radius: 0.5em;
    color: inherit;
}

.subscribe-container form {
    display: grid;
    grid-template-columns: 1fr auto;
}

.subscribe-container h2 {
    font-size: 1.5em;
}

@media only screen and (min-width: 600px) {
    .subscribe-container h2 {
        font-size: 1.75em;
    }
}

.subscribe-container h2 span {
    color: var(--color-primary-200);
    display: inline-block;
    font-size: 0.48em;
    margin-left: 0.6em;
    text-shadow: none;
}

.subscribe-container h2+form {
    margin-top: 2rem;
}

.subscribe-after-message {
    display: inline-block;
    margin-top: 1em;
}

.spinner-loader {
    display: inline-block;
    width: 1em;
    height: 1em;
}

.spinner-loader:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: .12em solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: spinner-loader 1.2s linear infinite;
    box-sizing: border-box;
}

@keyframes spinner-loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.request-box {
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
}

.request-box-inputs input,
.request-box-inputs select,
.request-box-message {
    border-radius: 0.5em;
}

.request-box-inputs input[type="text"],
.request-box-inputs input[type="email"],
.request-box-inputs select {
    cursor: pointer;
    background: #f9f9f9;
    box-sizing: border-box;
    margin-top: 0.5rem;
    padding: 1em;
    width: 100%;
}

.request-box-inputs label {
    cursor: pointer;
    line-height: 1.5;
}

.request-box-inputs label+label {
    margin-top: 1rem;
}

*+.request-box-message,
.request-box-message+* {
    margin-top: 1rem;
}

.request-box-message p+p {
    margin-top: 0;
}

.request-box>h3+* {
    margin-top: 1rem;
}

.request-box *+button {
    margin-top: 1.5rem;
}

.request-box-message:not(template) {
    display: grid;
    column-gap: 1.5rem;
    grid-template-areas: "icon feature" "icon subline";
    grid-template-columns: auto 1fr;
    padding: 1rem;
}

.request-box-message img {
    align-self: center;
    grid-area: icon;
    height: 2rem;
    justify-self: center;
    width: 2rem;
}

.request-box-message.request-box-message--success {
    background: var(--color-blue-300);
}

.request-box-message.request-box-message--error {
    background: #fff3eb;
}

form+.request-box-message {
    margin-top: 1.5rem;
}

.request-box-subscribe {
    align-items: center;
    display: grid;
    gap: 0.6rem;
    grid-template-columns: auto auto;
    justify-content: flex-start;
}

.request-box-subscribe input {
    display: none;
}

.request-box-subscribe input+span {
    align-items: center;
    background: #eee;
    border-radius: 5px;
    box-sizing: border-box;
    color: #eee;
    display: flex;
    height: 1em;
    justify-content: center;
    padding: 0.125em;
    transition: background 0.1s;
    width: 1em;
}

.request-box-subscribe input:checked+span {
    background: var(--color-primary-450);
    color: white;
}

.request-box-subscribe input+span svg {
    height: 100%;
    width: 100%;
}

/* Spinner */

.request-box button[type="submit"] .spinner-loader {
    visibility: hidden;
    font-size: 0;
    opacity: 0;
    transition: font-size 0.15s, opacity 0.3s 0.15s;
}

.request-box form.quick-loading button[type="submit"] .spinner-loader {
    visibility: visible;
    font-size: 1.2em;
    opacity: 1;
    margin-right: 0.5em;
}

[data-quick="request-box"],
[data-quick="request-box-error"] {
    margin-top: 1rem;
}

[data-quick="request-box"]:empty,
[data-quick="request-box-error"]:empty {
    margin: 0;
}

.variants-box {
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
}

@media only screen and (min-width: 600px) {
    .variants-box {
        padding: 3rem;
    }
}

.variant-box-features {
    padding-left: 1rem;
    font-size: 0.8rem;
}

.variants-box-info {
    background: var(--color-blue-300);
    border-radius: 0.4em;
    /* color: var(--color-primary-500); */
    font-size: 0.8em;
    padding: 1em 1.2em;
    line-height: 1.6em;
}

.variants-box-content .variants-box-info+* {
    margin-top: 1.5rem;
}

.variants-box-content {
    max-width: 24rem;
    margin: auto;
}

.variants-box-content>*+* {
    margin-top: 1rem;
}

.variant-box-price-box {
    display: grid;
    gap: 0.4rem;
    grid-template-columns: auto auto 1fr;
    align-items: baseline;
}

.variants-box-price {
    font-size: 1.5rem;
    font-weight: var(--font-weight-strong);
}

.variants-box-price-sale {
    display: grid;
    gap: 0.2rem;
}

.variants-box-price--original {
    position: relative;
    opacity: 0.9;
    font-size: 1rem;
    font-weight: 500;
}

.variants-box-price--original:after {
    border-bottom: 1px solid var(--color-primary-500);
    content: "";
    position: absolute;
    right: 0;
    top: 60%;
    -webkit-transform: skewY(-10deg);
    transform: skewY(-10deg);
    width: 100%;
}

.variant-box-price-percentage {
    color: var(--color-primary-500);
    font-size: 0.8em;
}

.variants-box-from {
    font-size: 0.8em;
}

.variants-box-tax {
    font-size: 0.8em;
    color: var(--color-gray-700);
}

.expected-shipping-date {
    font-size: 0.8em;
    text-align: center;
}

.limited-offer-headline {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

.limited-offer-headline--extra {
    font-size: 0.8em;
    color: #e87631
}

.limited-offer-list {
    list-style: circle;
    margin-left: 0.8rem;
}

.limited-offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* gap: 1rem; */
}

.limited-offer-grid div:first-child {
    justify-self: center;
}

.limited-offer-grid div:nth-child(2) {
    justify-self: center;
    align-self: center;
}

.limited-offer-grid .christmas-gift {
    border-radius: 0.4em;
    max-width: 150px;
}

@media screen and (min-width: 600px) {
    .limited-offer-headline {
        text-align: left;
    }
    .limited-offer-grid {
        grid-template-columns: 1fr 2fr;
    }
    .limited-offer-grid.--long {
        grid-template-columns: auto 17rem;
    }
}

.limited-offer-headline+.limited-offer-grid {
    margin-top: 0.8rem;
}

.locator {
    background-color: #fff3eb;
}

.locator .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
}

.locator .brand-shapes {
    --brand-shapes-a: var(--color-primary-400);
    --brand-shapes-b: #fff3eb;
    --brand-shapes-c: var(--color-gray-100);
}

.locator.locator--logo .brand-shapes {
    --brand-shapes-c: white;
}

.locator .locator-headline {
    display: flex;
    align-items: center;
}

.locator .locator-headline img {
    height: 1rem;
    margin: 0 .5rem;
}

.locator .locator-headline+* {
    margin-top: 1rem;
}

.locator .button {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.locator a.button {
    background: var(--color-primary-450);
    border: 0.2em solid var(--color-primary-450);
    color: var(--color-primary-000);
}

.locator button.button {
    border: 0.2em solid var(--color-primary-500);
    box-sizing: border-box;
}

.locator .button+.button {
    margin-top: 1rem;
}

@media only screen and (min-width: 600px) {
    .locator .button {
        display: inline-block;
        width: auto;
    }
    .locator .button+.button {
        margin-top: 0;
        margin-left: 0.5rem;
    }
}

.accessories-responsive-columns {
    display: grid;
    gap: var(--module-gap);
}

.accessories-responsive-columns p {
    margin: 0;
}

@media only screen and (min-width: 600px) {
    .accessories-responsive-columns {
        gap: 3rem;
        grid-template-columns: 1fr 1fr;
    }
}

.r-blocks {
    --r-blocks-max-block-width: var(--max-block-width);
    --r-blocks-gap: var(--module-gap);
}

.container {
    --container-gap: 1rem;
}

.module+*,
*+.module {
    margin-top: var(--module-gap);
}

.module--lg+*,
*+.module--lg {
    margin-top: calc(var(--module-gap) * 2);
}

h2+h3 {
    margin-top: 2em;
}

h2 {
    font-size: 1.5em;
}

h2 span {
    color: var(--color-primary-500);
    display: inline-block;
    font-size: 0.7em;
}

@media only screen and (min-width: 600px) {
    h2 {
        font-size: 1.75em;
    }
}

.logo-header .container {
    display: flex;
    justify-content: center;
    padding: 3rem;
}

.logo-header img {
    width: 15rem;
}

@media only screen and (min-width: 600px) {
    .logo-header img {
        width: 20rem;
    }
}

.product-detail-photos {
    text-align: center;
}

.product-detail-photos h2+* {
    margin-top: 3rem;
}

.product-detail-photos img+h3 {
    margin-top: 1em;
}

.product-manuals-card img {
    max-height: 10rem;
}

.product-manuals-card ul {
    padding-left: 1rem;
}

.sector {
    background: var(--color-gray-100);
}

.sector>*:nth-child(2) {
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.sector .brand-shapes:first-child {
    --brand-shapes-a: var(--color-gray-200);
    --brand-shapes-b: white;
    --brand-shapes-c: var(--color-gray-100);
}

.sector .brand-shapes:last-child {
    --brand-shapes-a: var(--color-gray-200);
    --brand-shapes-b: white;
    --brand-shapes-c: var(--color-gray-100);
}

.shaped-block {
    /* clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%); */
    -webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
}

.shaped-block-wrapper {
    /* filter: drop-shadow(1rem -1rem 0 #f36e21); */
    -webkit-filter: drop-shadow(1rem 1rem 0 var(--color-gray-200));
    filter: drop-shadow(1rem 1rem 0 var(--color-gray-200));
    /* filter: drop-shadow(1rem -1rem 0 #f36e21) drop-shadow(1rem -1rem 0 #f7f7f7); */
    /* filter: drop-shadow(1rem -1rem 0 #333) drop-shadow(1rem -1rem 0 #f36e21) ; */
    /* filter: drop-shadow(-1rem 1rem 0 #f7f7f7) */
}

.button.shaped-block {
    padding: 1.5rem;
}

.light-headline {
    font-weight: 100;
}

.small {
    font-size: 0.7em;
}

.brand-slogan {
    margin-bottom: var(--module-gap);
    text-align: center;
}

@media only screen and (min-width: 1200px) {
    .brand-slogan {
        text-align: right;
    }
}

@media only screen and (min-width: 1200px) {
    .section--right {
        text-align: right;
    }
    header+section,
    .sector+section {
        margin-top: 6rem;
    }
}

*+section,
*+.section {
    margin-top: 4.5rem;
}

@media only screen and (min-width: 1200px) {
    *+section,
    *+.section {
        margin-top: 9rem;
    }
}

.product-title {
    font-weight: var(--font-weight-strong);
    text-transform: uppercase;
}

.product-title+p {
    margin-top: 0.6rem;
}

ul.product-labels {
    list-style: none;
    display: flex;
    gap: 0.4rem;
}

ul.product-labels li {
    font-size: 0.7em;
    font-weight: 500;
    padding: 0.2em 0.8em;
    background-color: rgb(209, 209, 209);
    border-radius: 0.4em;
}

ul.product-labels li[data-type="new"] {
    /* background-color: #1873DE; */
    background-color: var(--color-gray-800);
    color: white;
}

ul.product-labels li[data-type="promo"] {
    background-color: #DE9918;
    color: white;
}

ul.product-labels+* {
    margin-top: 0.8rem;
}

.product-logo-section {
    margin: 4rem 3rem;
    text-align: center;
}

.product-logo-section .product-logo-image {
    width: 15rem;
    z-index: 1;
    /* Fix mobile safari invert */
}

@media only screen and (min-width: 600px) {
    .product-logo-section {
        margin: 1.5rem;
    }
}

.sector-orange {
    background: var(--color-primary-500);
    color: var(--color-primary-000);
}

.sector-orange .brand-shapes {
    --brand-shapes-a: var(--color-primary-400);
    --brand-shapes-b: white;
    --brand-shapes-c: var(--color-primary-500);
}

.play-video-block {
    margin-bottom: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.play-video-block .video-button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    background: #e2651d;
    -webkit-clip-path: polygon(0 0, 100% 20%, 100% 80%, 0% 100%);
    clip-path: polygon(0 0, 100% 20%, 100% 80%, 0% 100%);
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: var(--font-weight-strong);
    margin: 0;
    padding: 2rem;
    transition: background 0.2s;
    text-decoration: none;
}

.play-video-block .video-button:hover {
    background: var(--color-primary-700);
}

/* Checkout Modal Styles - PlixTV Style */

.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 999999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.checkout-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.checkout-modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    height: 85vh;
    max-height: 750px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

@keyframes slideUp {
    from {
        transform: translateY(100px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.checkout-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #E5E6F6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #F8F9FE 0%, #F2F3FB 100%);
    border-radius: 20px 20px 0 0;
}

.checkout-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1B2E;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-modal-title i {
    color: #10b981;
    font-size: 16px;
}

.checkout-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #E5E6F6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-modal-close:hover {
    background: #10b981;
    border-color: #10b981;
    transform: rotate(90deg) scale(1.1);
}

.checkout-modal-close:hover i {
    color: white;
}

.checkout-modal-close i {
    color: #73759B;
    font-size: 18px;
    transition: color 0.3s ease;
}

.checkout-modal-body {
    flex: 1;
    overflow-y: auto;
    position: relative;
    background: white;
    border-radius: 0 0 20px 20px;
}

.checkout-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 20px 20px;
}

.checkout-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.checkout-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #E5E6F6;
    border-top-color: #de6218;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.checkout-loading p {
    color: #73759B;
    font-size: 14px;
    font-weight: 500;
}

.payment-success-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none;
}

.payment-success-animation.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00C896 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i {
    color: white;
    font-size: 40px;
}

.success-text {
    font-size: 22px;
    font-weight: 700;
    color: #1A1B2E;
    margin-bottom: 8px;
}

.success-subtext {
    color: #73759B;
    font-size: 14px;
}

/* Prevent body scroll when modal is open */

body.modal-open {
    overflow: hidden;
}

/* Mobile Responsive */

@media (max-width: 768px) {
    .checkout-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    .checkout-modal-header {
        border-radius: 0;
        padding: 16px 20px;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    .checkout-iframe {
        border-radius: 0;
    }
}