@import 'https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap';
:root {
    --main-color: #F37B38;
    --main-color-dark: #ED2B33;
    --secondary-orange: #FBB042;
    --secondary-red: #F15D3A;
    --light-orange: #FFEFD5;
    --bs-light-rgb: 255, 239, 213;
    --bs-font-sans-serif: 'Poppins', sans-serif;
}

/* Typography */
.heading-1 {
    font-size: 2rem;
    font-size: min(max(2rem,4vw),5rem);
    font-size: clamp(2rem,4vw,5rem);
}
.heading-2 {
    font-size: 1.75rem;
    font-size: min(max(1.75rem,3vw),3rem);
    font-size: clamp(1.75rem,3vw,3rem);
}
.heading-3 {
    font-size: 1.5rem;
    font-size: min(max(1.5rem,2.5vw),2.75rem);
    font-size: clamp(1.5rem,2.5vw,2.75rem);
}
.heading-4 {
    font-size: 1rem;
    font-size: min(max(1rem,1.5vw),1.75rem);
    font-size: clamp(1rem,1.5vw,1.75rem);
}

/* Spacing */
.p-2-5 {
    padding: 2.5rem;
}
.p-4rem {
    padding: 4rem;
}
@media(max-width:520px) {
    .p-2-5 {
        padding: 2rem;
    }
    .p-4rem {
        padding: 3.5rem;
    }
}
@media(max-width:500px) {
    .padding-btn-upsell {
        padding: 1rem;
    }
}

/* Border Radius */
.theme-border-radius {
    border-radius: 3.125rem;
}
.theme-border-radius-sm {
    border-radius: 2.1875rem;
}

/* Gradients and Backgrounds */
.orange-gradient-bg {
    background: linear-gradient(135deg, #F37B38 0%, #FBB042 100%);
}
.red-gradient-bg {
    background: linear-gradient(127deg, #ED2B33 -16.14%, #F15D3A 33.43%);
}

/* Custom CSS */
h1 {
    font-weight: bold;
}
header {
    background: linear-gradient(135deg, #F37B38 0%, #ED2B33 100%);
    padding: 1rem 0 6rem;
    color: white;
}
header span, header i {
    color: #ffd814;
}
header hr, section hr {
    max-width: 160px;
    border-width: 3px;
}

/* Steps */
.steps-box {
    position: relative;
    max-width: fit-content;
}
.steps-box::before {
    content: '';
    position: absolute;
    height: 2px;
    background-color: white;
    width: 100%;
    top: calc(50% - 1px);
}
.step {
    position: relative;
    background: linear-gradient(135deg, #F37B38 0%, #ED2B33 100%);
    padding: 4px 16px;
    border: 2px solid white;
    border-radius: 100px;
}
.step:first-child {
    color: yellow;
}

/* Stock Box */
.stock-box span {
    color: var(--main-color);
}

/* Products */
.products .order-1 > div, .products .order-2 > div, .products .order-3 > div {
    background-color: white;
}

/* Product Cards */
.product {
    border-radius: 6px;
    box-shadow: 0 0 0 3px #FFE4CC inset, 0 0 10px #6c757d;
    overflow: hidden;
}
.product-header {
    background: linear-gradient(135deg, #FFE4CC 0%, #FFDAB9 100%);
}
.cta-vshape {
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    max-width: 100%;
    margin: 0 auto;
    margin-top: -1px;
    background: linear-gradient(135deg, #FFE4CC 0%, #FFDAB9 100%);
    height: 30px;
    width: 100%;
}
.product .price h4 {
    font-size: 4rem;
    line-height: 1;
}
.product .discount {
    font-size: .9rem !important;
    border-top: 1px solid #ccc;
}
.product .discount i {
    color: var(--main-color);
}

/* Product Buttons */
.product__button_alt {
    display: block;
    background: linear-gradient(to top, #a78a19, #debd15);
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    padding: 2px !important;
    margin: 0 auto;
    border: none;
}
.product__button_alt > div {
    position: relative;
    background: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    color: black;
    padding: .75rem .5rem;
    border-radius: 10px;
}
.product__button_alt:hover > div {
    background: linear-gradient(to bottom, #fccd15 50%, #ffd814 51%);
}

/* Popular Choice Styling */
.order-1 .product {
    box-shadow: 0 0 0 3px #F37B38 inset, 0 0 10px #6c757d;
}
.order-1 .product-header, .order-1 .cta-vshape {
    background: linear-gradient(90deg, #F37B38, #FBB042, #F37B38);
}
.order-1 .product__button_alt {
    scale: 1.15;
    margin: .25rem auto;
}

/* Zoom Effect */
.zoom {
    transition: 0.4s ease-in-out;
}
.zoom:hover {
    transform: scale(1.04);
    z-index: 200;
}

/* Buttons */
.btn-new {
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    padding: 1rem 5rem;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border-radius: 10rem;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}
.btn-primary-new {
    cursor: pointer;
    background-color: #ffd814;
    border: none;
    color: #000;
    border: 1px solid #fcd200;
    font-weight: 600;
}
.btn-primary-new:hover {
    background-color: #f7ca00;
    text-decoration: none;
    color: #000;
}

/* Accordion */
.accordion {
    --bs-accordion-bg: #fcfcfd;
    --bs-accordion-active-bg: #FFE4CC;
    --bs-accordion-active-color: black;
    --bs-accordion-border-width: 0;
    --bs-accordion-btn-focus-box-shadow: none;
}
.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 2.1875rem !important;
    border-top-right-radius: 2.1875rem !important;
}
.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 2.1875rem !important;
    border-bottom-left-radius: 2.1875rem !important;
}
.accordion-button {
    background-color: #FFF5E6 !important;
}

/* Badges */
.badges {
    filter: saturate(0.8);
}

/* Reference Text */
.reference-text {
    font-size: 12px;
}

/* SVG Icons */
svg {
    fill: var(--main-color);
}

/* Affiliate Links (hidden by default) */
.aff-fnl {
    display: none;
}

/* Responsive */
@media (min-width: 376px) {
    .product .price h4 {
        font-size: 5rem;
    }
}

/* Z-index */
.z-1 {
    z-index: 1;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}