/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    color: #333;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 2px solid #e74c3c;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
}

.timer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.timer i {
    font-size: 1rem;
}

/* Main Content */
.main {
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 30px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    font-weight: 500;
}

.highlight-number {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.product-showcase {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.perfume-image-main {
    width: 300px;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid #e74c3c;
    transition: opacity 0.6s;
    opacity: 1;
}

.remaining {
    color: #e74c3c;
    padding: 15px 0;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.remaining strong {
    font-size: 1.3rem;
    color: #f39c12;
}

.hero-cta {
    margin-top: 30px;
    text-align: center;
}

.hero-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: breathe 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.hero-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.6);
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.hero-cta i {
    font-size: 1.3rem;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(231, 76, 60, 0.6);
    }
}

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

/* Benefits */
.benefits {
    margin: 30px 0;
    text-align: center;
}

.benefit-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.benefit-icons i {
    font-size: 2rem;
    color: #e74c3c;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Success Stories */
.success-stories {
    margin: 30px 0;
}

.success-stories h3 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.success-carousel {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid #e74c3c;
    backdrop-filter: blur(10px);
}

.success-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 12px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.success-item.active {
    opacity: 1;
    transform: translateY(0);
}

.success-item.exit {
    opacity: 0;
    transform: translateY(-40px);
}

.success-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-icon i {
    color: white;
    font-size: 1rem;
}

.success-item p {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.success-item strong {
    color: #f39c12;
}

.success-item span {
    font-size: 0.75rem;
    color: #cccccc;
    margin-left: auto;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 40px 0;
}



.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.6);
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button i {
    font-size: 1.4rem;
}

.cta-note {
    font-size: 0.85rem;
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note i {
    color: #e74c3c;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 25px 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 2px solid #e74c3c;
}

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

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

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

.footer-links span {
    color: #666666;
    font-size: 0.8rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #999999;
    font-style: italic;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .product-showcase {
        justify-content: center;
    }
    
    .perfume-image-main {
        max-width: 180px;
    }
    
    .hero-cta {
        margin-top: 25px;
    }
    
    .hero-cta a {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .benefit-icons {
        gap: 20px;
    }
    
    .benefit-icons i {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 18px;
        font-size: 1.1rem;
    }
    
    .success-carousel {
        height: 80px;
    }
    
    .success-item {
        padding: 12px;
    }
    
    .success-item p {
        font-size: 0.8rem;
    }
    
    .success-item span {
        font-size: 0.65rem;
    }
}

@media (min-width: 768px) {
    .main {
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .product-showcase {
        justify-content: center;
    }
    
    .perfume-image-main {
        max-width: 250px;
    }
    
    .hero-cta a {
        padding: 18px 40px;
        font-size: 1.3rem;
    }
    
    .cta-button {
        max-width: 400px;
        margin: 0 auto 15px;
    }
    
    .benefit-icons {
        gap: 40px;
    }
    
    .benefit-icons i {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-button {
    animation: pulse 2s infinite;
}

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

.hero,
.benefits,
.success-stories,
.cta-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Focus styles for accessibility */
.cta-button:focus,
a:focus {
    outline: 3px solid #d4af37;
    outline-offset: 2px;
}

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

/* Policy and Contact Pages */
.policy-content,
.contact-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 1px solid #e74c3c;
}

.policy-content h1,
.contact-content h1 {
    color: #e74c3c;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.policy-section,
.contact-section {
    margin-bottom: 30px;
}

.policy-section h2,
.contact-section h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.policy-section h3 {
    color: #f39c12;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0 10px;
}

.policy-section p,
.contact-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section ul,
.contact-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li,
.contact-section li {
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-section strong,
.contact-section strong {
    color: #f39c12;
}

.back-link {
    text-align: center;
    margin-top: 40px;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e74c3c;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid #e74c3c;
    transition: all 0.3s ease;
}

.back-link a:hover {
    background: rgba(231, 76, 60, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.back-link i {
    font-size: 1.2rem;
}

/* Contact Page Specific Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-method {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e74c3c;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-method h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-method p {
    color: #cccccc;
    margin-bottom: 15px;
}

.contact-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #f39c12;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(231, 76, 60, 0.3);
}

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

.company-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e74c3c;
}

.company-info p {
    margin-bottom: 8px;
}

.company-info p:last-child {
    margin-bottom: 0;
}
