/* ===== VARIABLES ===== */
:root {
    --color-bg: #f1ebe3;
    --color-primary: #ff914d;
    --color-yellow: #ffde59;
    --color-green: #007640;
    --color-dark: #4d372b;
    --color-text: #000000;
    --color-text-light: #545454;
    --color-text-lighter: #737373;
    --color-white: #ffffff;
    --font-main: 'JetBrains Mono', monospace;
    --font-logo: 'Symphony', 'Times New Roman', serif;
}

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

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ===== NAVIGATION ===== */
nav {
    background: var(--color-bg);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(77, 55, 43, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo a {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-logo);
    color: var(--color-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 500;
}

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

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 60px 0 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* ===== PRODUCT HIGHLIGHTS ===== */
.product-highlights {
    margin-bottom: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 0;
}

.highlight-item {
    font-size: 0.9rem;
    color: var(--color-text-light);
    padding: 5px 0;
    font-weight: 500;
}

/* ===== PRODUCT PRICE ROW ===== */
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 0.85rem;
    color: var(--color-text-lighter);
}

/* ===== PRODUCT ACTIONS ===== */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-button-outline {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--color-primary);
    font-family: var(--font-main);
    cursor: pointer;
}

.product-button-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-card.available:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 145, 77, 0.2);
}

.product-card.coming-soon {
    opacity: 0.8;
}

.product-card.coming-soon:hover {
    transform: translateY(-3px);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.available-badge {
    background: linear-gradient(135deg, #007640, #00a055);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 118, 64, 0.3);
}

.soon-badge {
    background: linear-gradient(135deg, var(--color-yellow), #ffc940);
    color: var(--color-dark);
}

/* Product Icon */
.product-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.product-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    min-height: 80px;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-category {
    font-size: 0.85rem;
    color: var(--color-text-lighter);
    font-weight: 500;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Product Button */
.product-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.product-button:hover {
    background: #e67a38;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 145, 77, 0.3);
}

.product-button.disabled {
    background: var(--color-text-lighter);
    cursor: not-allowed;
    opacity: 0.6;
}

.product-button.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #5170ff, #ff914d);
    text-align: center;
    color: var(--color-white);
}

.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--color-yellow);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
footer {
    padding: 40px 5%;
    background: var(--color-bg);
    text-align: center;
    border-top: 1px solid rgba(77, 55, 43, 0.1);
}

footer p {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

footer a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    font-weight: 500;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero {
        padding: 60px 0 40px 0;
    }
    
    .product-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .product-icon {
        font-size: 3rem;
    }
    
    .product-card h3 {
        font-size: 1.25rem;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
}
