@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #fefffc;
}

.page-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.main-wrapper {
    width: 100%;
}

/* Main announcement container */
.pf-lorax-ann {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: #016a4c;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
}

/* Sale timer container */
.pf-lorax-sale-timer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.pf-lorax-sale-timer-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Sale timer text section */
.pf-lorax-sale-timer-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pf-lorax-sale-timer-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pf-lorax-sale-timer-subtitle {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Timer main section */
.pf-lorax-sale-timer-main {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

/* Timer item */
.pf-lorax-sale-timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 4px 6px;
    min-width: 40px;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pf-lorax-sale-timer-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.pf-lorax-sale-timer-item-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 2px;
}

.pf-lorax-sale-timer-item-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Timer separator */
.pf-lorax-sale-timer-seperator {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin: 0 2px;
    opacity: 0.8;
}

/* Desktop styles (larger screens) */
@media (min-width: 768px) {
    .pf-lorax-ann {
        padding: 15px 20px;
    }
    
    .pf-lorax-sale-timer-wrapper {
        gap: 30px;
    }
    
    .pf-lorax-sale-timer-title {
        font-size: 1.1rem;
    }
    
    .pf-lorax-sale-timer-subtitle {
        font-size: 1.1rem;
    }
    
    .pf-lorax-sale-timer-main {
        gap: 10px;
    }
    
    .pf-lorax-sale-timer-item {
        min-width: 45px;
        padding: 6px 8px;
    }
    
    .pf-lorax-sale-timer-item-time {
        font-size: 1.2rem;
    }
    
    .pf-lorax-sale-timer-item-sub {
        font-size: 0.7rem;
    }
    
    .pf-lorax-sale-timer-seperator {
        font-size: 1.2rem;
        margin: 0 4px;
    }
}

/* Mobile styles (smaller screens) */
@media (max-width: 768px) {
    .pf-lorax-ann {
        padding: 8px 10px;
    }
    
    .pf-lorax-sale-timer-wrapper {
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .pf-lorax-sale-timer-text {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        flex-shrink: 1;
    }
    
    .pf-lorax-sale-timer-title {
        font-size: 0.9rem;
    }
    
    .pf-lorax-sale-timer-subtitle {
        font-size: 0.9rem;
    }
    
    .pf-lorax-sale-timer-main {
        gap: 2px;
        flex-shrink: 0;
    }
    
    .pf-lorax-sale-timer-item {
        min-width: 38px;
        padding: 4px 5px;
    }
    
    .pf-lorax-sale-timer-item-time {
        font-size: 1rem;
    }
    
    .pf-lorax-sale-timer-item-sub {
        font-size: 0.6rem;
    }
    
    .pf-lorax-sale-timer-seperator {
        font-size: 1rem;
        margin: 0 1px;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .pf-lorax-ann {
        padding: 6px 8px;
    }
    
    .pf-lorax-sale-timer-wrapper {
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .pf-lorax-sale-timer-text {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        flex-shrink: 1;
    }
    
    .pf-lorax-sale-timer-title {
        font-size: 0.8rem;
    }
    
    .pf-lorax-sale-timer-subtitle {
        font-size: 0.8rem;
    }
    
    .pf-lorax-sale-timer-main {
        flex-shrink: 0;
    }
    
    .pf-lorax-sale-timer-item {
        min-width: 35px;
        padding: 3px 4px;
    }
    
    .pf-lorax-sale-timer-item-time {
        font-size: 0.9rem;
    }
    
    .pf-lorax-sale-timer-item-sub {
        font-size: 0.55rem;
    }
    
    .pf-lorax-sale-timer-seperator {
        font-size: 0.9rem;
    }
}

/* Navbar */
.adv-navbar {
    width: 100%;
    background: linear-gradient(135deg, rgba(1, 106, 76, 0.08) 0%, rgba(1, 106, 76, 0.12) 100%);
    padding: 20px;
    margin-top: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(1, 106, 76, 0.15);
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #016a4c;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Section */
.section {
    width: 100%;
    padding: 60px 20px;
    background-color: white;
}

.section.cc-custom {
    background-color: #f8f8f8;
}

.section.cc-complementary1 {
    background: linear-gradient(135deg, rgba(1, 106, 76, 0.05) 0%, rgba(1, 106, 76, 0.08) 100%);
}

.section.cta-section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cc-small {
    max-width: 900px;
}

/* Listicle Reasons */
.listicle_reasons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Header */
.adv-header {
    text-align: left;
    margin: 0 0 10px 0;
}

.adv-headline {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: left;
}

.text-highlight {
    background: linear-gradient(180deg, rgba(255, 235, 59, 0) 50%, rgba(255, 235, 59, 0.7) 50%);
    padding: 0 4px;
}

.adv-subheadline {
    font-size: 24px;
    font-weight: 500;
    color: #016a4c;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: left;
}

.adv-introduction {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 20px;
    text-align: left;
}

/* Callout Box */
.adv-callout {
    margin: 30px 0;
    padding: 20px 25px;
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.adv-callout__wrapper {
    display: flex;
    align-items: center;
}

.adv-callout__text {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
}

/* Author Section */
.adv-header__author {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.adv-header__author-image-wrapper {
    flex-shrink: 0;
}

.adv-header__author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.adv-header__author-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.adv-header__author-name {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.text-weight-semibold {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.verified-badge {
    display: inline-block;
    vertical-align: middle;
}

.adv-header__author-title {
    font-size: 14px;
    color: #666666;
}

.text-size-small {
    font-size: 14px;
    color: #666666;
}

.sub-heading-author-new {
    font-size: 14px;
    color: #666666;
    font-style: italic;
    text-align: left;
}

/* Content Listicle */
.content-listicle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}

.content-listicle:last-child {
    border-bottom: none;
}

.listicle-image {
    width: 100%;
}

.image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f8f8f8;
}

.image-wrapper.cc-1x1 {
    aspect-ratio: 1;
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.listicle1_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.display-md {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 16px;
}

.listicle1_content > div {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
}

.p-listicle {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
}

.publisher {
    /* Publisher class for styling consistency */
}

.bold-text-1782 {
    font-weight: 700;
}

.show-tablet {
    display: none;
}

.hide-tablet {
    display: block;
}

/* Grid Layout */
.u-grid-cust {
    display: grid;
    gap: 60px;
}

.u-grid-cust.cc-1-2 {
    grid-template-columns: 1fr 1fr;
}

.display-row {
    display: flex;
    flex-direction: column;
}

/* Summary Component */
.summary_component {
    width: 100%;
}

.attributes_right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.attributes_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.attributes_item.cc-last {
    border-bottom: none;
}

.attributes_item-title {
    flex: 1;
}

.attributes_list-text {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
}

.attributes_item-average {
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary-stars-wrappr {
    display: flex;
    gap: 4px;
}

.review_component-star {
    color: #ffc107;
    font-size: 18px;
}

.attributes_list-text.cc-median {
    font-size: 18px;
    font-weight: 700;
    color: #016a4c;
    min-width: 40px;
    text-align: right;
}

/* Testimonial Box */
.testmional_box {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.div-block-1238 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonal_head-distribute {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.testimonial5_author {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.review_component {
    display: flex;
}

.review_component.cc-sm {
    font-size: 14px;
}

.review_component-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review_stars-wrapper {
    display: flex;
    gap: 2px;
}

.testimonial5_subhead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666666;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.testmional5_verified {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial5_icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
}

.testimonial_subject {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
}

.text-sm {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
}

/* CTA Container - New Structure */
.cta-content-2 {
    width: 100%;
    padding: 30px 20px;
    position: relative;
}

.cta-content-2:last-child {
    padding-bottom: 120px;
}


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

.max-width-medium-2 {
    max-width: 1000px;
    margin: 0 auto;
}

.adv_cta_div {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    border: 1px dashed black;
}

.photo-wrappers {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

.image-89 {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.baresandals {
    max-width: 100%;
}

.adv_cta_right_div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.divider.bf {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.divider-line.expand {
    flex: 1;
}

.div-block-1351 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.gift-icon {
    width: 20px;
    height: 20px;
}

.style-guide-card {
    font-size: 13px;
    font-weight: 700;
    color: #016a4c;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    background-color: rgba(1, 106, 76, 0.1);
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
}

.adv_cta_heading-2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 10px;
}

.span-red {
    color: #d32f2f;
}

.adv_cta_top_div {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.adv_cta_subtitle_text {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 10px;
}

.padding-bottom {
    width: 100%;
}

.padding-bottom.padding-xsmall {
    height: 8px;
}

.padding-bottom.padding-small {
    height: 16px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #016a4c;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #028c76;
    width: 100%;
    position: relative;
}

.button.w-inline-block {
    display: inline-flex;
}

.button:hover {
    background-color: #014a36;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 106, 76, 0.4);
}

.button_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.button_icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.button_icon.w-embed {
    display: inline-flex;
}

.button_spinner {
    display: none;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.div-block-2,
.div-block-766,
.div-block-765,
.div-block-764,
.div-block-767 {
    display: flex;
    align-items: center;
}

.text-block,
.text-block-279 {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

.text-span-6 {
    color: #ff4444;
    font-weight: 700;
}

.text-span-7 {
    color: #016a4c;
    font-weight: 700;
}

.text-size-tiny {
    font-size: 13px;
    color: #666666;
    font-style: italic;
}

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

.div-block-900 {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.listicle-banner-sale-badge {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

/* Old CTA Container - Keep for compatibility */
.adv-cta__container {
    width: 100%;
}

.content-wrapper {
    width: 100%;
}

.adv-cta_grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background-color: white;
    border-radius: 20px;
}

.cta_content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vertical-wrap__center {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.u-vertical-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.div-block-1516 {
    flex-shrink: 0;
}

.h-cta {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.u-color-accent {
    color: #016a4c;
}

/* Button */
.adv-cta__button-holder {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.button-15 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #016a4c;
    color: white;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #028c76;
    width: 100%;
    box-shadow: 0 4px 15px rgba(1, 106, 76, 0.3);
}

.button-15:hover {
    background-color: #014a36;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 106, 76, 0.4);
}

.button_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Badge */
.bot_cta_badge_div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: #333333;
    flex-wrap: wrap;
    margin-top: 15px;
}

.div-block-1648,
.div-block-1513 {
    display: flex;
    align-items: center;
}

.text-block-390,
.text-block-365 {
    font-weight: 500;
}

.text-span-225 {
    color: #ff4444;
    font-weight: 700;
}

.text-span-226 {
    color: #016a4c;
    font-weight: 700;
}

.div-block-5,
.div-block-765 {
    color: #e0e0e0;
    padding: 0 8px;
}

.text-block-4 {
    font-size: 16px;
    color: #e0e0e0;
}

.ts-tiny {
    font-size: 13px;
    color: #666666;
    text-align: center;
    font-style: italic;
}

/* Footer */
.footer_section {
    width: 100%;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    padding: 40px 20px;
}

.container-18 {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer_small-note {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    text-align: center;
}

.footer_credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.text-xs {
    font-size: 14px;
    color: #666666;
}

.footer_link-wrapper {
    display: flex;
    gap: 30px;
}

.footer_legal-link {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_legal-link:hover {
    color: #016a4c;
}

/* Desktop Explicit Alignment */
@media (min-width: 769px) {
    .adv-header {
        text-align: left;
    }
    
    .adv-headline,
    .adv-subheadline,
    .adv-introduction,
    .adv-header__author,
    .sub-heading-author-new {
        text-align: left;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .adv-headline {
        font-size: 40px;
    }
    
    .adv-subheadline {
        font-size: 20px;
    }
    
    .content-listicle {
        gap: 40px;
    }
    
    /* CTA - New Structure */
    .adv_cta_div {
        gap: 35px;
    }
    
    .adv_cta_heading-2 {
        font-size: 28px;
    }
    
    /* CTA - Old Structure */
    .adv-cta_grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .pf-lorax-ann {
        padding: 10px 15px;
    }
    
    .adv-navbar {
        padding: 15px;
    }
    
    .brand-text {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
    
    /* Section */
    .section {
        padding: 40px 15px;
    }
    
    .section.cta-section {
        padding: 60px 15px;
    }
    
    /* Header */
    .adv-header {
        margin-bottom: 10px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .adv-headline {
        font-size: 32px;
    }
    
    .adv-subheadline {
        font-size: 18px;
    }
    
    .adv-introduction {
        font-size: 18px;
    }
    
    .adv-callout {
        padding: 15px 20px;
        margin: 20px 0;
    }
    
    .adv-callout__text {
        font-size: 18px;
    }
    
    .adv-header__author {
        align-items: center;
        text-align: center;
    }
    
    .adv-header__author-name {
        justify-content: center;
    }
    
    .text-weight-semibold {
        font-size: 16px;
    }
    
    /* Listicle */
    .listicle_reasons {
        gap: 40px;
    }
    
    .content-listicle {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
    }
    
    .show-tablet {
        display: block;
    }
    
    .hide-tablet {
        display: none;
    }
    
    .display-md {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .listicle1_content > div {
        font-size: 18px;
    }
    
    .p-listicle {
        font-size: 18px;
    }
    
    /* Grid */
    .u-grid-cust.cc-1-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* CTA - New Structure */
    .cta-content-2 {
        padding: 40px 15px;
    }
    
    .adv_cta_div {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .adv_cta_heading-2 {
        font-size: 26px;
    }
    
    .adv_cta_subtitle_text {
        font-size: 15px;
    }
    
    .button {
        padding: 16px 35px;
        font-size: 16px;
    }
    
    .listicle-banner-sale-badge {
        font-size: 14px;
        padding: 10px 24px;
    }
    
    /* CTA - Old Structure */
    .adv-cta_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .h-cta {
        font-size: 28px;
    }
    
    .button-15 {
        padding: 18px 30px;
        font-size: 18px;
    }
    
    /* Testimonial */
    .testmional_box {
        padding: 25px;
    }
    
    .testimonial5_subhead {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    /* Footer */
    .footer_credits {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Header */
    .pf-lorax-ann {
        padding: 8px 10px;
    }
    
    .adv-navbar {
        padding: 12px;
        margin-top: 57.5px;
    }
    
    .brand-text {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    /* Section */
    .section {
        padding: 30px 10px;
    }
    
    .section.cta-section {
        padding: 40px 10px;
    }

    .adv-headline {
        font-size: 26px;
    }
    
    .adv-subheadline {
        font-size: 16px;
    }
    
    .adv-introduction {
        font-size: 18px;
    }
    
    .adv-callout {
        padding: 12px 15px;
        margin: 15px 0;
    }
    
    .adv-callout__text {
        font-size: 18px;
    }
    
    .adv-header__author-image {
        width: 60px;
        height: 60px;
    }
    
    .text-weight-semibold {
        font-size: 15px;
    }
    
    .verified-badge {
        width: 70px;
        height: auto;
    }
    
    .sub-heading-author-new {
        font-size: 13px;
    }
    
    /* Listicle */
    .listicle_reasons {
        gap: 20px;
    }
    
    .content-listicle {
        gap: 20px;
        padding: 20px 0;
    }
    
    .display-md {
        font-size: 22px;
    }
    
    .listicle1_content > div {
        font-size: 18px;
    }
    
    .p-listicle {
        font-size: 18px;
    }
    
    /* Grid */
    .u-grid-cust {
        gap: 30px;
    }
    
    /* Summary */
    .attributes_item {
        padding: 12px 0;
    }
    
    .attributes_list-text {
        font-size: 18px;
    }
    
    .review_component-star {
        font-size: 16px;
    }
    
    .attributes_list-text.cc-median {
        font-size: 16px;
    }
    
    /* Testimonial */
    .testmional_box {
        padding: 20px;
    }
    
    .testimonial5_author {
        font-size: 16px;
    }
    
    .testimonial_subject {
        font-size: 18px;
    }
    
    .text-sm {
        font-size: 18px;
    }
    
    /* CTA - New Structure */
    .cta-content-2 {
        padding: 30px 10px;
    }

    .cta-content-2:last-child {
        padding-bottom: 90px;
    }
    
    .adv_cta_div {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .adv_cta_heading-2 {
        font-size: 22px;
    }
    
    .adv_cta_subtitle_text {
        font-size: 14px;
    }
    
    .button {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .style-guide-card {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .listicle-banner-sale-badge {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    .text-block,
    .text-block-279 {
        font-size: 12px;
    }
    
    .text-size-tiny {
        font-size: 12px;
    }
    
    /* CTA - Old Structure */
    .adv-cta_grid {
        gap: 25px;
    }
    
    .h-cta {
        font-size: 24px;
    }
    
    .button-15 {
        padding: 16px 25px;
        font-size: 16px;
    }
    
    .bot_cta_badge_div {
        font-size: 12px;
        gap: 8px;
    }
    
    .ts-tiny {
        font-size: 12px;
    }
    
    /* Footer */
    .footer_section {
        padding: 30px 10px;
    }
    
    .footer_small-note {
        font-size: 12px;
    }
    
    .text-xs,
    .footer_legal-link {
        font-size: 13px;
    }
    
    .footer_link-wrapper {
        gap: 20px;
    }
}

/* Sticky Bottom CTA */
.pf-lorax-pdp-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pf-lorax-pdp-sticky.visible {
    transform: translateY(0);
}

.pf-lorax-pdp-sticky .pf-lorax-pdp-atc {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #016a4c;
    color: white;
    padding: 18px 50px 18px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    letter-spacing: 0.5px;
    border: 2px solid #028c76;
}

.pf-lorax-pdp-sticky .pf-lorax-pdp-atc:hover {
    background-color: #014a36;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(1, 106, 76, 0.3);
}

.pf-lorax-pdp-atc-text {
    text-align: center;
    flex: 1;
}

.pf-lorax-pdp-atc-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile Sticky CTA */
@media (max-width: 768px) {
    .pf-lorax-pdp-sticky {
        padding: 12px 15px;
    }
    
    .pf-lorax-pdp-sticky .pf-lorax-pdp-atc {
        font-size: 16px;
        padding: 16px 50px 16px 25px;
        max-width: none;
    }
    
    .pf-lorax-pdp-atc-arrow {
        width: 20px;
        height: 20px;
        right: 20px;
    }
}

/* Extra Small Mobile Sticky CTA */
@media (max-width: 480px) {
    .pf-lorax-pdp-sticky {
        padding: 10px 10px;
    }
    
    .pf-lorax-pdp-sticky .pf-lorax-pdp-atc {
        font-size: 14px;
        padding: 14px 45px 14px 20px;
        letter-spacing: 0.3px;
    }
    
    .pf-lorax-pdp-atc-arrow {
        width: 18px;
        height: 18px;
        right: 16px;
    }
}

/* Animation for timer updates */
.pf-lorax-sale-timer-item-time {
    transition: all 0.3s ease;
}

.pf-lorax-sale-timer-item-time.updating {
    transform: scale(1.1);
}

/* Print Styles */
@media print {
    .pf-lorax-ann,
    .pf-lorax-pdp-sticky,
    .adv-cta__button-holder {
        display: none;
    }
}

