:root {
    --primary: #8535c6;
    --primary-light: #bd7bff;
    --primary-dark: #3a0ca3;
    --secondary: #f72585;
    --secondary-light: #ff7edb;
    --secondary-dark: #b5179e;
    --accent: #4cc9f0;
    --success: #2ecc71;
    --success-dark: #27ae60;
    --danger: #e74c3c;
    --danger-dark: #c0392b;
    --dark: #121432;
    --darker: #0a091c;
    --light: #f8f9fa;
    --lighter: #ffffff;
    --text: #2d3748;
    --text-light: #7f8c8d;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --sale-badge: #ff4757;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.navbar-links {
    display: flex;
    gap: 30px;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-links a:hover {
    color: var(--accent);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
}

/* Header & Hero */
header {
    background: linear-gradient(159deg, rgb(0, 0, 0) 0%, rgb(19, 4, 46) 48%, rgba(66, 18, 74, 1) 100%);
    color: white;
    padding: 20px 0 50px;
    position: relative;
    overflow: visible;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-size: 40px 40px;
}

.hero {
    padding: 20px 0 70px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    animation: pulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

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

.hero h1 {
    font-size: 62px;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    letter-spacing: -.02em;
    font-family: Manrope, sans-serif;
    font-weight: 800;
    line-height: 1.12;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    color: #fff;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: Manrope, sans-serif;
    color: var(--primary-dark);
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    color: var(--darker);
    font-weight: 600;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    margin-top: 60px;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Buttons */
.hero .cta-button {
    display: inline-block;
    background-image: linear-gradient(135deg, #732a95 50%, #1d20ad);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgb(114 42 149 / 44%);
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero .cta-button:hover {
    transform: translateY(-3px);
}

.hero .button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    z-index: 10;
    top: 50px;
}

.cta-button2 {
    display: inline-block;
    background: #fff;
    color: #271029;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(247, 37, 133, 0.2);
    filter: hue-rotate(-33deg);
}

.cta-button2:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgb(221 221 221 / 40%);
}

.secondary-cta {
    background-image: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.secondary-cta:hover {
    box-shadow: 0 15px 25px rgba(67, 97, 238, 0.4);
}

.outline-button {
    display: inline-block;
    background-color: transparent;
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: 15px;
}

.outline-button:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

section.with-bg {
    background-color: var(--lighter);
}

.under-hero-white {
    background: white !important;
    width: 100%;
    height: 280px;
    position: absolute;
    bottom: 0px !important;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--darker);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Products Grid */
.products-section {
    padding: 80px 0;
    background-color: var(--lighter);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(67, 97, 238, 0.03) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--light);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--sale-badge), #ff6b7a);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--darker);
    line-height: 1.4;
}

.product-title a {
    color: var(--darker);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary);
}

.product-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: Manrope, sans-serif;
}

.price-original {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 15px;
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(133, 53, 198, 0.3);
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.no-products h3 {
    font-size: 1.8rem;
    color: var(--darker);
    margin-bottom: 15px;
}

.no-products p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Features */
.features {
    padding: 80px 0;
    background-color: var(--lighter);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(67, 97, 238, 0.03) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--darker);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.icon-feature {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
    box-shadow: 0 3px 7px rgb(67 97 238 / 19%);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #561a87 0%, #1f0757 100%);
    padding: 50px;
    border-radius: var(--border-radius);
    margin: 50px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.05"/></svg>');
    background-size: 30px 30px;
    opacity: 0.2;
}

.highlight-box h3 {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.highlight-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Black Friday Dark Section */
.black-friday-section {
    padding: 100px 0;
    background: linear-gradient(159deg, rgb(0, 0, 0) 0%, rgb(19, 4, 46) 48%, rgba(66, 18, 74, 1) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.black-friday-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

.black-friday-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.black-friday-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: Manrope, sans-serif;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.black-friday-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.black-friday-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: Manrope, sans-serif;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

/* Call to Action */
.call-to-action {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.call-to-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.05"/></svg>');
    background-size: 30px 30px;
    opacity: 0.2;
}

.call-to-action h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.call-to-action p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

span.hero-highlight {
    color: #a71f89;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #bf47a3, #f8f0f6);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 800;
}

/* Footer */
footer {
    background-color: var(--darker);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--darker) 0%, var(--dark) 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.sticky-bar p {
    margin: 0;
    font-weight: 500;
}

/* Floating Elements Animation */
.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title h2 {
        font-size: 2.4rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .feature-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-bar {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px 20px;
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .black-friday-section h2 {
        font-size: 2.2rem;
    }
    
    .black-friday-section p {
        font-size: 1.1rem;
    }
    
    .black-friday-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 120px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .call-to-action h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 460px) {
    .hero a.cta-button {
        margin-bottom: 18px;
    }
    
    .call-to-action a.cta-button2 {
        margin-bottom: 14px;
    }
}
