/* =========================================
   VARIABLES & GLOBALS
   ========================================= */
:root {
    --bg-dark: #070707;
    --bg-card: #121212;
    --bg-lighter: #1e1e1e;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --accent: #ffffff; 
    --border-color: rgba(255, 255, 255, 0.1);
    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
.announcement-bar {
    background-color: #111;
    color: #ccc;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1001;
}

.announcement-bar span {
    margin: 0 1rem;
}

@media (max-width: 768px) {
    .announcement-bar span:not(:first-child) {
        display: none;
    }
}

/* =========================================
   NAVBAR
   ========================================= */
header {
    background-color: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.logo span {
    font-weight: 400;
    color: var(--text-secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

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

.header-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.lang-switcher a {
    color: var(--text-secondary);
}
.lang-switcher a.active {
    color: var(--text-primary);
}
.lang-switcher a:hover {
    color: var(--text-primary);
}
.lang-separator {
    color: var(--text-secondary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../images/product_mockup.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(7,7,7,1) 0%, rgba(7,7,7,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--text-primary);
    color: #000;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}
.btn-primary:hover {
    background-color: #d1d1d6;
}

.btn-secondary {
    display: inline-block;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}
.btn-secondary:hover {
    background-color: var(--text-primary);
    color: #000;
}

/* =========================================
   SHOP BY BRAND (CATEGORIES)
   ========================================= */
.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.brand-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Firefox */
}
.brand-scroll::-webkit-scrollbar {
    display: none;
}

.brand-card {
    flex: 0 0 auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--bg-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.brand-card:hover {
    background-color: var(--bg-lighter);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
}

.brand-card span {
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* =========================================
   BEST SELLERS GRID
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.product-card:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
}

.product-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #000;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 1.5rem 1rem;
    text-align: center;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =========================================
   INFO COLUMNS (JONPARTS STYLE)
   ========================================= */
.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.info-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* =========================================
   REVIEWS SECTION
   ========================================= */
.reviews-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.stars {
    color: #ffb800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 600;
}

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

.review-card {
    background-color: var(--bg-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.review-card p {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}
.reviewer-name {
    font-weight: 600;
}
.verified {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: #000;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .info-columns {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
