/* Base & Reset */
:root {
    --primary-color: #000000;
    --text-color: #333333;
    --bg-color: #ffffff;
    --gray-light: #f5f5f5;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

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

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

ul {
    list-style: none;
}

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

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Header */
.site-header {
    border-bottom: 1px solid #eaeaea;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
}

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

.desktop-nav .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

.desktop-nav .nav-links a:hover {
    color: #666;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid #eaeaea;
    padding: 20px;
}

.mobile-nav.active {
    display: block;
}

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

.mobile-nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1555529733-0e670560f7e1?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Dark overlay for text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.hero-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Categories Section */
.categories-section {
    padding: 80px 20px;
}

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

.category-card {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: var(--transition);
}

.category-card:hover::after {
    background: rgba(0,0,0,0.1);
}

.card-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    color: #fff;
}

.card-overlay h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-btn {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    color: #000;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
}

.card-btn:hover {
    background: #fff;
}

/* Footer */
.site-footer {
    background: var(--gray-light);
    padding-top: 60px;
    border-top: 1px solid #eaeaea;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.brand-col p {
    font-size: 0.95rem;
    color: #555;
}

.newsletter-txt {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #555;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
    outline: none;
}

.newsletter-form button {
    padding: 0 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
}

.contact-col a {
    color: #555;
}
.contact-col a:hover {
    color: #000;
}

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

.footer-links a {
    color: #555;
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: #000;
}

.footer-bottom {
    background: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}
.cart-overlay.active {
    visibility: visible;
    opacity: 1;
}
.cart-drawer {
    position: fixed;
    top: 0; right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.cart-drawer.active {
    right: 0;
}
.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-close {
    background: none; border: none; font-size: 1.5rem; cursor: pointer;
}
.cart-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}
.cart-item {
    display: flex; gap: 15px; margin-bottom: 20px;
}
.cart-item img {
    width: 60px; height: 60px; object-fit: cover; border-radius: 4px;
}
.cart-item-details h4 {
    font-size: 0.95rem; margin-bottom: 5px;
}
.cart-item-details p {
    font-size: 0.9rem; color: #555;
    margin-bottom: 0;
}
.cart-footer {
    padding: 20px;
    border-top: 1px solid #eaeaea;
}
.cart-total { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 15px; }
.checkout-btn {
    display: block; width: 100%; background: var(--primary-color); color: #fff; text-align: center; padding: 15px; border-radius: 4px; font-weight: 600; text-transform: uppercase; border: none; cursor: pointer;
}
.checkout-btn:hover { background: #333; color: #fff; }
