:root {
    --bg-color: #050505;
    --bg-secondary: #121212;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent: #E3000F; /* Red from the logo */
    --accent-hover: #ff1a27;
    --accent-secondary: #ffffff;
    --glass-bg: rgba(25, 25, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
}

body {
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

p {
    line-height: 1.6;
    color: var(--text-muted);
}

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

/* Utilities */
.highlight {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(227, 0, 15, 0.5);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.glass-strong {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--glass-border);
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

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

.nav-links li a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0,229,255,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    width: 35vw;
    height: 35vw;
    max-width: 450px;
    max-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    margin-top: 3rem;
}

.hero-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
    position: relative;
    border: 2px solid rgba(255,255,255,0.05);
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    border-radius: 50%;
    border: 2px solid var(--accent);
    box-shadow: 0 0 40px var(--accent), inset 0 0 20px var(--accent);
    z-index: 2;
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(227, 0, 15, 0.4), inset 0 0 10px rgba(227, 0, 15, 0.4); }
    100% { box-shadow: 0 0 60px rgba(227, 0, 15, 0.8), inset 0 0 30px rgba(227, 0, 15, 0.8); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features {
    padding: 100px 5%;
    background: var(--bg-secondary);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

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

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(227, 0, 15, 0.3);
    box-shadow: 0 15px 40px rgba(227, 0, 15, 0.1);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    background: rgba(227, 0, 15, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card .icon svg {
    width: 30px;
    height: 30px;
}

/* Shop Section & Slider Styles */
.shop-section {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
}

.slider-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}

.shop-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
}

.product-gallery img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.category {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.shop-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}

.whats-in-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
}

.whats-in-box h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.whats-in-box ul {
    list-style: none;
}

.whats-in-box ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.whats-in-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.purchase-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.qty-selector {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 0.5rem;
    border: 1px solid var(--glass-border);
}

.qty-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.qty-btn:hover {
    background: rgba(255,255,255,0.1);
}

.qty-input {
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    width: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Product Details Modal */
.product-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}
.product-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}
.product-modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 20px;
    position: relative;
    overflow-y: auto;
    padding: 2.5rem;
}
.close-product-modal {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.close-product-modal:hover {
    background: var(--accent);
    transform: rotate(90deg);
}
.product-modal-split {
    display: flex;
    gap: 3rem;
}
.product-modal-images {
    flex: 1;
}
.product-modal-images img#pmMainImage {
    width: 100%;
    max-height: 400px;
    border-radius: 12px;
    object-fit: contain;
    aspect-ratio: 1;
    background: #ffffff;
}
.pm-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    overflow-x: auto;
}
.pm-thumbnails img {
    width: 60px; height: 60px;
    border-radius: 8px;
    object-fit: contain;
    background: #ffffff;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.pm-thumbnails img.active, .pm-thumbnails img:hover {
    border-color: var(--accent);
}
.product-modal-info {
    flex: 1;
}
.pm-category {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
#pmName {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.pm-rating-summary {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.pm-price {
    font-size: 1.8rem;
    font-family: var(--font-outfit);
    font-weight: 700;
    color: #fff;
}
.review-item {
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.review-author {
    font-weight: 600;
    font-size: 0.95rem;
}
.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.review-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .product-modal-split {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Banner CTA */
.banner-cta {
    padding: 80px 5%;
    background: linear-gradient(45deg, #0a0a0a, #1a1a24);
    text-align: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.banner-content h2 {
    font-size: 3rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Catalog Section */
/* Catalog Grid & Dynamic Filters */
.catalog-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.filter-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 280px;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 1rem;
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

.filter-search-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 0.6rem 1rem 0.6rem 2.8rem;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.filter-search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(227, 0, 15, 0.25);
    background: rgba(0, 0, 0, 0.6);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.filter-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.filter-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pill-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.pill-btn:hover {
    color: #fff;
    background: rgba(227, 0, 15, 0.1);
    border-color: rgba(227, 0, 15, 0.3);
}

.pill-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 12px rgba(227, 0, 15, 0.35);
}

.select-group {
    min-width: 160px;
}

.filter-select {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23888' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.filter-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(227, 0, 15, 0.2);
}

.filter-select option {
    background: #0f0f12;
    color: #fff;
}

@media (max-width: 992px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-search-wrapper {
        min-width: 100%;
    }
}

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

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 0, 15, 0.4);
    box-shadow: 0 10px 30px rgba(227, 0, 15, 0.15), 0 0 15px rgba(227, 0, 15, 0.1);
}

.product-image-wrapper {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.product-card:hover .product-image-wrapper {
    background: #f7f7f7;
    border-color: rgba(227, 0, 15, 0.2);
}

.product-img-element {
    max-height: 85%;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img-element {
    transform: scale(1.08);
}

.product-placeholder-svg {
    width: 85px;
    height: 85px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-placeholder-svg {
    transform: scale(1.1) rotate(5deg);
}

.product-brand {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.4;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8rem;
}

.product-price {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 0.4rem;
    text-shadow: 0 0 10px rgba(227, 0, 15, 0.2);
}

.product-stock {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.product-card .btn {
    width: 100%;
    padding: 0.7rem;
    font-size: 0.9rem;
    margin-top: auto;
    border-radius: 25px;
}

/* Footer */
footer {
    padding: 80px 5% 40px 5%;
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #666;
    font-size: 0.9rem;
}

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

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

.cart-sidebar {
    position: absolute;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-overlay.active .cart-sidebar {
    right: 0;
}

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

.close-cart {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}
.cart-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.cart-item-price {
    color: var(--accent);
    font-weight: 600;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.5);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.w-100 {
    width: 100%;
}

/* Auth Modal */
.auth-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.auth-overlay.active {
    opacity: 1;
    visibility: visible;
}
.auth-modal {
    position: relative;
    width: 90%;
    max-width: 400px;
    padding: 3rem 2rem;
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
}
.auth-overlay.active .auth-modal {
    transform: translateY(0);
}
.close-auth {
    position: absolute;
    top: 15px; right: 20px;
    background: transparent; border: none;
    color: #fff; font-size: 2rem; cursor: pointer;
}
.auth-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
}
.auth-input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    .hero { flex-direction: column; justify-content: center; gap: 4rem; text-align: center; padding-top: 120px; }
    .hero-content { align-items: center; display: flex; flex-direction: column; }
    .shop-container { grid-template-columns: 1fr; padding: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand p { margin: 1rem auto; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s ease-out;
    }
    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
    .hamburger { display: flex; }
    h1 { font-size: 2.5rem; }
}

/* Announcement Modal */
.announcement-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}
.announcement-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}
.announcement-modal-content {
    background: var(--bg-secondary);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    padding: 2.5rem;
    text-align: center;
}
.close-announcement {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 30px; height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-announcement:hover {
    background: var(--accent);
    transform: rotate(90deg);
}
