/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b35;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-dark: #333333;
    --background-dark: #0d0d0d;
    --background-card: #1a1a1a;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #c41e3a 0%, #ff6b35 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    --shadow-primary: 0 10px 30px rgba(196, 30, 58, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
}


.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.cta-btn {
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: var(--text-primary) !important;
    font-weight: 600;
    box-shadow: var(--shadow-primary);
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    background: radial-gradient(ellipse at center, rgba(196, 30, 58, 0.1) 0%, var(--background-dark) 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-primary);
}

.hero-text h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-price {
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.full-width {
    width: 100%;
}

/* Product Showcase */
.hero-image {
    position: relative;
}

.product-showcase {
    position: relative;
    text-align: center;
}

/* Image Carousel */
.image-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    background: var(--background-card);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.slide.active {
    opacity: 1;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.main-product-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
    background: var(--background-card);
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image::before {
    content: '🔒';
    font-size: 8rem;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-badges {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-badge {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-primary);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--background-card);
}

.features h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--background-dark);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: var(--background-dark);
}

.video-section h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: var(--background-card);
}

.trust-section h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.etsy-credentials {
    display: flex;
    justify-content: center;
}

.etsy-badge {
    background: var(--background-dark);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    max-width: 300px;
    box-shadow: var(--shadow-dark);
}

.etsy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.etsy-badge h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.etsy-badge p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.etsy-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.etsy-link {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.etsy-link:hover {
    transform: translateY(-2px);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.trust-point h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-point p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--background-dark);
}

.testimonials h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.testimonial {
    background: var(--background-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
}

/* Order Section */
.order-section {
    padding: 6rem 0;
    background: var(--background-dark);
}

.order-section h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.product-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    background: var(--background-card);
    box-shadow: var(--shadow-dark);
    transition: opacity 0.2s ease-in-out;
}

.product-details h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-specs p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.product-specs-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Show/hide specs based on device */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Color Selection */
.color-selection {
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.color-selection h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.color-options {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
}

.color-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    flex: 1;
}

.color-option:hover {
    border-color: var(--primary-color);
    background: rgba(196, 30, 58, 0.1);
}

.color-option.active {
    border-color: var(--primary-color);
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    margin-top: 1px;
}

.color-swatch.gray {
    background: linear-gradient(135deg, #8a8a8a 0%, #5a5a5a 100%);
}

.color-swatch.green {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
}

.color-option span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

.color-option.active span {
    color: var(--text-primary);
}

.order-form-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-form {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.pricing {
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.price-row.total {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.payment-security {
    margin-top: 1rem;
    text-align: center;
}

.payment-security p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Footer */
.footer {
    background: var(--background-card);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 0.5rem 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 0.75rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .cta-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 5rem 1rem 2rem;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .features, .video-section, .testimonials, .order-section, .trust-section {
        padding: 3rem 0;
    }
    
    .features h2, .video-section h2, .testimonials h2, .order-section h2, .trust-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .order-content {
        display: block;
    }
    
    .product-summary {
        margin-bottom: 0.5rem;
    }
    
    .product-details h3 {
        margin-bottom: 1rem;
    }
    
    .order-form-column {
        margin-bottom: 1rem;
    }
    
    .product-specs-section {
        background: var(--background-card);
        padding: 1.5rem;
        border-radius: 10px;
        border: 1px solid var(--border-color);
        margin-top: 1rem;
    }
    
    /* Switch visibility on mobile */
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .carousel-slides {
        height: 350px;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.4rem 0.75rem;
    }
    
    .nav-brand h1 {
        font-size: 0.7rem;
        letter-spacing: 0.1px;
    }
    
    .nav-links {
        gap: 0.4rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .cta-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        white-space: nowrap;
        border-radius: 15px;
    }
    
    .hero {
        padding: 4.5rem 0.75rem 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .features, .video-section, .testimonials, .order-section, .trust-section {
        padding: 2.5rem 0;
    }
    
    .features h2, .video-section h2, .testimonials h2, .order-section h2, .trust-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .order-form {
        padding: 1.25rem;
    }
    
    .carousel-slides {
        height: 280px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .testimonial {
        padding: 1.25rem;
    }
    
    .color-options {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .color-option {
        flex: 1;
        min-width: 0;
        padding: 0.75rem 0.5rem;
        justify-content: center;
    }
    
    .color-option .color-swatch {
        width: 18px;
        height: 18px;
    }
    
    .color-option span {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 12px;
    }
}

/* Extra small mobile screens */
@media (max-width: 360px) {
    .nav {
        padding: 0.3rem 0.5rem;
    }
    
    .nav-brand h1 {
        font-size: 0.75rem;
        letter-spacing: 0.2px;
    }
    
    .nav-links a {
        font-size: 0.7rem;
    }
    
    .cta-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
}
