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

body {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0;
    background: #fff;
    color: #000000;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Christmas Snowflakes Animation */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1em;
    font-family: Arial;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: fall linear infinite;
    opacity: 0.7;
}

.snowflake:nth-of-type(1) {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
    font-size: 0.8em;
}

.snowflake:nth-of-type(2) {
    left: 20%;
    animation-duration: 12s;
    animation-delay: 1s;
    font-size: 1em;
}

.snowflake:nth-of-type(3) {
    left: 30%;
    animation-duration: 11s;
    animation-delay: 2s;
    font-size: 0.9em;
}

.snowflake:nth-of-type(4) {
    left: 40%;
    animation-duration: 13s;
    animation-delay: 0.5s;
    font-size: 0.85em;
}

.snowflake:nth-of-type(5) {
    left: 50%;
    animation-duration: 10s;
    animation-delay: 1.5s;
    font-size: 1.1em;
}

.snowflake:nth-of-type(6) {
    left: 60%;
    animation-duration: 12s;
    animation-delay: 2.5s;
    font-size: 0.95em;
}

.snowflake:nth-of-type(7) {
    left: 70%;
    animation-duration: 11s;
    animation-delay: 0.8s;
    font-size: 0.9em;
}

.snowflake:nth-of-type(8) {
    left: 80%;
    animation-duration: 13s;
    animation-delay: 1.8s;
    font-size: 1.05em;
}

.snowflake:nth-of-type(9) {
    left: 90%;
    animation-duration: 10s;
    animation-delay: 0.3s;
    font-size: 0.85em;
}

.snowflake:nth-of-type(10) {
    left: 15%;
    animation-duration: 14s;
    animation-delay: 2.2s;
    font-size: 1em;
}

.snowflake:nth-of-type(11) {
    left: 65%;
    animation-duration: 11s;
    animation-delay: 1.2s;
    font-size: 0.9em;
}

.snowflake:nth-of-type(12) {
    left: 85%;
    animation-duration: 12s;
    animation-delay: 0.7s;
    font-size: 0.95em;
}

@keyframes fall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

div, form, h1, h2, h3, h4, h5, img, input, li, p, textarea, ul {
    margin: 0;
    padding: 0;
}

article, aside, figure, footer, header, main, nav, section {
    display: block;
}

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

img {
    border: none;
}

li {
    list-style: none;
}

.container {
    width: 1170px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    max-width: 100%;
}

/* Black Friday Banner */
.black-friday-banner {
    width: 100%;
    float: left;
}

.bf-top-section {
    background: #000;
    width: 100%;
    padding: 12px 0;
}

.bf-top-text {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}

.bf-bottom-section {
    background: #ACF4A1;
    width: 100%;
    padding: 12px 0;
}

.bf-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bf-order-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bf-code-btn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 45px;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
}

.bf-limited-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bf-countdown {
    display: flex;
    gap: 10px;
    align-items: center;
}

.countdown-box {
    background: #000;
    border-radius: 8px;
    padding: 10px 15px;
    text-align: center;
    min-width: 60px;
}

.countdown-number {
    font-size: 24px;
    line-height: 28px;
    font-weight: 800;
    color: #fff;
    font-family: 'Inter', monospace;
    letter-spacing: 0.5px;
}

.countdown-label {
    font-size: 11px;
    line-height: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

/* Top Strip (keeping for backward compatibility) */
.topStrip {
    background: #ACF4A1;
    float: left;
    width: 100%;
    padding: 6px 0;
    color: black;
    min-height: 68px;
    display: flex;
    align-items: center;
}

.topStrip p {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .5px;
    font-weight: 500;
}

.topStrip p span {
    color: #f02020;
}

.top-fix-bar {
    margin-bottom: 110px;
}

.top-fix-bar, .header {
    float: left;
    width: 100%;
}

.header {
    height: 110px;
    padding: 20px 0;
    margin-top: -110px;
    top: 110px;
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
}

.fixed-nav .header {
    position: fixed;
    z-index: 99;
    transition: margin .3s ease-out;
    margin-top: 0;
    top: 0;
    box-shadow: 0 3px 4px 0 rgba(0,0,0,.1);
    background: #fff;
}

.fixed-nav ul.topMenu {
    top: 70px;
}

@media only screen and (max-width: 767px) {
    .fixed-nav ul.topMenu {
        top: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .fixed-nav ul.topMenu {
        top: 65px;
    }
}

.logo {
    float: left;
    margin-top: 0;
    width: auto;
    min-width: 200px;
    flex-shrink: 0;
}

.logo-img {
    max-height: 70px;
    width: auto;
    height: auto;
    display: block;
}

ul.topMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

ul.topMenu li {
    float: left;
    padding: 4px 15px;
    position: relative;
}

ul.topMenu li:first-child {
    padding-left: 0;
}

ul.topMenu li:last-child {
    padding-right: 0;
}

ul.topMenu li a {
    color: #2c2c2c;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.3px;
    font-weight: 400;
    transition: color 0.3s ease;
}

ul.topMenu li:after {
    content: "";
    width: 1px;
    background: #d7d7d7;
    top: 7px;
    bottom: 7px;
    position: absolute;
    right: 0;
}

ul.topMenu li:last-child:after {
    display: none;
}

ul.topMenu li a.active,
ul.topMenu li a:hover {
    color: #007bc9;
}

.nav-btn {
    float: right;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    text-align: center;
    border-radius: 45px;
    background: #f02020;
    font-weight: 800;
    letter-spacing: .5px;
    margin-top: 0;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    -webkit-box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    text-shadow: 0 1px 2px rgb(0 0 0/30%);
}

.nav-btn:hover {
    background: #d91e1e;
}

.nav-btn span {
    color: #fffc00;
    font-size: 18px;
    line-height: 1;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #2c2c2c;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* Banner */
.banner,
.n-1 {
    float: left;
    width: 100%;
    overflow: hidden;
    padding: 40px 0 60px;
    background: #fdf8ec;
    position: relative;
}

.banner-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.banner-left {
    float: left;
    width: 55%;
    text-align: left;
    padding: 20px 0;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.banner-subheading {
    font-size: 20px;
    line-height: 28px;
    color: #f02020;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.banner-heading {
    float: left;
    width: 100%;
    font-size: 42px;
    line-height: 52px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 15px;
    box-sizing: border-box;
    word-wrap: break-word;
}

.banner-heading .highlight-off {
    color: #f02020;
    font-size: 48px;
    font-weight: 800;
}

.banner-rating {
    float: left;
    width: 100%;
    margin: 15px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 15px;
    line-height: 20px;
    color: #2c2c2c;
    font-weight: 500;
}

.banner-product-title {
    float: left;
    width: 100%;
    font-size: 22px;
    line-height: 30px;
    font-weight: 800;
    color: #2c2c2c;
    margin: 20px 0 15px;
    box-sizing: border-box;
    word-wrap: break-word;
}


ul.banner-features {
    float: left;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    list-style: none;
}

ul.banner-features li {
    float: left;
    width: 100%;
    margin-top: 8px;
    padding-left: 25px;
    font-size: 18px;
    line-height: 28px;
    color: #2c2c2c;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0;
    position: relative;
}

ul.banner-features li:before {
    content: "?";
    position: absolute;
    left: 0;
    color: #f02020;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
}

.banner-right {
    float: right;
    width: 45%;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.banner-product-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: url(images/banner.12b8df89.webp) no-repeat center right;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
}

.product-image-wrapper {
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 400px;
    z-index: 3;
}

.guarantee-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.guarantee-badge p {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    font-weight: 800;
    color: #000;
    margin: 0;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.botton {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 430px;
    margin-top: 30px;
}

a.click-btn {
    display: flex;
    justify-content: center;
    float: left;
    padding: 12px 24px;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    text-align: center;
    border-radius: 45px;
    background: #f02020;
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    -webkit-box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    text-shadow: 0 1px 2px rgb(0 0 0/30%);
    transition: background-color 0.3s ease;
}

a.click-btn:hover {
    background: #d91e1e;
}

a.click-btn span {
    color: #fffc00;
}

.btn-ofr-text {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    color: #000;
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: .5px;
    text-align: center;
}

.btn-ofr-text span {
    color: #fc2500;
}

.banner-bottom {
    padding: 0;
}

.banner-bottom, ul.promise-list {
    float: left;
    width: 100%;
}

ul.promise-list {
    margin-top: 40px;
}

ul.promise-list li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 30px;
    position: relative;
    text-align: center;
}

ul.promise-list li:after {
    position: absolute;
    content: "";
    border-right: 1px solid #cfdde2;
    top: 30px;
    right: 0;
    bottom: 5px;
}

ul.promise-list li:first-child {
    padding-left: 0;
}

ul.promise-list li:last-child:after {
    display: none;
    padding-right: 0;
}

ul.promise-list li p {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 25px;
    color: #262626;
    font-weight: 500;
    letter-spacing: .3px;
    margin-top: 9px;
}

/* Section 1 */
.section-1 {
    float: left;
    width: 100%;
  
    background: #fff;
    position: relative;
    overflow: hidden;
}

.section-1 .container {
    overflow: visible;
}

/* Hero Wrapper - Two Column Layout */
.s1-hero-wrapper {
    display: flex;
    gap: 50px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Left Column - Product Information */
.s1-left-column {
    flex: 0 0 48%;
    width: 48%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Rating */
.s1-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.s1-stars {
    color: #22c55e;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
}

.s1-rating-text {
    font-size: 13px;
    line-height: 18px;
    color: #2c2c2c;
    font-weight: 500;
}

/* Headline */
.s1-headline {
    font-size: 40px;
    line-height: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.s1-headline-highlight {
    position: relative;
    display: inline-block;
}

.s1-headline-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: #fffc00;
    z-index: -1;
}

/* Sub-headline */
.s1-subheadline {
    font-size: 18px;
    line-height: 24px;
    color: #2c2c2c;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Features List */
.s1-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.s1-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

.s1-checkmark {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    object-fit: contain;
}

/* TARIFF FREE Banner */
.s1-tariff-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 2px solid #9333ea;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 20px;
}

.s1-flag-icon {
    width: 20px;
    height: 15px;
    object-fit: contain;
}

.s1-tariff-banner span {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Button */
.s1-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 800;
    color: #fff;
    background: #f02020;
    border-radius: 45px;
    text-decoration: none;
    box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    -webkit-box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    -moz-box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.s1-cta-button:hover {
    background: #d91e1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 0 rgba(0,0,0,.4);
}

.s1-cta-button span {
    font-size: 20px;
    color: #fff;
}

/* Shipping Info */
.s1-shipping-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.s1-ship-by {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #000;
    font-weight: 500;
}

.s1-ship-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.s1-stock-levels {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #000;
    font-weight: 500;
}

.s1-stock-bar {
    position: relative;
    width: 120px;
    height: 20px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.s1-stock-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: #dc2626;
    border-radius: 10px;
}

.s1-stock-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    z-index: 1;
}

/* Testimonial */
.s1-testimonial {
    margin-top: auto;
    padding: 18px;
    background: #f9fafb;
    border-radius: 12px;
}

.s1-testimonial-stars {
    color: #22c55e;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.s1-testimonial-text {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    margin-bottom: 12px;
    font-style: italic;
}

.s1-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s1-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.s1-testimonial-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.s1-testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.s1-testimonial-verified {
    font-size: 12px;
    color: #6b7280;
}

/* Right Column - Product Image */
.s1-right-column {
    flex: 0 0 52%;
    width: 52%;
    position: relative;
    display: flex;
    align-items: stretch;
}

.s1-product-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

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

/* UNISEX Badge */
.s1-unisex-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    white-space: nowrap;
}

/* 90 DAY Guarantee Badge */
.s1-guarantee-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 140px;
    height: 140px;
    background: #fffc00;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid #000;
}

.s1-guarantee-top {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    line-height: 28px;
    text-align: center;
}

.s1-guarantee-bottom {
    font-size: 11px;
    font-weight: 700;
    color: #000;
    line-height: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Best-in-Class Heating Power Section */
.s1-heating-power {
    margin-top: 80px;
    padding: 60px 0;
}

.s1-heating-power-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.s1-heating-power-left {
    flex: 0 0 55%;
}

.s1-heating-power-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.s1-heating-power-right {
    flex: 0 0 45%;
}

.s1-heating-power-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #dc2626;
    border-radius: 50px;
    width: fit-content;
}

.s1-heating-power-badge-icon {
    width: 40px;
    height: 40px;
    background: #dc2626;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.s1-heating-power-badge span {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s1-heating-power-heading {
    font-size: 42px;
    line-height: 52px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.s1-heating-power-text {
    font-size: 18px;
    line-height: 28px;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.s1-heating-power-features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.s1-heating-power-feature-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.s1-heating-power-feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.s1-heating-power-feature-item p {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

/* Experience Premium Comfort Section */
.s1-premium-comfort {
    margin-top: 80px;
    padding: 60px 0;
    background: #f9fafb;
}

.s1-premium-comfort-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.s1-premium-comfort-left {
    flex: 0 0 50%;
}

.s1-premium-comfort-heading {
    font-size: 42px;
    line-height: 52px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.s1-premium-comfort-text {
    font-size: 18px;
    line-height: 28px;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.s1-premium-comfort-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.s1-premium-comfort-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.s1-premium-comfort-rating {
    margin-bottom: 20px;
}

.s1-premium-comfort-stars {
    color: #d1d5db;
    font-size: 20px;
    letter-spacing: 2px;
}

.s1-premium-comfort-review {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.s1-premium-comfort-review-text {
    font-size: 15px;
    line-height: 22px;
    color: #000;
    margin-bottom: 10px;
    font-style: italic;
}

.s1-premium-comfort-review-author {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.s1-premium-comfort-right {
    flex: 0 0 50%;
}

.s1-premium-comfort-images {
    display: block;
}

.s1-premium-comfort-image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.s1-premium-comfort-image-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.s1-premium-comfort-image-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* Enjoy Lasting Warmth Section */

.s1-lasting-warmth-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.s1-lasting-warmth-left {
    flex: 0 0 50%;
}

.s1-lasting-warmth-image-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

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

.s1-lasting-warmth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.s1-heating-zones {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.s1-heating-zone-front,
.s1-heating-zone-back {
    position: absolute;
    border: 2px solid #f02020;
    background: rgba(255, 107, 0, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #f02020;
}

.s1-heating-zone-front {
    top: 20%;
    left: 20%;
}

.s1-heating-zone-back {
    bottom: 20%;
    right: 20%;
}

.s1-overheating-protection-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.s1-overheating-protection-badge img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.s1-overheating-protection-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

.s1-lasting-warmth-right {
    flex: 0 0 50%;
}

.s1-lasting-warmth-heading {
    font-size: 42px;
    line-height: 52px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.s1-lasting-warmth-text {
    font-size: 18px;
    line-height: 28px;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.s1-lasting-warmth-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.s1-lasting-warmth-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.s1-lasting-warmth-tariff {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid #dc2626;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 25px;
}

.s1-lasting-warmth-tariff span {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s1-lasting-warmth-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 800;
    color: #fff;
    background: #f02020;
    border-radius: 45px;
    text-decoration: none;
    box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    -webkit-box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    -moz-box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.s1-lasting-warmth-cta:hover {
    background: #d91e1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 0 rgba(0,0,0,.4);
}

.s1-lasting-warmth-cta span {
    font-size: 20px;
    color: #fff;
}

.s1-lasting-warmth-shipping {
    font-size: 14px;
    color: #2c2c2c;
    font-weight: 500;
}

.s1-stock-indicator {
    color: #dc2626;
    font-weight: 700;
}

/* Machine Washable Section */
.s1-machine-washable {
    margin-top: 80px;
    padding: 60px 0;
    background: #f9fafb;
}

.s1-machine-washable-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.s1-machine-washable-left {
    flex: 0 0 50%;
}

.s1-machine-washable-heading {
    font-size: 42px;
    line-height: 52px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.s1-machine-washable-text {
    font-size: 18px;
    line-height: 28px;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.s1-machine-washable-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.s1-machine-washable-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.s1-machine-washable-rating {
    margin-bottom: 20px;
}

.s1-machine-washable-stars {
    color: #d1d5db;
    font-size: 20px;
    letter-spacing: 2px;
}

.s1-machine-washable-review {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.s1-machine-washable-review-text {
    font-size: 15px;
    line-height: 22px;
    color: #000;
    margin-bottom: 10px;
    font-style: italic;
}

.s1-machine-washable-review-author {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.s1-machine-washable-right {
    flex: 0 0 50%;
}

.s1-machine-washable-image-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

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

.s1-machine-washable-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 120px;
    height: 120px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.s1-life-banner {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 0;
    display: block;
    position: relative;
}

.s1-life-banner-image {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

.s1-life-banner-content {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    max-width: 45%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s1-life-banner-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

.s1-life-banner-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.s1-life-banner-logo {
    display: flex;
    align-items: flex-start;
}

.s1-life-banner-logo-icon {
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s1-life-banner-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive styles for s1-life-banner */
@media (max-width: 1024px) {
    .s1-life-banner-content {
        max-width: 50%;
        right: 3%;
    }
    
    .s1-life-banner-heading {
        font-size: 36px;
    }
    
    .s1-life-banner-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .s1-life-banner-content {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        max-width: 100%;
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.95);
        margin-top: -60px;
    }
    
    .s1-life-banner-heading {
        font-size: 32px;
    }
    
    .s1-life-banner-text {
        font-size: 15px;
    }
    
    .s1-life-banner-logo-icon {
        width: 80px;
        height: 80px;
    }
}

/* Small and Strong Section */
.s1-small-strong {
    float: left;
    width: 100%;
    margin-top: 0;
    padding: 40px 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.s1-small-strong .container {
    position: relative;
    z-index: 2;
}

.s1-small-strong-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    min-height: auto;
}

.s1-small-strong-left {
    flex: 0 0 50%;
}

.s1-small-strong-heading {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.s1-small-strong-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0 0 25px 0;
    opacity: 0.9;
}

.s1-small-strong-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.s1-small-strong-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.s1-small-strong-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.s1-small-strong-feature-icon svg {
    width: 30px;
    height: 30px;
}

.s1-small-strong-feature-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s1-small-strong-right {
    flex: 0 0 50%;
}

.s1-small-strong-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive styles for s1-small-strong */
@media (max-width: 1024px) {
    .s1-small-strong {
        padding: 35px 0;
    }
    
    .s1-small-strong-wrapper {
        gap: 30px;
    }
    
    .s1-small-strong-heading {
        font-size: 32px;
    }
    
    .s1-small-strong-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .s1-small-strong-features {
        gap: 15px;
    }
    
    .s1-small-strong-feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .s1-small-strong-feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .s1-small-strong-feature-label {
        font-size: 11px;
    }
    
    .limited-time-offer-left {
        padding: 50px 40px;
    }
    
    .limited-time-heading {
        font-size: 28px;
        line-height: 38px;
    }
}

@media (max-width: 768px) {
    .s1-small-strong {
        margin-top: 0;
        padding: 30px 0;
    }
    
    .s1-small-strong-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .s1-small-strong-left,
    .s1-small-strong-right {
        flex: 1;
        width: 100%;
    }
    
    .s1-small-strong-heading {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .s1-small-strong-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .s1-small-strong-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .s1-small-strong-feature-item {
        gap: 8px;
    }
    
    .s1-small-strong-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .s1-small-strong-feature-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .s1-small-strong-feature-label {
        font-size: 10px;
    }
}

.btn-txt {
    float: left;
    width: 100%;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.btn-text1 {
    display: inline-block;
    color: #6fb620;
    font-weight: 500;
}

.btn-text1 span {
    font-weight: 700;
}

.btn-text2 {
    display: inline-block;
    color: #000;
    font-weight: 500;
}

.btn-text2 span {
    color: #FC2201;
    font-weight: 700;
}

.bnr-indt {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    width: 12px;
    height: 12px;
}

.pl {
    padding-left: 10px;
    margin: auto 0;
}

.hide-mob {
    display: block;
}

.show-mob {
    display: none;
}

.pulse {
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}

.common-text {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    color: #000000 !important;
    letter-spacing: .2px;
    margin-top: 10px;
}

.common-text strong {
    font-weight: 500;
}

.top0 {
    margin-top: 0;
}

.s1-bottom {
    float: left;
    width: 100%;
    padding: 0 70px;
    margin-top: 35px;
}

.s1-btm-text {
    float: left;
    width: 100%;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
}

ul.s1-prms-list {
    float: left;
    width: 100%;
    margin-top: 20px;
}

ul.s1-prms-list li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 40px;
}

ul.s1-prms-list li p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

/* Features Section */
.section-features {
    float: left;
    width: 100%;
    padding: 60px 0;
    background: #fdf8ec;
    position: relative;
}

.features-header {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

.features-subheading {
    font-size: 18px;
    line-height: 24px;
    color: #f02020;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.features-heading {
    font-size: 48px;
    line-height: 58px;
    font-weight: 800;
    color: #000;
    margin: 0;
    letter-spacing: 0;
}

.feature-item {
    float: left;
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    width: 50%;
    text-align: left;
}

.feature-number {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-num {
    color: #f02020;
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
}

.feature-title {
    color: #000;
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
}

.feature-text {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    margin: 0;
    letter-spacing: 0.2px;
}

.feature-image {
    width: 50%;
    flex-shrink: 0;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.feature-split {
    display: flex;
    gap: 20px;
}

.split-left,
.split-right {
    width: 50%;
    text-align: center;
}

.split-left h3,
.split-right h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.split-left {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 15px;
}

.split-right {
    background: #fff3e0;
    padding: 20px;
    border-radius: 15px;
}

.split-left img,
.split-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.features-footer {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
}

.features-footer .click-btn {
    margin: 0 auto;
    max-width: 500px;
    float: none;
    display: block;
}

/* Section 2 */
.section-2 {
    float: left;
    width: 100%;
    padding: 60px 0;
    background: #f5fbff;
    position: relative;
}

.s2-top {
    float: left;
    width: 47%;
    text-align: left;
    margin-top: 20px;
}

.common-heading.head-line1 {
    padding-bottom: 35px;
}

.s2-feature-box {
    width: 48%;
    background: #fff;
    box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
    border-radius: 15px;
    margin-top: 50px;
    position: relative;
}

.s2-ftr-abot {
    float: left;
    width: 100%;
    padding: 30px;
    text-align: left;
    position: relative;
}

.bx-no-text {
    float: left;
    width: 100%;
    font-size: 26px;
    line-height: 32px;
    color: #000000;
}

.s2-ftr-head {
    float: left;
    width: 100%;
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    color: #ff6651;
    letter-spacing: .5px;
    margin-top: 10px;
}

.addt-featr {
    float: right;
    width: 47%;
    margin-top: 30px;
    padding-bottom: 30px;
}

.ad-ftr-text {
    float: left;
    width: 100%;
    font-size: 24px;
    line-height: 30px;
    color: #1d1d1d;
    font-weight: 700;
}

.addt-featr-list {
    float: left;
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.featr-list-box {
    float: left;
    width: 32%;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(61,87,150,1) 1%, rgba(71,132,155,1) 52%, rgba(78,169,160,1));
    padding: 2px;
}

.featr-list-box-inner {
    float: left;
    width: 100%;
    padding: 30px 4px;
    background: #f1f7fb;
    border-radius: 8px;
}

.featr-list-box-inner p {
    float: left;
    width: 100%;
    font-size: 19px;
    line-height: 26px;
    color: #000000;
    font-weight: 500;
    margin-top: 15px;
}

/* Section 3 */
.section-3 {
    float: left;
    width: 100%;
    padding: 0;
    background: #fff;
    position: relative;
}

.head-line {
    padding-bottom: 35px;
}

.s3-mid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-top: 25px;
}

.s3-mid, .s3-mid-head {
    float: left;
    width: 100%;
}

.s3-mid-head {
    position: relative;
}

.s3-mid-head:before {
    position: absolute;
    content: "";
    left: 0;
    top: 18px;
    height: 1px;
    width: 100%;
    background: #b9c4d7;
}

.s3-mid-head span {
    padding: 0 15px 9px;
    border-radius: 30px;
    font-size: 26px;
    line-height: 34px;
    color: #000000;
    font-weight: 500;
    background: #fff;
    position: relative;
    z-index: 2;
}

.s3-mid-col {
    float: left;
    width: 12.9%;
    text-align: center;
    margin-top: 25px;
}

.s3-mid-col p {
    float: left;
    width: 100%;
    font-size: 19px;
    line-height: 26px;
    color: #000000;
    font-weight: 500;
    margin-top: 10px;
}

/* Section 4 */
.section-4 {
    float: left;
    width: 100%;
    padding: 60px 0;
    background: #f5fbff;
    position: relative;
}

/* Section 5 */
.section-5 {
    padding: 40px 0;
    float: left;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.section-5 .container {
    overflow: visible;
}

.comparison-header {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.comparison-subheading {
    font-size: 16px;
    line-height: 20px;
    color: #f02020;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comparison-heading {
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
    color: #000;
    margin: 0;
    letter-spacing: 0;
}

.comparison-table {
    display: flex;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    border: none;
    position: relative;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.comp-features-col {
    flex: 0 0 calc(35% - 6px);
    background: #fff;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    margin-right: 8px;
}

.comp-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comp-features-list li {
    padding: 12px 15px;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    border-bottom: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
    min-height: 48px;
}

.comp-features-list li:last-child {
    border-bottom: none;
}

.comp-product-col {
    flex: 0 0 calc(21.67% - 6px);
    padding: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-right: 8px;
}

.comp-product-col:last-child {
    margin-right: 0;
}

.comp-heatspace {
    background: #e8eded;
    color: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed #475858;
}

.comp-competitor {
    background:lightslategrey;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.comp-product-header {
    padding: 15px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.comp-product-img {
    width: 80px;
    height: auto;
    margin: 0 auto 8px;
    display: block;
    border-radius: 0;
}

.comp-stars {
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.comp-product-name {
    font-size: 14px;
    line-height: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.comp-product-name-logo {
    height: 18px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.comp-features-check {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.comp-features-check li {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.comp-features-check li:last-child {
    border-bottom: none;
}

.check-mark {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.comp-heatspace .check-mark {
    color: #000;
}

.comp-competitor .check-mark {
    color: #fff;
}

.x-mark {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: inline-block;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.comp-competitor .x-mark {
    color: #000;
}

/* Section Guarantee */
.section-guarantee {
    width: 100%;
    padding: 60px 0;
    background: #000;
    position: relative;
    clear: both;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    margin: 0 auto;
}

.guarantee-badge-large {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 4px solid #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,215,0,0.4);
    position: relative;
}

.guarantee-badge-large:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.gty-badge-top {
    font-size: 14px;
    line-height: 16px;
    font-weight: 800;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.gty-badge-middle {
    font-size: 28px;
    line-height: 32px;
    font-weight: 900;
    color: #000;
    margin: 5px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.gty-badge-bottom {
    font-size: 14px;
    line-height: 16px;
    font-weight: 800;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.guarantee-text {
    flex: 1;
    color: #fff;
}

.guarantee-heading {
    font-size: 48px;
    line-height: 58px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.guarantee-description {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 0.2px;
}

.guarantee-cta {
    margin-top: 30px;
}

.guarantee-cta .click-btn {
    margin-bottom: 15px;
}

/* Section 6 - Testimonials */
.section-6 {
    float: left;
    width: 100%;
    padding: 60px 0;
    background: #ffffff;
}

.testimonials-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    clear: both;
}

.testimonials-label {
    font-size: 18px;
    line-height: 24px;
    color: #f02020;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonials-heading {
    font-size: 38px;
    line-height: 58px;
    font-weight: 800;
    color: #000;
    margin: 0;
    letter-spacing: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0 0 15px 0;
    display: block;
    border-radius: 8px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
    min-height: 72px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

.testimonial-name {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #000;
}

.testimonial-verified {
    font-size: 14px;
    line-height: 20px;
    color: #43A047;
    font-weight: 500;
}

.testimonials-footer {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    clear: both;
}

.testimonials-footer .click-btn {
    margin: 0 auto;
    max-width: 500px;
    float: none;
    display: block;
}

/* Limited Time Offer Section */
.limited-time-offer {
    float: left;
    width: 100%;
    background: #000;
}

.limited-time-offer .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.limited-time-offer-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    min-height: 500px;
    margin: 0;
    padding: 0;
}

.limited-time-offer-left {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 60px;
    box-sizing: border-box;
}

.limited-time-offer-right {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    align-items: stretch;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.limited-time-rating {
    margin-bottom: 16px;
}

.limited-time-stars {
    color: #00ff00;
    font-size: 14px;
    margin-bottom: 6px;
}

.limited-time-rating-text {
    font-size: 13px;
    color: #fff;
    margin: 0;
}

.limited-time-heading {
    font-size: 32px;
    line-height: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.limited-time-highlight {
    color: #FF8B2F;
}

.limited-time-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.limited-time-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
}

.limited-time-checkmark {
    color: #FF8B2F;
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    width: 18px;
}

.limited-time-tariff {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    padding: 6px 12px;
    margin-bottom: 20px;
    gap: 6px;
}

.limited-time-flag {
    width: 18px;
    height: auto;
}

.limited-time-tariff-text {
    font-size: 12px;
    font-weight: 800;
    color: #000;
}

.limited-time-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    text-align: center;
    border-radius: 45px;
    background: #f02020;
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    -webkit-box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    -moz-box-shadow: 0 2px 9px 0 rgba(0,0,0,.3);
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.limited-time-cta-btn:hover {
    background: #d91e1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 0 rgba(0,0,0,.4);
}

.limited-time-arrow {
    margin-left: 8px;
}

.limited-time-shipping-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #fff;
}

.limited-time-shipping-icon {
    color: #00ff00;
    font-size: 10px;
}

.limited-time-shipping-text {
    color: #fff;
}

.limited-time-stock-bars {
    display: flex;
    gap: 3px;
    align-items: center;
}

.stock-bar {
    width: 10px;
    height: 6px;
    background: #6C6C6C;
    display: inline-block;
}

.stock-bar-low {
    background: #f02020;
}

.limited-time-stock-text {
    color: #fff;
    font-weight: 700;
}

.limited-time-image {
    width: 100% !important;
    height: 100%;
    display: block;
    object-fit: cover;
    flex-shrink: 0;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    min-width: 100%;
    max-width: 100%;
}

.testi-sec {
    float: left;
    width: 100%;
    padding: 0 90px;
    margin-top: 40px;
}

.testi-row {
    float: left;
    width: 100%;
    text-align: left;
    padding: 0 0 35px;
    margin: 20px 0;
    border-bottom: 1px solid #d7d7d7;
}

.testi-row:last-child {
    border: none;
    padding-bottom: 0;
}

.testi-row-lft {
    display: inline-block;
    vertical-align: top;
    width: 260px;
    padding-right: 15px;
}

.testi-lft-abt {
    float: left;
    width: 100%;
    padding: 10px 0 10px 90px;
    position: relative;
}

.testi-pics {
    position: absolute;
    left: 0;
    top: 4px;
    width: 70px;
    height: 70px;
    background: #3d9fea;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
    line-height: 70px;
    text-align: center;
}

.t-name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #000000;
}

.t-vryfd {
    font-size: 17px;
    color: #83cc1c;
    margin-top: 7px;
}

.testi-row-rght {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 270px);
    padding: 8px 0 8px 30px;
    border-left: 1px solid #d7d7d7;
}

.testi-row-rght span {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: .5px;
    float: left;
    width: 100%;
    color: #000000;
    margin-top: 15px;
}

.testi-paragraph {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    color: #000000;
    margin-top: 15px;
}

/* Section 7 */
.section-7 {
    float: left;
    width: 100%;
    padding: 60px 0;
    position: relative;
    background: #f6f6f6;
}

.faq-container {
    display: inline-block;
    vertical-align: middle;
    max-width: 970px;
    width: 100%;
    margin: 40px 0 20px;
}

.accordion {
    background: url(images/close-btn.0201e722.webp) no-repeat 97%;
    padding: 20px 40px 20px 0;
    font-size: 22px;
    line-height: 28px;
    border-bottom: 1px solid #d8d9d9;
    cursor: pointer;
    text-align: left;
    color: #000;
    font-weight: 500;
}

.accordion.accordion-open {
    background: url(images/open-btn.310fb5e7.webp) no-repeat 97%;
    border: none;
    border-bottom: 1px solid #d8d9d9;
}

.acdn-content {
    padding: 20px 20px 0 0;
}

.acdn-para {
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 15px;
    text-align: left;
}

/* Footer */
.footer {
    float: left;
    width: 100%;
    padding: 40px 0 30px;
}

.footer1 {
    float: left;
    width: 100%;
    border-bottom: 1px solid #c0c0c0;
    padding-bottom: 25px;
}

.ftr-logo {
    display: block;
    margin: 0 auto;
    width: 200px;
    text-align: center;
}

.footer-logo-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.footer-text {
    float: left;
    width: 100%;
    font-size: 17px;
    line-height: 22px;
    color: #333333;
    margin-top: 15px;
    letter-spacing: .5px;
    text-align: center;
}

.footer-text a {
    padding: 0 10px;
    color: #007bc9;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer2 {
    float: left;
    width: 100%;
    padding-top: 20px;
    text-align: center;
}

.footer-dmca {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    margin-top: 10px;
    text-align: center;
}

.footer-dmca a {
    color: #007bc9;
    text-decoration: none;
}

.footer-dmca a:hover {
    text-decoration: underline;
}

/* Responsive */
@media only screen and (max-width: 1187px) {
    .container {
        width: 1004px;
        padding: 0 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .banner-wrapper {
        gap: 30px;
    }

    .banner-left {
        width: 55%;
    }

    .banner-right {
        width: 45%;
    }

    .banner-heading {
        font-size: 36px;
        line-height: 46px;
    }

    .banner-heading .highlight-off {
        font-size: 40px;
    }

    .s1-hero-wrapper {
        gap: 40px;
    }

    .s1-headline {
        font-size: 42px;
        line-height: 52px;
    }

    .s1-heating-power {
        margin-top: 60px;
        padding: 50px 0;
    }

    .s1-heating-power-content {
        gap: 40px;
    }

    .s1-heating-power-heading,
    .s1-premium-comfort-heading,
    .s1-lasting-warmth-heading,
    .s1-machine-washable-heading {
        font-size: 36px;
        line-height: 46px;
    }

    .s1-premium-comfort-wrapper,
    .s1-lasting-warmth-wrapper,
    .s1-machine-washable-wrapper {
        gap: 40px;
    }

    .section-features {
        padding: 50px 0;
    }

    .feature-item {
        gap: 40px;
    }

    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media only screen and (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

    .top-fix-bar {
        margin-bottom: 80px;
    }

    .header {
        height: 80px;
        padding: 15px 0;
    }

    .logo-img {
        max-height: 60px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    ul.topMenu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px 0;
        margin: 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

    ul.topMenu.mobile-open {
        left: 0;
    }

    ul.topMenu li {
        width: 100%;
        padding: 0;
        float: none;
    }

    ul.topMenu li:after {
        display: none;
    }

    ul.topMenu li a {
        display: block;
        padding: 15px 25px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 16px;
    }

    ul.topMenu li a:hover {
        background: #f5f5f5;
        color: #007bc9;
    }

    .nav-btn {
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
        float: none;
        padding: 10px 20px;
        font-size: 14px;
    }

    .banner .container,
    .n-1 .container {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .banner-wrapper {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        align-items: center !important;
    }

    .banner-left {
        width: 100% !important;
        float: none !important;
        text-align: center;
        order: 1;
    }

    .banner-right {
        width: 100% !important;
        float: none !important;
        position: relative !important;
        margin: 0 auto !important;
        max-width: 100%;
        overflow: hidden;
        order: 2;
        align-self: center !important;
        display: flex;
        justify-content: center;
    }

    .banner-product-container {
        height: 400px;
        background-position: center center;
        margin: 0 auto;
    }
    
    .product-image-wrapper {
        right: auto !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .section-1 {
        padding: 40px 0;
        overflow: hidden;
    }

    .section-1 .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .s1-hero-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .s1-left-column {
        flex: 0 0 100%;
        width: 100%;
        padding: 0;
    }

    .s1-right-column {
        flex: 0 0 100%;
        width: 100%;
        order: -1;
    }

    .s1-headline {
        font-size: 32px;
        line-height: 40px;
    }

    .s1-subheadline {
        font-size: 18px;
        line-height: 24px;
    }

    .s1-features-list li {
        font-size: 16px;
        line-height: 24px;
    }

    .s1-cta-button {
        width: 100%;
        font-size: 16px;
        padding: 16px 24px;
    }

    .s1-guarantee-badge {
        width: 120px;
        height: 120px;
        bottom: 15px;
        right: 15px;
    }

    .s1-guarantee-top {
        font-size: 20px;
        line-height: 24px;
    }

    .s1-guarantee-bottom {
        font-size: 10px;
        line-height: 12px;
    }

    .s1-unisex-badge {
        font-size: 12px;
        padding: 10px 20px;
        top: 15px;
    }

    .feature-item {
        flex-direction: column !important;
    }

    .feature-content {
        width: 100%;
    }

    .feature-image {
        width: 100%;
    }

    .section-5 {
        overflow: hidden;
    }

    .section-5 .container {
        padding: 0 15px;
    }

    .comparison-table {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .comp-features-col {
        min-width: 250px;
        max-width: 250px;
        flex-shrink: 0;
    }

    .comp-product-col {
        min-width: 250px;
        max-width: 250px;
        flex-shrink: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-left {
        width: 100%;
    }
    
    .banner-heading {
        font-size: 35px;
        line-height: 45px;
    }
    
    .s1-header {
        margin-bottom: 25px;
    }
    
    .s1-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .s1-left,
    .s1-right {
        width: 100%;
    }
    
    .common-heading h1 {
        font-size: 42px;
        line-height: 52px;
    }
    
    .s1-blue-box {
        min-height: auto;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .s1-icon-bar {
        width: 70px;
        height: 70px;
    }
    
    .s1-icon-bar img {
        width: 40px;
        height: 40px;
    }
    
    .s1-feature-content h3 {
        font-size: 20px;
        line-height: 26px;
    }
    
    .s1-feature-content p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .guarantee-heading {
        font-size: 38px;
        line-height: 48px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonials-heading {
        font-size: 38px;
        line-height: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .topStrip p {
        font-size: 13px;
        line-height: 17px;
    }
    
    .bf-top-section {
        padding: 10px 0;
    }

    .bf-bottom-section {
        padding: 10px 0;
    }
    
    .bf-top-text {
        font-size: 11px;
        line-height: 16px;
        padding: 0 10px;
        letter-spacing: 0.5px;
    }
    
    .bf-bottom-content {
        flex-direction: column;
        gap: 12px;
        padding: 10px;
    }
    
    .bf-order-text,
    .bf-limited-text {
        font-size: 11px;
        line-height: 16px;
    }
    
    .bf-code-btn {
        padding: 6px 15px;
        font-size: 14px;
    }
    
    .bf-countdown {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-box {
        padding: 6px 10px;
        min-width: 45px;
    }
    
    .countdown-number {
        font-size: 18px;
        line-height: 22px;
    }
    
    .countdown-label {
        font-size: 9px;
        line-height: 11px;
    }
    
    .top-fix-bar {
        margin-bottom: 70px;
    }
    
    .logo {
        width: 140px;
        min-width: 140px;
    }

    .logo-img {
        max-height: 50px;
    }
    
    .header {
        height: 70px;
        padding: 12px 0;
    }

    .mobile-menu-toggle {
        right: 10px;
        width: 28px;
        height: 28px;
    }
    
    ul.topMenu {
        top: 70px;
        height: calc(100vh - 70px);
        max-width: 280px;
    }
    
    .nav-btn {
        right: 45px;
        padding: 8px 16px;
        font-size: 12px;
        white-space: nowrap;
    }

    .nav-btn span {
        font-size: 14px;
    }
    
    .banner,
    .n-1 {
        padding: 15px 0 30px;
        background: #fdf8ec;
        overflow: hidden;
    }

    .banner .container,
    .n-1 .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box;
        margin: 0;
    }
    
    .banner-wrapper {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        align-items: center !important;
    }
    
    .banner-left {
        width: 100% !important;
        float: none !important;
        text-align: left;
        padding: 0;
        box-sizing: border-box;
        order: 1;
    }
    
    .banner-subheading {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 8px;
    }
    
    .banner-heading {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px;
        text-align: left;
        width: 100%;
        float: none;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .banner-heading .highlight-off {
        font-size: 28px;
        line-height: 32px;
        display: block;
        margin-top: 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .banner-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin: 12px 0 15px;
        float: none;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stars {
        font-size: 16px;
    }
    
    .rating-text {
        font-size: 12px;
        line-height: 18px;
    }
    
    .banner-product-title {
        font-size: 16px;
        line-height: 22px;
        margin: 15px 0 10px;
        float: none;
        width: 100%;
        word-wrap: break-word;
    }
    
    ul.banner-features {
        margin-top: 10px;
    }
    
    ul.banner-features li {
        font-size: 14px;
        line-height: 22px;
        margin-top: 6px;
        padding-left: 20px;
    }

    ul.banner-features li:before {
        font-size: 20px;
    }
    
    .botton {
        max-width: 100%;
        margin-top: 20px;
    }

    a.click-btn {
        font-size: 16px;
        padding: 12px;
        line-height: 24px;
    }

    .btn-ofr-text {
        font-size: 12px;
        margin-top: 6px;
    }
    
    .banner-right {
        width: 100% !important;
        float: none !important;
        box-sizing: border-box;
        position: relative !important;
        margin: 0 auto !important;
        max-width: 100%;
        overflow: hidden;
        order: 2;
        align-self: center !important;
        display: flex;
        justify-content: center;
    }
    
    .banner-product-container {
        height: 350px;
        background-size: cover;
        background-position: center center;
        border-radius: 10px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .product-image-wrapper {
        right: auto !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .guarantee-badge {
        width: 90px;
        height: 90px;
        right: 10px;
        top: 10px;
    }
    
    .guarantee-badge p {
        font-size: 9px;
        line-height: 11px;
        padding: 5px;
    }
    
    ul.promise-list {
        margin-top: 25px;
        flex-direction: column;
        gap: 15px;
    }

    ul.promise-list li {
        padding: 0;
        display: block;
    }

    ul.promise-list li:after {
        display: none;
    }

    ul.promise-list li p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .section-1 {
        padding: 20px 0;
        overflow: hidden;
    }

    .section-1 .container {
        padding: 0 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .s1-hero-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .s1-left-column {
        flex: 0 0 100%;
        width: 100%;
        padding: 0;
    }

    .s1-right-column {
        flex: 0 0 100%;
        width: 100%;
        order: -1;
    }

    .s1-rating {
        flex-wrap: wrap;
        gap: 8px;
    }

    .s1-stars {
        font-size: 18px;
    }

    .s1-rating-text {
        font-size: 12px;
    }

    .s1-headline {
        font-size: 28px;
        line-height: 36px;
    }

    .s1-subheadline {
        font-size: 16px;
        line-height: 22px;
    }

    .s1-features-list li {
        font-size: 14px;
        line-height: 20px;
        gap: 10px;
    }

    .s1-checkmark {
        width: 18px;
        height: 18px;
    }

    .s1-tariff-banner {
        padding: 8px 12px;
        margin-bottom: 20px;
    }

    .s1-flag-icon {
        width: 16px;
        height: 12px;
    }

    .s1-tariff-banner span {
        font-size: 12px;
    }

    .s1-cta-button {
        width: 100%;
        font-size: 14px;
        padding: 14px 20px;
        margin-bottom: 20px;
    }

    .s1-shipping-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .s1-ship-by,
    .s1-stock-levels {
        font-size: 12px;
    }

    .s1-stock-bar {
        width: 100px;
        height: 18px;
    }

    .s1-testimonial {
        margin-top: 20px;
        padding: 15px;
    }

    .s1-testimonial-stars {
        font-size: 16px;
    }

    .s1-testimonial-text {
        font-size: 13px;
        line-height: 20px;
    }

    .s1-testimonial-avatar {
        width: 35px;
        height: 35px;
    }

    .s1-testimonial-name {
        font-size: 12px;
    }

    .s1-testimonial-verified {
        font-size: 11px;
    }

    .s1-guarantee-badge {
        width: 100px;
        height: 100px;
        bottom: 10px;
        right: 10px;
    }

    .s1-guarantee-top {
        font-size: 18px;
        line-height: 22px;
    }

    .s1-guarantee-bottom {
        font-size: 9px;
        line-height: 11px;
    }

    .s1-unisex-badge {
        font-size: 11px;
        padding: 8px 16px;
        top: 10px;
    }

    /* New Sections Mobile Styles */
    .s1-heating-power {
        margin-top: 40px;
        padding: 30px 0;
    }

    .s1-heating-power-content {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .s1-heating-power-left,
    .s1-heating-power-right {
        flex: 0 0 100%;
        width: 100%;
    }

    .s1-heating-power-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .s1-heating-power-text {
        font-size: 16px;
        line-height: 24px;
    }

    .s1-heating-power-features {
        flex-direction: column;
        gap: 15px;
    }

    .s1-heating-power-feature-item {
        min-width: 100%;
    }

    .s1-premium-comfort {
        margin-top: 40px;
        padding: 30px 0;
    }

    .s1-premium-comfort-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .s1-premium-comfort-left,
    .s1-premium-comfort-right {
        flex: 0 0 100%;
        width: 100%;
    }

    .s1-premium-comfort-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .s1-premium-comfort-text {
        font-size: 16px;
        line-height: 24px;
    }

    .s1-premium-comfort-images {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .s1-lasting-warmth {
        margin-top: 40px;
        padding: 30px 0;
    }

    .s1-lasting-warmth-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .s1-lasting-warmth-left,
    .s1-lasting-warmth-right {
        flex: 0 0 100%;
        width: 100%;
    }

    .s1-lasting-warmth-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .s1-lasting-warmth-text {
        font-size: 16px;
        line-height: 24px;
    }

    .s1-lasting-warmth-cta {
        width: 100%;
        font-size: 16px;
        padding: 16px 24px;
    }

    .s1-machine-washable {
        margin-top: 40px;
        padding: 30px 0;
    }

    .s1-machine-washable-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .s1-machine-washable-left,
    .s1-machine-washable-right {
        flex: 0 0 100%;
        width: 100%;
    }

    .s1-machine-washable-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .s1-machine-washable-text {
        font-size: 16px;
        line-height: 24px;
    }

    .s1-machine-washable-badge {
        width: 100px;
        height: 100px;
        font-size: 11px;
        top: 20px;
        left: 20px;
    }

    ul.feature li strong {
        color: #000000 !important;
        font-weight: 700;
        display: block;
        margin-bottom: 6px;
        font-size: 15px;
        line-height: 22px;
    }

    ul.feature li:first-child {
        background: #f5f5f5 url(images/icon-money.f9e58838.svg) no-repeat 14px 16px !important;
        background-size: 26px !important;
    }

    ul.feature li:nth-child(2) {
        background: #f5f5f5 url(images/icon-temp.a4ae685f.svg) no-repeat 14px 16px !important;
        background-size: 26px !important;
    }
    
    .hide-mob {
        display: none !important;
    }
    
    .show-mob {
        display: inline;
    }
    
    .section-features {
        padding: 30px 0;
    }
    
    .features-header {
        margin-bottom: 30px;
    }
    
    .features-subheading {
        font-size: 12px;
        line-height: 18px;
    }
    
    .features-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .feature-item {
        flex-direction: column !important;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .feature-content {
        width: 100%;
        text-align: left;
    }
    
    .feature-number {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 12px;
        gap: 5px;
        flex-direction: row;
        align-items: baseline;
    }
    
    .feature-num {
        font-size: 20px;
        line-height: 24px;
        margin-right: 8px;
    }
    
    .feature-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .feature-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .feature-image {
        width: 100%;
    }

    .feature-image img {
        border-radius: 10px;
    }
    
    .feature-split {
        flex-direction: column;
        gap: 15px;
    }
    
    .split-left,
    .split-right {
        width: 100%;
        padding: 15px;
    }

    .split-left h3,
    .split-right h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .features-footer {
        margin-top: 25px;
        padding-top: 25px;
    }

    .features-footer .click-btn {
        max-width: 100%;
    }
    
    .section-5 {
        padding: 30px 0;
        overflow: hidden;
    }

    .section-5 .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .comparison-header {
        margin-bottom: 25px;
        padding: 0;
    }
    
    .comparison-subheading {
        font-size: 12px;
        line-height: 18px;
    }
    
    .comparison-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .comparison-table {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .comparison-table::-webkit-scrollbar {
        height: 8px;
    }

    .comparison-table::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 0;
    }

    .comparison-table::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 0;
    }

    .comparison-table::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    
    .comp-features-col {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
        flex-shrink: 0;
        background: #fff;
    }
    
    .comp-features-list li {
        padding: 10px 8px;
        font-size: 11px;
        line-height: 16px;
        min-height: 44px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .comp-product-col {
        width: 140px;
        min-width: 140px;
        max-width: 140px;
        flex-shrink: 0;
    }
    
    .comp-product-header {
        padding: 12px 8px;
    }
    
    .comp-product-img {
        width: 60px;
        margin-bottom: 6px;
    }
    
    .comp-stars {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .comp-product-name {
        font-size: 12px;
        line-height: 16px;
    }
    
    .comp-product-name-logo {
        height: 16px;
    }
    
    .comp-features-check li {
        padding: 10px;
        min-height: 44px;
    }
    
    .check-mark,
    .x-mark {
        width: auto;
        height: auto;
        font-size: 16px;
    }
    
    .section-2 {
        padding: 25px 0 35px;
    }
    
    .s2-feature-box {
        width: 100%;
    }
    
    .addt-featr {
        width: 100%;
    }
    
    .section-guarantee {
        padding: 30px 0;
    }
    
    .guarantee-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .guarantee-badge-large {
        width: 130px;
        height: 130px;
        margin: 0 auto;
    }
    
    .gty-badge-top,
    .gty-badge-bottom {
        font-size: 11px;
        line-height: 13px;
    }
    
    .gty-badge-middle {
        font-size: 22px;
        line-height: 26px;
    }
    
    .guarantee-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 15px;
    }
    
    .guarantee-description {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .guarantee-cta {
        margin-top: 20px;
    }

    .guarantee-cta .click-btn {
        max-width: 100%;
    }
    
    .testimonials-header {
        margin-bottom: 25px;
    }
    
    .testimonials-label {
        font-size: 12px;
        line-height: 18px;
    }
    
    .testimonials-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .testimonial-card {
        padding: 18px;
    }
    
    .testimonial-product-img {
        width: 100%;
        height: auto;
    }
    
    .testimonial-stars {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .testimonial-title {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    
    .testimonial-quote {
        font-size: 14px;
        line-height: 20px;
        min-height: auto;
        margin-bottom: 12px;
    }

    .testimonial-author {
        padding-top: 12px;
    }

    .testimonial-name {
        font-size: 14px;
    }

    .testimonial-verified {
        font-size: 12px;
    }
    
    .section-6 {
        padding: 30px 0;
    }

    .testimonials-footer {
        margin-top: 25px;
        padding-top: 25px;
    }

    .testimonials-footer .click-btn {
        max-width: 100%;
    }
    
    .limited-time-offer {
        padding: 0;
    }
    
    .limited-time-offer-wrapper {
        flex-direction: column;
        gap: 0;
        min-height: auto;
    }
    
    .limited-time-offer-left {
        flex: 0 0 100%;
        width: 100%;
        padding: 40px 20px;
        box-sizing: border-box;
    }
    
    .limited-time-offer-right {
        flex: 0 0 100%;
        width: 100%;
        min-height: 300px;
    }
    
    .limited-time-rating {
        margin-bottom: 12px;
    }
    
    .limited-time-stars {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .limited-time-rating-text {
        font-size: 12px;
    }
    
    .limited-time-heading {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    
    .limited-time-benefits {
        margin-bottom: 16px;
    }
    
    .limited-time-benefits li {
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 18px;
    }
    
    .limited-time-checkmark {
        font-size: 14px;
        margin-right: 8px;
        width: 16px;
    }
    
    .limited-time-tariff {
        padding: 5px 10px;
        margin-bottom: 16px;
        gap: 5px;
    }
    
    .limited-time-flag {
        width: 16px;
    }
    
    .limited-time-tariff-text {
        font-size: 11px;
    }
    
    .limited-time-cta-btn {
        font-size: 16px;
        padding: 12px;
        line-height: 24px;
        width: 100%;
        text-align: center;
        display: flex;
        margin-bottom: 12px;
    }
    
    .limited-time-shipping-info {
        font-size: 11px;
        gap: 5px;
        flex-wrap: wrap;
    }
    
    .limited-time-shipping-icon {
        font-size: 9px;
    }
    
    .limited-time-stock-bars {
        gap: 2px;
    }
    
    .stock-bar {
        width: 8px;
        height: 5px;
    }
    
    .limited-time-image {
        height: 300px;
        object-fit: cover;
        object-position: center;
    }
}

/* Limited Time Offer - Extra Small Mobile (479px and below) */
@media only screen and (max-width: 479px) {
    .limited-time-offer-left {
        padding: 30px 15px;
    }
    
    .limited-time-offer-right {
        min-height: 250px;
    }
    
    .limited-time-rating {
        margin-bottom: 10px;
    }
    
    .limited-time-stars {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .limited-time-rating-text {
        font-size: 11px;
    }
    
    .limited-time-heading {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 14px;
    }
    
    .limited-time-benefits {
        margin-bottom: 14px;
    }
    
    .limited-time-benefits li {
        margin-bottom: 8px;
        font-size: 12px;
        line-height: 16px;
    }
    
    .limited-time-checkmark {
        font-size: 13px;
        margin-right: 6px;
        width: 14px;
    }
    
    .limited-time-tariff {
        padding: 4px 8px;
        margin-bottom: 14px;
        gap: 4px;
    }
    
    .limited-time-flag {
        width: 14px;
    }
    
    .limited-time-tariff-text {
        font-size: 10px;
    }
    
    .limited-time-cta-btn {
        font-size: 14px;
        padding: 10px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    
    .limited-time-shipping-info {
        font-size: 10px;
        gap: 4px;
    }
    
    .limited-time-shipping-icon {
        font-size: 8px;
    }
    
    .limited-time-stock-bars {
        gap: 2px;
    }
    
    .stock-bar {
        width: 7px;
        height: 4px;
    }
    
    .limited-time-image {
        height: 250px;
    }
    
    .testi-sec {
        padding: 0;
    }
    
    .section-7 {
        padding: 30px 0;
    }

    .common-heading {
        margin-bottom: 20px;
    }

    .common-heading h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .faq-container {
        margin: 25px 0 15px;
    }

    .accordion {
        padding: 15px 35px 15px 0;
        font-size: 16px;
        line-height: 22px;
        background-size: 25px;
        background-position: right 10px center;
    }

    .accordion.accordion-open {
        background-size: 25px;
        background-position: right 10px center;
    }

    .acdn-content {
        padding: 15px 0 0;
    }

    .acdn-para {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 12px;
    }

    .footer {
        padding: 30px 0 20px;
    }

    .footer1 {
        padding-bottom: 20px;
    }

    .ftr-logo h2 {
        font-size: 24px;
    }

    .footer-text {
        font-size: 14px;
        line-height: 20px;
        margin-top: 12px;
    }

    .footer-text a {
        padding: 0 8px;
    }

    .footer2 {
        padding-top: 15px;
    }
}

/* Extra small devices (phones in portrait, less than 480px) */
@media only screen and (max-width: 479px) {
    .container {
        padding: 0 12px;
    }

    .bf-top-text {
        font-size: 10px;
        line-height: 14px;
    }

    .countdown-box {
        padding: 5px 8px;
        min-width: 40px;
    }

    .countdown-number {
        font-size: 16px;
        line-height: 20px;
    }

    .countdown-label {
        font-size: 8px;
        line-height: 10px;
    }

    .logo {
        width: 120px;
        min-width: 120px;
    }

    .logo-img {
        max-height: 45px;
    }

    .header {
        height: 65px;
    }

    ul.topMenu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .nav-btn {
        right: 40px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .banner .container,
    .n-1 .container {
        padding: 0 12px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .banner-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box;
        overflow: hidden;
    }

    .banner-left {
        width: 100% !important;
        float: none !important;
        position: relative !important;
        margin: 0 !important;
        max-width: 100%;
        order: 1;
    }
    
    .banner-right {
        width: 100% !important;
        float: none !important;
        position: relative !important;
        margin: 0 auto !important;
        max-width: 100%;
        overflow: hidden;
        order: 2;
        align-self: center !important;
        display: flex;
        justify-content: center;
    }

    .banner-heading {
        font-size: 22px;
        line-height: 28px;
    }

    .banner-heading .highlight-off {
        font-size: 26px;
        line-height: 30px;
    }

    .banner-product-container {
        height: 300px;
        background-position: center center;
        margin: 0 auto;
        width: 100%;
    }
    
    .product-image-wrapper {
        right: auto !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .guarantee-badge {
        width: 75px;
        height: 75px;
    }

    .guarantee-badge p {
        font-size: 8px;
        line-height: 10px;
    }

    .s1-mid-rgt-bx h1.orangeText {
        font-size: 22px;
        line-height: 28px;
    }

    .features-heading,
    .comparison-heading,
    .testimonials-heading,
    .guarantee-heading,
    .common-heading h1 {
        font-size: 22px;
        line-height: 30px;
    }

    .section-1 .container {
        padding: 0 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .s1-mid {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100%;
        padding: 0;
        background: transparent !important;
    }

    .s1-mid::before {
        display: none;
    }

    .s1-mid-left {
        height: 220px;
        min-height: 220px;
    }

    .s1-mid-rgt-bx {
        background: linear-gradient(135deg, #1e3a5f 0%, #293867 50%, #1e3a5f 100%) !important;
        padding: 25px 15px;
        border: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .s1-mid-rgt-bx::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #f02020 0%, #ff6b00 50%, #f02020 100%);
        z-index: 1;
    }

    .section-5 .container {
        padding: 0 12px;
    }

    .comp-features-col,
    .comp-product-col {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        flex-shrink: 0;
    }

    .guarantee-badge-large {
        width: 110px;
        height: 110px;
    }

    .gty-badge-middle {
        font-size: 20px;
        line-height: 24px;
    }

    a.click-btn {
        font-size: 14px;
        padding: 10px;
    }

    .btn-txt {
        font-size: 12px;
    }
}

/* Landscape orientation for mobile */
@media only screen and (max-width: 767px) and (orientation: landscape) {
    .header {
        height: 60px;
    }

    ul.topMenu {
        top: 60px;
        height: calc(100vh - 60px);
        max-height: 400px;
    }

    .banner-product-container {
        height: 250px;
        background-position: center center;
        margin: 0 auto;
        width: 100%;
    }
    
    .product-image-wrapper {
        right: auto !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .guarantee-badge-large {
        width: 100px;
        height: 100px;
    }
}

/* Improve touch targets for mobile */
@media only screen and (max-width: 767px) {
    a.click-btn,
    .nav-btn,
    .bf-code-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    ul.topMenu li a {
        min-height: 44px;
    }

    .accordion {
        min-height: 44px;
    }
}
