:root {
    --color-light-1: #00FFEA;
    --color-light-2: #00B8A8;
    --color-dark-1: #00665D;
    --color-dark-2: #003D38;
    --text-on-light: #000000;
    --text-on-dark: #ffffff;
    --font-titles: 'Abril Fatface', serif;
    --font-texts: 'Open Sans', sans-serif;
    --font-numbers: 'Chivo Mono', monospace;
    --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--color-dark-1) var(--color-dark-2);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark-2);
    border-left: 1px solid rgba(0, 255, 234, 0.1);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-dark-1);
    border-radius: var(--border-radius);
    border: 3px solid var(--color-dark-2);
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-light-2);
}

body {
    font-family: var(--font-texts);
    color: var(--text-on-dark);
    background-color: var(--color-dark-2);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo, .cta-btn {
    font-family: var(--font-titles);
    font-weight: normal;
}

button, .cta-btn {
    font-family: var(--font-titles);
}

.product-price, .discount-badge, .cart-total, #cart-count, .item-total-price, .qty-val {
    font-family: var(--font-numbers) !important;
    font-weight: 600;
}

.product-card, .team-card, .promo-banner, .cta-btn, .add-to-cart, .submit-btn {
    transition: var(--transition);
    border-radius: var(--border-radius);
}

header {
    background-color: var(--color-dark-1);
    color: var(--text-on-dark);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-light-2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-on-dark);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
}

nav a:hover {
    color: var(--color-light-1);
}

.cart-btn {
    background: transparent;
    border: none;
    color: var(--color-light-1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    transition: var(--transition);
}

.cart-btn:hover {
    color: var(--color-light-2);
}

.cart-btn span {
    background-color: var(--color-light-1);
    color: var(--text-on-light);
    border-radius: var(--border-radius);
    padding: 0.1rem 0.6rem;
    font-size: 0.9rem;
    font-weight: bold;
    transition: var(--transition);
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 80vh;
    padding: 2rem 5%;
    background: linear-gradient(135deg, var(--color-dark-2) 0%, #001a18 100%);
    gap: 2rem;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--color-light-1);
}

.hero-content h2 {
    font-size: 2rem;
    font-family: var(--font-sans);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn {
    text-align: center;
    display: inline-block;
    background-color: var(--color-light-1);
    color: var(--text-on-light);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid var(--color-light-1);
}

.cta-btn:hover {
    background-color: transparent;
    color: var(--color-light-1);
}

.legal-voice {
    font-size: 0.75rem;
    color: var(--color-light-2);
    font-style: italic;
    line-height: 1.4;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-light-2);
    background-color: var(--color-dark-1);
    min-height: 400px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.01);
    border-color: var(--color-light-1);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--color-light-1);
}

.shop-section, .team-section, .contact-section {
    padding: 6rem 5%;
    border-top: 1px solid rgba(0, 255, 234, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

/* Utility flex classes for consistent spacing */
.flex-col-gap-1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.flex-col-gap-3 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.flex-row-gap-1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.flex-row-gap-2 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
}

.product-card, .team-card {
    justify-content: space-between;
    background: var(--color-dark-1);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-dark-2);
    position: relative;
    overflow: hidden;
}

.product-card:hover, .team-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-light-2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.product-card img, .team-card img {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    object-fit: cover;
    background-color: var(--color-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.product-card img {
    aspect-ratio: 16 / 9;
    height: auto;
}

.team-card img {
    aspect-ratio: 1 / 1;
    height: auto;
}

.product-card:hover img, .team-card:hover img {
    opacity: 0.9;
}

.product-title {
    font-size: 1.4rem;
    font-weight: normal;
    font-family: var(--font-titles);
    color: var(--color-light-1);
}

.product-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.product-price {
    font-size: 1.8rem;
    color: var(--text-on-dark);
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

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

.discount-badge {
    background-color: var(--color-light-1);
    color: var(--text-on-light);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.2rem 0.6rem;
    border-radius: var(--border-radius);
    font-family: var(--font-sans);
}

.add-to-cart {
    background-color: var(--color-light-1);
    color: var(--text-on-light);
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: var(--color-light-2);
}

.promo-banner {
    background-color: var(--color-light-2);
    color: var(--text-on-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-family: var(--font-main);
    border: 2px solid var(--color-light-1);
    transition: var(--transition);
}

.promo-banner:hover {
    background-color: var(--color-light-1);
    transform: scale(1.02);
}

.team-card h3 {
    color: var(--color-light-1);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.team-card h3 svg {
    flex: 0 0 auto;
}

.team-card p {
    color: var(--text-on-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card img, .team-card img, .hero-image img {
    border-radius: var(--border-radius);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-dark-1);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid var(--color-light-2);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-light-1);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 1rem;
    border-radius: var(--border-radius);
    background-color: var(--color-dark-2);
    border: 1px solid var(--color-light-2);
    color: var(--text-on-dark);
    font-family: var(--font-sans);
    transition: var(--transition);
}

.form-group textarea {
    width: 100% !important;
    resize: vertical;
    min-height: 120px;
    max-height: 400px;
    border-radius: var(--border-radius);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-light-1);
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.2);
}

.checkbox-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.checkbox-group input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.85rem;
    color: var(--text-on-dark);
    text-transform: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    position: relative;
    min-height: 1.9rem;
}

.checkbox-group label::before {
    content: "";
    flex: 0 0 auto;
    width: 3.25rem;
    height: 1.9rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.checkbox-group label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0.2rem;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%);
    transition: var(--transition);
}

.checkbox-group input:checked + label::before {
    background: var(--color-light-1);
    border-color: var(--color-light-1);
}

.checkbox-group input:checked + label::after {
    transform: translateX(1.55rem) translateY(-50%);
}

.checkbox-group input:focus-visible + label::before {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 255, 234, 0.25);
}

.submit-btn {
    background-color: var(--color-light-1);
    color: var(--text-on-light);
    border: none;
    border-radius: var(--border-radius);
    padding: 1.2rem 2rem;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--color-light-2);
}

.submit-btn:disabled {
    background-color: #878787;
    color: #fff;
    cursor: not-allowed;
}

footer {
    background-color: #001a18;
    color: var(--text-on-dark);
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid var(--color-dark-1);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.legal-links a {
    color: var(--color-light-2);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--color-light-1);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.cart-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background-color: var(--color-dark-2);
    border-left: 1px solid var(--color-light-2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: none;
}

.cart-panel.open {
    right: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.6);
}

#cart-title {
    font-size: 1.8rem !important;
}

.cart-header {
    padding: 1rem 5%;
    background-color: var(--color-dark-1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-light-2);
}

.cart-header h2 {
    color: var(--color-light-1);
    font-size: 1.5rem;
}

#close-cart {
    background: transparent;
    border: none;
    color: var(--color-light-1);
    cursor: pointer;
    transition: var(--transition);
}

#close-cart:hover {
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    background-color: var(--color-dark-1);
    border-radius: var(--border-radius);
    padding: 1rem;
    border: 1px solid var(--color-light-2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--color-light-1);
}

.cart-item-info strong {
    color: var(--color-light-1);
    display: block;
    font-family: var(--font-main);
    font-size: 1.1rem;
}

.cart-item-promo {
    color: var(--color-light-2);
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    overflow: hidden;
    transition: var(--transition);
}

.cart-item-promo.active {
    max-height: 30px;
    opacity: 1;
    margin-top: 0.2rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-actions span {
    font-weight: bold;
    margin-right: 0.5rem;
}

.cart-item-actions button {
    background: transparent;
    border: none;
    color: var(--color-light-1);
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-actions button:hover {
    color: var(--color-light-2);
    transform: scale(1.1);
}

.cart-footer {
    padding: 1.5rem;
    background-color: var(--color-dark-1);
    border-top: 1px solid var(--color-light-2);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-total {
    font-size: 1.5rem;
    font-family: var(--font-texts) !important;
    font-weight: normal;
    display: flex;
    justify-content: space-between;
}

.cart-total span {
    color: var(--color-light-1);
    font-weight: bold;
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-dark-1);
    border-top: 2px solid var(--color-light-1);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 1100;
    transition: var(--transition);
}

.cookie-banner.show {
    bottom: 0;
}

.btn-primary {
    background-color: var(--color-light-1);
    color: var(--text-on-light);
    border-radius: var(--border-radius);
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--color-light-2);
}

.btn-secondary {
    background-color: var(--color-dark-2);
    color: var(--text-on-dark);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-light-2);
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--color-dark-1);
    border-color: var(--color-light-1);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .cart-panel {
        max-width: 100%;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}