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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.9) 100%);
    color: white;
    padding: 80px 20px 60px 20px;
    text-align: center;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 179, 71, 0.1) 0%, transparent 50%);
    border-bottom: 1px solid rgba(255, 107, 157, 0.3);
}

.logo-container {
    margin-bottom: 15px;
}

.brand-logo {
    height: 180px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

header p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(30,30,30,0.95) 100%);
    padding: 60px 20px 100px 20px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Customer Proof */
.customer-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: #cccccc;
    animation: fadeInUp 0.6s ease;
}

.customer-count {
    color: #ff6b9d;
    font-weight: 600;
}

.recent-order {
    font-style: italic;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

.separator {
    opacity: 0.5;
}

/* Value Props */
.value-props {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #cccccc;
    padding: 8px 15px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.value-prop .icon {
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    margin: 50px 0 30px 0;
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

.flash {
    animation: flash 1s infinite;
}

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

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #cccccc;
}

.guarantee-icon {
    color: #4ade80;
}

/* Enhanced Button Styles */
.order-btn.primary {
    font-size: 1.2rem;
    padding: 20px 40px;
    min-width: 350px;
}

.order-btn.secondary {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(255, 142, 142, 0.2) 100%);
    border: 2px solid #ff6b9d;
    color: #ff6b9d;
    font-weight: 600;
}

.order-btn.secondary:hover {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8e8e 100%);
    color: white;
}

.savings {
    background: #4ade80;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 8px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 142, 142, 0.06) 0%, transparent 50%);
}

.hero h2 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero > p {
    font-size: 1.4rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 50px auto;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* Button Styles */
.order-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #d53e3e 100%);
    color: white;
    padding: 18px 60px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    justify-content: center;
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:hover {
    background: linear-gradient(135deg, #d53e3e 0%, #c53030 100%);
    box-shadow: 0 12px 35px rgba(229, 62, 62, 0.4);
    transform: translateY(-2px);
}

.order-btn .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.order-btn .price-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-btn .original-price {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 0.9rem;
}

.order-btn .current-price {
    font-weight: 700;
    font-size: 1.2rem;
}

/* Section Styles */
.section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Product Overview */
.product-overview {
    background: linear-gradient(135deg, rgba(30,30,30,0.9) 0%, rgba(50,50,50,0.9) 100%);
    border: 1px solid rgba(255, 107, 157, 0.3);
    padding: 80px 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* Product Showcase Layout */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 40px 0;
}

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

.box-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8e8e 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Section Subtitles */
.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b9d 50%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Included Items */
.included-items h3 {
    color: #ff6b9d;
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.item-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 107, 157, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ff6b9d;
}

.item-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.item-content strong {
    color: #ff6b9d;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.item-content p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #cccccc;
    padding: 10px 15px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.trust-icon {
    color: #4ade80;
}

.product-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #ff8e8e, #ffb347);
}

.product-overview h2 {
    color: #ff6b9d;
    margin-bottom: 20px;
}

.product-overview > p:first-of-type {
    font-size: 1.5rem;
    color: #ff8e8e;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-overview ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.product-overview li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
    font-size: 1.2rem;
    position: relative;
    padding-left: 40px;
    color: #dddddd;
}

.product-overview li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-size: 1rem;
    top: 22px;
}

.product-overview li:last-child {
    border-bottom: none;
}

/* Night Sections */
.night-section {
    padding: 100px 20px;
    position: relative;
}

.night-section.night-1 {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(30,30,30,0.95) 100%);
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.night-section.night-2 {
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(40,40,40,0.95) 100%);
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.night-section.night-3 {
    background: linear-gradient(135deg, rgba(30,30,30,0.95) 0%, rgba(50,50,50,0.95) 100%);
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.night-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.night-image {
    position: relative;
}

.night-drawing {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.night-section:hover .night-drawing {
    transform: scale(1.05);
}

.night-content h2 {
    color: #ff6b9d;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8e8e 50%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.night-content p {
    color: #dddddd;
    line-height: 1.8;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.night-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.night-includes {
    color: #ff6b9d;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.product-circle {
    width: 200px;
    height: 130px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(30,30,30,0.95) 0%, rgba(50,50,50,0.95) 100%);
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.product-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 179, 71, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-circle:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 157, 0.6);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.product-circle:hover::before {
    opacity: 1;
}

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

/* Content sections with dark theme */
.content-section {
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(40,40,40,0.95) 100%);
    border: 1px solid rgba(255, 107, 157, 0.2);
    padding: 80px 60px;
    margin: 60px 0;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #ff8e8e, #ffb347);
}

/* Enhanced Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(25,25,25,0.95) 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.testimonial {
    background: linear-gradient(135deg, rgba(40,40,40,0.9) 0%, rgba(60,60,60,0.9) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.3);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.2);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8e8e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.customer-details strong {
    color: #ffffff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 2px;
}

.location {
    color: #cccccc;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 5px;
}

.rating {
    color: #ffb347;
    font-size: 0.9rem;
}

.verified-badge {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    color: #dddddd;
    line-height: 1.7;
    margin-bottom: 15px;
}

.helpful {
    color: #999999;
    font-size: 0.85rem;
    font-style: normal;
    border-top: 1px solid rgba(255, 107, 157, 0.2);
    padding-top: 15px;
    margin-top: 15px;
}

/* Perfect For Section */
.perfect-for {
    margin: 80px 0 60px 0;
}

.perfect-for h3 {
    color: #ff6b9d;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 107, 157, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-top: 5px;
}

.benefit-content strong {
    color: #ff6b9d;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-testimonials {
    text-align: center;
    margin-top: 50px;
}

/* Enhanced FAQ */
.faq-section {
    background: linear-gradient(135deg, rgba(15,15,15,0.95) 0%, rgba(30,30,30,0.95) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.faq-item {
    padding: 30px;
    background: linear-gradient(135deg, rgba(40,40,40,0.9) 0%, rgba(60,60,60,0.9) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 142, 142, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 142, 142, 0.6);
}

.faq-item h3 {
    color: #ff6b9d;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.still-questions {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.still-questions h3 {
    color: #ff6b9d;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.still-questions p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.contact-btn {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(255, 142, 142, 0.2) 100%);
    border: 2px solid #ff6b9d;
    color: #ff6b9d;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8e8e 100%);
    color: white;
}

/* Rating */
.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    font-size: 1.2rem;
    color: #cccccc;
}

.stars {
    color: #ffb347;
    font-size: 1.5rem;
}

/* Price Styling */
.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4500 100%);
    color: white;
    padding: 15px 30px;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #ff4500;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.price-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.price-tag:hover::before {
    left: 100%;
}

.price-highlight {
    background: linear-gradient(135deg, rgba(30,30,30,0.95) 0%, rgba(50,50,50,0.95) 100%);
    border: 2px solid #ff6b9d;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.price-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #ff8e8e, #ffb347);
}

.price-highlight h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-highlight .price-tag {
    margin: 20px 0 30px 0;
}

.price-highlight p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 20px 40px 20px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 107, 157, 0.3);
}

.final-cta {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

.timer-text {
    color: #ff6b9d;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
}

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

.time-unit {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8e8e 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 45px;
}

.time-unit small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.final-cta h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin: 30px 0 15px 0;
}

.final-cta p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.final-offer {
    margin: 40px 0;
}

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

.offer-badge {
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

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

.price-final .original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-final .current-price {
    font-size: 2rem;
    color: #ff6b9d;
    font-weight: 700;
}

.savings-badge {
    background: #4ade80;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
}

.order-btn.final {
    font-size: 1.3rem;
    padding: 20px 40px;
    min-width: 400px;
    margin: 20px 0;
}

.final-guarantees {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #cccccc;
}

.guarantee-icon {
    color: #4ade80;
    font-size: 1.1rem;
}

.payment-methods {
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-text {
    color: #cccccc;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 157, 0.2);
    padding-top: 30px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b9d;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(20,20,20,0.95) 100%);
    backdrop-filter: blur(10px);
    border-top: 2px solid #ff6b9d;
    padding: 15px 20px;
    z-index: 1000;
    display: none;
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-current {
    color: #ff6b9d;
    font-size: 1.3rem;
    font-weight: 700;
}

.sticky-original {
    color: #cccccc;
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.sticky-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #d53e3e 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: linear-gradient(135deg, #d53e3e 0%, #c53030 100%);
    transform: translateY(-1px);
}

/* Special styling for discover section */
.discover-content {
    background: linear-gradient(135deg, rgba(30,30,30,0.95) 0%, rgba(50,50,50,0.95) 100%);
    padding: 60px;
    border: 1px solid rgba(255, 107, 157, 0.3);
    position: relative;
    margin-top: 40px;
}

.discover-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #ff8e8e, #ffb347);
}

.discover-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #dddddd;
}

.discover-content p:last-child {
    color: #ff6b9d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lists styling */
.styled-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.styled-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    color: #dddddd;
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.styled-list li::before {
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-size: 1.2rem;
    top: 15px;
}

.styled-list li:nth-child(1)::before { content: '💕'; }
.styled-list li:nth-child(2)::before { content: '🎁'; }
.styled-list li:nth-child(3)::before { content: '🔥'; }

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 60px 15px 50px 15px;
    }
    
    header p {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    .brand-logo {
        height: 120px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    /* Hero mobile adjustments */
    .customer-proof {
        flex-direction: column;
        gap: 10px;
    }

    .value-props {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .order-btn.primary {
        min-width: 280px;
        font-size: 1.1rem;
        padding: 18px 30px;
    }

    .section {
        padding: 60px 15px;
    }

    .section h2 {
        font-size: 2.2rem;
    }

    .product-overview,
    .content-section,
    .discover-content {
        padding: 40px 25px;
    }

    /* Mobile layout for product showcase */
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-image {
        position: relative;
    }

    .item-list {
        gap: 20px;
    }

    .item {
        padding: 15px;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Night cards mobile */
    /* Night sections mobile */
    .night-section {
        padding: 60px 20px;
    }
    
    .night-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .night-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .night-content p {
        font-size: 1.1rem;
    }

    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .customer-info {
        gap: 10px;
    }

    .customer-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit {
        padding: 20px;
    }

    /* FAQ mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 20px;
    }

    /* Footer mobile */
    .timer {
        gap: 10px;
    }

    .time-unit {
        padding: 6px 8px;
        font-size: 1rem;
        min-width: 35px;
    }

    .final-cta h3 {
        font-size: 1.8rem;
    }

    .order-btn.final {
        min-width: 280px;
        font-size: 1.1rem;
        padding: 18px 30px;
    }

    .final-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Show sticky mobile CTA */
    .sticky-mobile-cta {
        display: block;
    }

    /* Add bottom padding to body to account for sticky CTA */
    body {
        padding-bottom: 80px;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.section {
    animation: slideInUp 0.8s ease-out;
}

.urgency-banner {
    animation: bounce 2s infinite;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Very small phone screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    header {
        padding: 40px 10px 30px 10px;
    }
    
    .brand-logo {
        height: 100px;
    }
    
    header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .section {
        padding: 40px 10px;
    }
    
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    
    .product-overview {
        padding: 30px 15px;
    }
    
    .night-section {
        padding: 40px 10px;
    }
    
    .night-content h2 {
        font-size: 1.6rem;
    }
    
    .night-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .product-circle {
        width: 180px;
        height: 120px;
    }
    
    .order-btn {
        min-width: 260px;
        font-size: 1rem;
        padding: 16px 25px;
    }
    
    .testimonial {
        padding: 20px 15px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .sticky-mobile-cta {
        padding: 10px;
    }
    
    .sticky-content {
        padding: 10px 15px;
    }
    
    .sticky-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Loading animation for images */
.box-image, .night-photo {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

/* Hover effects for cards */
.night-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 157, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
