* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #b8382f;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin-bottom: 4px;
}

.menu-icon:last-of-type {
    margin-bottom: 0;
}

.logo {
    color: white;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    background-color: white;
    padding: 40px 0 30px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgent {
    color: #e31b23;
}

.hero-subtitle {
    font-size: 20px;
    border-left: 4px solid #e31b23;
    padding-left: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

.author-info {
    margin-bottom: 10px;
}

.by-text {
    font-size: 16px;
    margin-right: 5px;
}

.author-link {
    color: #e31b23;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.author-link:hover {
    text-decoration: underline;
}

.date {
    color: #999;
    font-size: 14px;
}

/* Media Logos */
.media-logos {
    background-color: white;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.media-logos img {
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

.logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.media-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
}

/* Video Section */
.video-section {
    background-color: white;
    padding: 40px 0;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 500px;
}

/* Pricing Section */
.pricing-section {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 3px solid #1e5a3a;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.badge-top {
    background-color: #1e5a3a;
    color: white;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 14px;
}

.badge-bottom {
    background-color: #c8f5d8;
    color: #1e5a3a;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 14px;
}

.pricing-header {
    padding: 30px 20px 20px;
    text-align: center;
}

.featured .pricing-header {
    padding-top: 100px;
}

.bottle-count {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
}

.supply-text {
    font-size: 18px;
    font-weight: 600;
    color: #666;
}

.product-image {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.pricing-footer {
    padding: 30px 20px;
    border-top: 2px dotted #ddd;
}

.price {
    font-size: 72px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.per-bottle {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.benefits {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2d8a4e;
}

.check {
    background-color: #2d8a4e;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.buy-btn {
    width: 100%;
    padding: 18px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background-color: #e0e0e0;
    color: #333;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
}

.buy-btn:hover {
    background-color: #d0d0d0;
    transform: translateY(-2px);
}

.buy-btn.primary {
    background-color: #ffd700;
    color: #000;
    font-size: 24px;
}

.buy-btn.primary:hover {
    background-color: #ffed4e;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.payment-methods img {
    height: 30px;
    width: auto;
}

/* Comments Section */
.comments-section {
    background-color: white;
    padding: 60px 0;
}

.comments-count {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.comments-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.comment.reply {
    margin-left: 60px;
    margin-top: 15px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-size: 16px;
    font-weight: 700;
    color: #385898;
    margin-bottom: 8px;
}

.comment-text {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #333;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #65676b;
}

.comment-action {
    color: #65676b;
    text-decoration: none;
    font-weight: 600;
}

.comment-action:hover {
    text-decoration: underline;
}

.separator {
    color: #ccc;
}

.comment-likes {
    color: #385898;
    font-weight: 600;
}

.comment-time {
    color: #65676b;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9b4dca 0%, #e91e63 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(155, 77, 202, 0.4);
    transition: transform 0.3s ease;
}

.chat-icon:hover {
    transform: scale(1.1);
}

.chat-logo {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .logos-wrapper {
        gap: 20px;
    }

    .media-logo {
        height: 30px;
    }

    .video-wrapper iframe {
        min-height: 300px;
    }

    .price {
        font-size: 56px;
    }

    .bottle-count {
        font-size: 28px;
    }

    .comment.reply {
        margin-left: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .logo {
        font-size: 24px;
    }

    .menu-text {
        display: none;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-icon {
        width: 60px;
        height: 60px;
    }
}
