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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #e63946;
    text-transform: uppercase;
}

.phone-link {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #e63946;
}

/* Hero section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e5e9f2 100%);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.main-product-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gift-badge {
    position: absolute;
    top: -35px;
    right: -35px;
    background-color: #e63946;
    background-image: radial-gradient(circle, #ff6b6b, #e63946);
    color: white;
    font-weight: 800;
    padding: 15px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.6), 0 0 0 6px rgba(255, 255, 255, 0.4);
    animation: combined-animation 12s linear infinite;
    z-index: 2;
    border: 4px dashed white;
    overflow: hidden;
}

.gift-badge:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    transform: rotate(30deg);
    pointer-events: none;
    opacity: 0.2;
    animation: reflection 8s linear infinite;
}

@keyframes reflection {
    0% { transform: translateX(-200%) rotate(30deg); }
    100% { transform: translateX(200%) rotate(30deg); }
}

.gift-badge span {
    animation: stay-upright 12s linear infinite;
    display: block;
    line-height: 1.3;
}

.gift-badge strong {
    font-size: 120%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: text-pulse 2s ease-in-out infinite;
}

@keyframes text-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes combined-animation {
    0% {
        transform: rotate(0deg) scale(1);
        box-shadow: 0 8px 20px rgba(230, 57, 70, 0.6), 0 0 0 6px rgba(255, 255, 255, 0.4);
        border-style: dashed;
    }
    25% {
        transform: rotate(90deg) scale(1.08);
        box-shadow: 0 12px 25px rgba(230, 57, 70, 0.7), 0 0 0 8px rgba(255, 255, 255, 0.6);
        border-style: solid;
    }
    50% {
        transform: rotate(180deg) scale(1);
        box-shadow: 0 8px 20px rgba(230, 57, 70, 0.6), 0 0 0 6px rgba(255, 255, 255, 0.4);
        border-style: dashed;
    }
    75% {
        transform: rotate(270deg) scale(1.08);
        box-shadow: 0 12px 25px rgba(230, 57, 70, 0.7), 0 0 0 8px rgba(255, 255, 255, 0.6);
        border-style: solid;
    }
    100% {
        transform: rotate(360deg) scale(1);
        box-shadow: 0 8px 20px rgba(230, 57, 70, 0.6), 0 0 0 6px rgba(255, 255, 255, 0.4);
        border-style: dashed;
    }
}

@keyframes stay-upright {
    0% {
        transform: rotate(0deg);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }
    25% {
        transform: rotate(-90deg);
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: rotate(-180deg);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }
    75% {
        transform: rotate(-270deg);
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: rotate(-360deg);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .gift-badge {
        width: 180px;
        height: 180px;
        font-size: 16px;
        top: -40px;
        right: -40px;
        border-width: 5px;
    }
    
    .container {
        max-width: 1320px;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .secondary-title {
        font-size: 32px;
    }
}

.main-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #2b2d42;
    line-height: 1.2;
}

.secondary-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2b2d42;
}

.highlight {
    color: #e63946;
    font-weight: 900;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e63946;
}

.offer-timer {
    margin-bottom: 30px;
}

.offer-timer p {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.timer {
    display: flex;
    gap: 15px;
}

.timer-item {
    background-color: #2b2d42;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    width: 80px;
    box-shadow: 0 5px 15px rgba(43, 45, 66, 0.2);
}

.timer-item span {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.timer-label {
    font-size: 12px !important;
    font-weight: 400 !important;
    opacity: 0.8;
}

.price-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.old-price {
    font-size: 24px;
    color: #adb5bd;
    text-decoration: line-through;
    font-weight: 500;
}

.new-price {
    font-size: 36px;
    color: #e63946;
    font-weight: 900;
}

.cta-button {
    background-color: #27ae60; /* Green for better conversion */
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50px; /* Rounded buttons are more clickable */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    z-index: -1;
}

.cta-button:after {
    content: '→';
    margin-left: 10px;
    font-size: 22px;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    right: 30px;
    transform: translateX(-10px);
}

.cta-button:hover {
    background-color: #219653;
}

.cta-button:active {
    background-color: #1e8449;
}

/* Special overrides for the sticky mobile button to prevent any movement */
.sticky-cta-mobile .cta-button:hover,
.sticky-cta-mobile .cta-button:active,
.sticky-cta-mobile .cta-button:focus {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.6) !important;
}

.guarantee {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #6c757d;
}

.guarantee i {
    margin-right: 5px;
    color: #2b2d42;
}

/* Before-After Comparison */
.before-after {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.before-after-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.before-after-item {
    flex: 1;
    min-width: 300px;
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    color: white;
    font-weight: 700;
    border-radius: 20px;
    font-size: 14px;
    z-index: 2;
}

.before-label {
    background-color: #e74c3c;
}

.after-label {
    background-color: #27ae60;
}

.comparison-content {
    padding-bottom: 20px;
}

.comparison-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.comparison-text {
    padding: 0 20px;
}

.comparison-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2b2d42;
    text-align: center;
}

.comparison-text ul {
    list-style-type: none;
}

.comparison-text li {
    margin-bottom: 10px;
    font-size: 16px;
    padding-left: 10px;
}

.comparison-text i.fa-check {
    color: #27ae60;
    margin-right: 10px;
}

.comparison-text i.fa-times {
    color: #e74c3c;
    margin-right: 10px;
}

.comparison-arrow {
    font-size: 30px;
    color: #2b2d42;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.demo-video h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2b2d42;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 9;
}

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

.product-video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button i {
    color: #e63946;
    font-size: 30px;
    margin-left: 5px;
}

.play-button:hover {
    background-color: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Features section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #2b2d42;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #e63946;
}

.features-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 36px;
    color: #e63946;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2b2d42;
}

.feature-item p {
    font-size: 16px;
    color: #6c757d;
}

/* Product details */
.product-details {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.specs-image {
    flex: 1;
    min-width: 300px;
}

.specs-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specs-list {
    flex: 1;
    min-width: 300px;
}

.specs-list ul {
    list-style-type: none;
    margin-bottom: 30px;
}

.specs-list li {
    margin-bottom: 15px;
    font-size: 18px;
    padding-left: 10px;
}

.specs-list i {
    color: #e63946;
    margin-right: 10px;
}

.material-info {
    margin-bottom: 30px;
    font-size: 16px;
    color: #6c757d;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
}

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

.testimonial-content {
    flex: 1;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: 700;
    color: #2b2d42;
}

/* Why us section */
.why-us {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.reasons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.reason-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.reason-item:hover {
    transform: translateY(-10px);
}

.reason-icon {
    font-size: 36px;
    color: #e63946;
    margin-bottom: 20px;
}

.reason-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2b2d42;
}

.reason-item p {
    color: #6c757d;
}

.final-cta {
    text-align: center;
    background-color: #2b2d42;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(43, 45, 66, 0.2);
}

.final-cta .final-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.final-cta .old-price {
    color: #adb5bd;
}

.final-cta .new-price {
    color: #fff;
}

.big-order-btn {
    padding: 18px 50px;
    font-size: 22px;
}

/* Footer */
.footer {
    background-color: #2b2d42;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.footer-contacts p {
    margin-bottom: 10px;
}

.footer-info {
    text-align: right;
    font-size: 14px;
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: calc(100dvh - 40px);
    overflow: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #adb5bd;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #e63946;
}

.modal-content h2 {
    color: #2b2d42;
    font-size: 26px;
    margin-bottom: 10px;
    text-align: center;
}

.modal-content h3 {
    color: #e63946;
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e9f2;
    border-radius: 6px;
    font-size: 16px;
}

.form-group input:focus {
    border-color: #e63946;
    outline: none;
}

/* Input with clear button */
.input-with-action { position: relative; }
.input-with-action .clear-input {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #adb5bd;
    cursor: pointer;
}
.input-with-action .clear-input:hover { color: #e63946; }

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    display: inline;
    font-size: 14px;
    font-weight: normal;
}

.checkbox-group a {
    color: #e63946;
    text-decoration: underline;
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Custom Notifications */
.custom-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 300px;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    z-index: 9999;
}

.custom-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.custom-notification.success {
    border-left: 4px solid #4CAF50;
}

.custom-notification.error {
    border-left: 4px solid #e63946;
}

.notification-icon {
    margin-right: 15px;
    font-size: 24px;
}

.notification-icon i {
    color: #4CAF50;
}

.custom-notification.error .notification-icon i {
    color: #e63946;
}

.notification-message {
    font-size: 14px;
    color: #333;
}

@media (max-width: 768px) {
    .custom-notification {
        min-width: auto;
        width: calc(100% - 40px);
        right: 20px;
        bottom: 20px;
    }
}

.form-note {
    margin-top: 20px;
    font-size: 14px;
    color: #6c757d;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .main-title {
        font-size: 32px;
    }

    .secondary-title {
        font-size: 24px;
    }

    .hero-content {
        flex-direction: column-reverse;
    }

    .hero-text, .hero-image {
        flex: none;
        width: 100%;
    }
    
    .gift-badge {
        width: 150px;
        height: 150px;
        font-size: 12px;
        top: -25px;
        right: -25px;
        border-width: 3px;
    }

    .feature-item, .reason-item, .testimonial-item {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .features-container, .reasons-container {
        gap: 15px;
    }

    .product-specs {
        flex-direction: column;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
    
    .before-after-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .testimonial-item {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .features, .testimonials, .product-details, .why-us {
        padding: 60px 0;
    }
    
    .gift-badge {
        width: 130px;
        height: 130px;
        font-size: 12px;
        top: -15px;
        right: -15px;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 10px 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        font-size: 24px;
    }

    .phone-link {
        font-size: 16px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .gift-badge {
        width: 120px;
        height: 120px;
        font-size: 11px;
        top: -15px;
        right: -15px;
        border-width: 2px;
        animation: none !important;
    }
    
    .gift-badge strong {
        font-size: 120%;
    }
    
    .main-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .secondary-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .timer {
        justify-content: center;
    }
    
    .timer-item {
        width: 60px;
        padding: 8px;
    }
    
    .timer-item span {
        font-size: 18px;
    }
    
    .price-block {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .old-price {
        font-size: 20px;
    }
    
    .new-price {
        font-size: 30px;
    }

    .cta-button {
        width: 100%;
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .big-order-btn {
        padding: 15px 30px;
        font-size: 18px;
    }
    
    .feature-icon, .reason-icon {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .feature-item h3, .reason-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-title::after {
        width: 80px;
        height: 3px;
    }
    
    .specs-list li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .modal-content {
        padding: 25px;
    }

    .guarantee {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
    
    .gift-badge {
        width: 110px;
        height: 110px;
        font-size: 10px;
        top: -10px;
        right: -10px;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .main-title {
        font-size: 22px;
    }
    
    .secondary-title {
        font-size: 18px;
    }
    
    .timer-item {
        width: 50px;
    }
    
    .offer-timer p {
        font-size: 16px;
    }
    
    .old-price {
        font-size: 18px;
    }
    
    .new-price {
        font-size: 26px;
    }
    
    .gift-badge {
        width: 100px;
        height: 100px;
        font-size: 9px;
        top: -8px;
        right: -8px;
        border-width: 2px;
        padding: 8px;
    }
}

/* Extra small phones */
@media (max-width: 320px) {
    .gift-badge {
        width: 80px;
        height: 80px;
        font-size: 8px;
        top: 0;
        right: 0;
        border-width: 2px;
        padding: 5px;
    }
    
    .gift-badge strong {
        font-size: 115%;
    }
}

/* Stock indicator styles */
.stock-indicator {
    margin-top: 20px;
    margin-bottom: 15px;
    width: 100%;
}

.stock-bar {
    height: 10px;
    background-color: #e5e9f2;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.stock-bar-fill {
    height: 100%;
    width: 30%;
    background-color: #ff3b3b;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    animation: stock-bar-stripes 1s linear infinite, pulse-red 2s infinite;
}

@keyframes stock-bar-stripes {
    from { background-position: 1rem 0; }
    to { background-position: 0 0; }
}

@keyframes pulse-red {
    0% {
        background-color: #ff3b3b;
    }
    50% {
        background-color: #ff6b6b;
    }
    100% {
        background-color: #ff3b3b;
    }
}

.stock-text {
    font-size: 14px;
    font-weight: 700;
    color: #ff3b3b;
    text-align: center;
    letter-spacing: 1px;
}

#stockCount, .stockCount {
    transition: color 0.3s;
}

#stockCount.stock-update, .stockCount.stock-update {
    color: #ff0000;
    animation: flash 1s;
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.5;
    }
}

.stock-indicator-bottom {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.stock-indicator-bottom .stock-text {
    color: white;
    font-size: 16px;
    margin-top: 10px;
}

.hurry-text {
    margin-top: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    font-style: italic;
}

/* Trust badges section */
.trust-badges {
    background-color: #f5f7fa;
    padding: 40px 0;
    border-top: 1px solid #e5e9f2;
}

.badges-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 15px;
}

.badge-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.badge-item i {
    font-size: 30px;
    color: #e63946;
    margin-bottom: 10px;
}

.badge-item p {
    font-weight: 600;
    color: #2b2d42;
    font-size: 14px;
}

.social-proof {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.customers-count p {
    font-size: 18px;
    font-weight: 600;
    color: #2b2d42;
}

.customers-count span {
    color: #e63946;
    font-weight: 800;
    font-size: 20px;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 30px;
    color: #6c757d;
}

/* Activity notification */
.activity-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 10px 15px;
    max-width: 300px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.activity-notification.show {
    opacity: 1;
    visibility: visible;
}

.notification-icon {
    background-color: #e63946;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.notification-content {
    flex: 1;
}

.notification-text {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
}

.notification-time {
    font-size: 11px;
    color: #6c757d;
}

.notification-close {
    cursor: pointer;
    color: #adb5bd;
    padding: 5px;
}

.notification-close:hover {
    color: #e63946;
}

/* Responsive styles for activity notification */
@media (max-width: 576px) {
    .activity-notification {
        bottom: 70px; /* Move above the sticky CTA button */
        left: 50%;
        right: auto;
        margin-left: -45%;
        max-width: 90%;
        width: 90%;
        padding: 8px 12px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    }
    
    .notification-text {
        font-size: 11px;
    }
    
    .notification-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Quick contact options removed to prevent overflow issues */

/* Sticky CTA button for mobile */
.sticky-cta-mobile {
    display: none; /* Hide by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    padding: 10px;
    z-index: 999;
    text-align: center;
    padding-bottom: calc(env(safe-area-inset-bottom) + 10px);
}

.sticky-cta-mobile .cta-button {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.6);
    transition: none !important; /* Disable all transitions */
    transform: none !important; /* Disable all transformations */
    animation: none !important; /* Disable all animations */
}

.glow-effect {
    /* No animation */
    position: relative;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.6);
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block; /* Show on mobile */
    }
}

@keyframes pulse-button {
    0% {
        box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(230, 57, 70, 0.5);
    }
    100% {
        box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    }
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
    }
    
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom)); /* To prevent content from being hidden behind sticky button */
    }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}