@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #000000;
    --secondary: #ffffff;
    --accent: #c94b32;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --bg-light: #f6f6f3;
    --border: #e7e2dc;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1400px;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: var(--container-width);
    z-index: 1000;
    padding: 12px 32px;
    border-radius: 8px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

header.scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    padding: 15px 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    letter-spacing: -1px;
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 24px;
}

.nav-icons span {
    cursor: pointer;
    font-size: 18px;
}

/* Global Button */
.btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* Section Global */
.section {
    padding: 120px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 24px;
}

.section-title h2 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: var(--transition);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.subtotal-price {
    font-weight: 600;
}

.cart-drawer.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-items {
    flex: 1;
}

.cart-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px;
}

/* Removed .footer-grid as Bootstrap row/col is used instead */

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    display: block;
}

.footer-text {
    color: #888;
    max-width: 300px;
}

.footer-title {
    font-size: 14px;
    margin-bottom: 24px;
}

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

.footer-links a {
    color: #888;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.newsletter input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 12px 0;
    color: #fff;
    margin-bottom: 20px;
    outline: none;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 12px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    header {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 15px 24px;
    }
    header.scrolled {
        top: 0;
        padding: 12px 24px;
    }
    /* .footer-grid removed */
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    .nav-links {
        display: none;
    }
    .nav-links.active {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--border);
        border-radius: 8px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }
    .nav-links.active li a {
        display: block;
        padding: 14px 10px;
    }
    .mobile-menu-toggle {
        cursor: pointer;
        font-size: 20px;
    }
    .section {
        padding: 80px 0;
    }
    .section-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 36px;
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
}
