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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
}

header {
    margin-bottom: 20px;
}

.trust-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ssl-badge {
    display: flex;
    align-items: center;
    color: #00b300;
    font-size: 14px;
    font-weight: 600;
}

.ssl-badge svg {
    margin-right: 5px;
}

.counter {
    font-size: 14px;
    color: #555;
}

#claimed-count {
    font-weight: 700;
    color: #ff3a3a;
}

.hero {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-image {
    margin: 0 auto 20px;
    max-width: 200px;
}

.video-container {
    margin: 0 auto 20px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#promo-video {
    display: block;
    width: 100%;
    height: auto;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.limited-stock {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    background-color: #fff9e6;
    padding: 12px;
    border-radius: 8px;
    border: 1px dashed #ffcc00;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #ff3a3a;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 58, 58, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 58, 58, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 58, 58, 0);
    }
}

.limited-stock p {
    font-weight: 600;
    font-size: 16px;
    color: #cc9900;
}

#stock-count {
    font-weight: 700;
    color: #ff3a3a;
}

.survey-container {
    margin: 15px 0;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.survey-container h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.survey-question {
    margin-bottom: 15px;
}

.survey-question p {
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.survey-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.survey-option {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #555;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
    width: auto;
    max-width: none;
}

.survey-option:hover {
    background-color: #f0f0f0;
    transform: none;
    box-shadow: none;
}

.survey-option.selected {
    background-color: #e6f7ff;
    border-color: #1a8cff;
    color: #1a8cff;
}

.cta-button {
    margin: 25px 0;
}

button {
    background-color: #ff3a3a;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 0 #cc0000;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

button:hover {
    background-color: #ff0000;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #cc0000;
}

.as-seen-in {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.as-seen-in p {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    font-weight: 700;
    color: #666;
    font-size: 18px;
}

.testimonials {
    margin-top: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px;
}

.testimonials h3 {
    font-size: 16px;
    color: #1877f2;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.testimonials h3 svg {
    margin-right: 8px;
}

.comment {
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
    display: flex;
}

.comment:last-child {
    border-bottom: none;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    flex-shrink: 0;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.commenter-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.comment-time {
    color: #999;
    font-size: 12px;
}

.comment-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 5px;
    line-height: 1.4;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.action-link {
    color: #666;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.action-link:hover {
    text-decoration: underline;
}

.likes {
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.like-icon {
    margin-right: 5px;
    color: #1877f2;
}

.faq-section {
    margin-top: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.faq-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-align: left;
}

.faq-answer {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    text-align: left;
}

.terms-conditions {
    margin-top: 25px;
    background-color: #000;
    color: #ccc;
    border-radius: 8px;
    padding: 20px;
    font-size: 12px;
    line-height: 1.4;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.terms-conditions h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}

.terms-conditions p {
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
    
    .trust-bar {
        font-size: 12px;
    }
    
    .limited-stock p {
        font-size: 14px;
    }
    
    button {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .survey-options {
        gap: 5px;
    }
    
    .survey-option {
        font-size: 13px;
        padding: 8px 12px;
    }
}