:root {
    --primary: #00ffcc; /* Neon cyan */
    --secondary: #ff00ff; /* Neon magenta */
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #f4f4f4;
    --grey: #333;
    --font: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font);
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

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

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.p-3 { padding: 1.5rem; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.flex-row { display: flex; gap: 20px; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 10px var(--primary);
}
.btn-primary:hover {
    background-color: var(--light);
    box-shadow: 0 0 20px var(--primary);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover, .btn-outline.active {
    background-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 15px var(--primary);
}
.btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
}
.btn-sm {
    padding: 5px 10px;
    font-size: 0.9rem;
}

/* Header */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--primary);
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
    margin-bottom: 0;
}
.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
    letter-spacing: 2px;
}
.search-toggle-btn {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
}
.search-toggle-btn:hover {
    color: var(--primary);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-modal.active {
    opacity: 1;
    visibility: visible;
}
.search-modal-content {
    width: 90%;
    max-width: 800px;
    position: relative;
}
.close-search {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--light);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}
.close-search:hover {
    color: var(--primary);
}
.search-modal-inner {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}
.search-modal-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 15px;
}
.search-modal-inner input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 2rem;
    outline: none;
}
.search-modal-inner input::placeholder {
    color: #666;
}
.suggestions-box {
    width: 100%;
    background: var(--dark);
    border-radius: 0 0 10px 10px;
    display: none;
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.1);
}
.suggestions-box div {
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--grey);
    transition: background 0.3s, padding-left 0.3s;
}
.suggestions-box div:last-child {
    border-bottom: none;
}
.suggestions-box div:hover {
    background: rgba(0, 255, 204, 0.1);
    color: var(--primary);
    padding-left: 30px;
}
.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}
.icon-link {
    font-size: 1.5rem;
    position: relative;
}
.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary);
    color: white;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 50%;
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Nav */
.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 0;
}
.nav-links a {
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    height: 600px;
    position: relative;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active {
    opacity: 1;
}
.slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}
.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}
.slide-content h2 {
    font-size: 4rem;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Grids */
.grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* Cards */
.card {
    background: var(--dark);
    border: 1px solid var(--grey);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 255, 204, 0.2);
    border-color: var(--primary);
}
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--grey);
}
.product-card {
    padding-bottom: 20px;
    text-align: center;
}
.product-card h3 { margin: 15px 10px; font-size: 1.2rem; }
.product-card p { font-size: 0.9rem; color: #aaa; margin: 0 10px 15px; }
.product-card .price {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 15px;
}

/* Sections */
section {
    padding: 0;
}
section h2 {
    font-size: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 10px;
}
section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 0;
    box-shadow: 0 0 10px var(--primary);
}

/* Who We Are */
.who-we-are {
    background: linear-gradient(45deg, var(--darker), #111);
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
}
.text-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ccc;
}

/* Sport Icons */
.sport-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: var(--dark);
    border: 1px solid var(--grey);
    border-radius: 10px;
    transition: all 0.3s;
}
.sport-icon i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.sport-icon:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 20px var(--primary);
}
.sport-icon:hover i {
    color: var(--dark);
}

/* Reviews Carousel */
.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}
.review-card {
    min-width: 300px;
    background: var(--dark);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--grey);
    scroll-snap-align: center;
    text-align: center;
}
.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--primary);
    object-fit: cover;
}

/* Newsletter */
.newsletter-box {
    background: linear-gradient(135deg, var(--dark), #1a1a1a);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.1);
}
#subscribe-form {
    justify-content: center;
    margin-top: 30px;
}
#subscribe-form input {
    padding: 15px 20px;
    width: 300px;
    border: none;
    border-radius: 4px;
    background: var(--light);
}

/* Modal */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background-color: var(--dark);
    padding: 40px;
    border: 1px solid var(--primary);
    width: 90%;
    max-width: 500px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 30px var(--primary);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.modal.active .modal-content {
    transform: scale(1);
}
.close {
    position: absolute;
    right: 20px; top: 10px;
    color: var(--light);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.close:hover {
    color: var(--primary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: var(--primary);
    color: var(--dark);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3000;
    font-weight: bold;
    gap: 20px;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-buttons .btn-outline:hover {
    background: var(--dark);
    color: var(--primary) !important;
}

/* Layouts */
.layout-sidebar {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.sidebar {
    width: 250px;
    flex-shrink: 0;
}
.checkout-sidebar {
    width: 400px;
}
.main-content {
    flex-grow: 1;
}

/* Filters */
.filter-group {
    margin-bottom: 20px;
    background: var(--dark);
    padding: 15px;
    border: 1px solid var(--grey);
    border-radius: 5px;
}
.filter-group h4 { margin-bottom: 10px; color: var(--primary); }
.filter-group label { display: block; margin-bottom: 5px; cursor: pointer; }
.slider { width: 100%; }

/* Sort Bar */
.sort-bar {
    justify-content: space-between;
    align-items: center;
    background: var(--dark);
    padding: 10px 20px;
    border: 1px solid var(--grey);
    border-radius: 5px;
    margin-bottom: 20px;
}
.sort-select {
    padding: 8px;
    background: var(--darker);
    color: var(--light);
    border: 1px solid var(--grey);
}

/* Product Detail */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}
.product-detail .flex-row {
    align-items: flex-start;
    gap: 60px;
    flex-wrap: nowrap;
}
.product-gallery { width: 50%; flex-shrink: 0; }
.main-img { 
    width: 100%; 
    border-radius: 20px; 
    border: none; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(0, 255, 204, 0.1); 
}
.product-info { width: 50%; padding-left: 0; flex-shrink: 0; }
.product-info h1 { font-size: 3rem; margin-bottom: 10px; text-transform: uppercase; }
.price-large { font-size: 3rem; color: var(--primary); font-weight: bold; margin: 20px 0; text-shadow: 0 0 15px rgba(0, 255, 204, 0.3); }
.description { margin-bottom: 25px; color: #ddd; font-size: 1.15rem; line-height: 1.8; }
.form-control { padding: 12px; background: var(--darker); color: var(--light); border: 1px solid var(--grey); width: 120px; border-radius: 5px; font-size: 1.1rem; }
.reviews-section { border-top: 1px solid #222; padding-top: 30px; margin-top: 40px; }
.review-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #111; }
.stars { color: #ffd700; font-size: 1.2rem; margin-bottom: 5px; }

/* Fan Clubs */
.club-card-large { display: flex; flex-direction: column; }
.club-info { padding: 20px; }
.club-info h3 { font-size: 1.5rem; color: var(--primary); }
.members { color: var(--secondary); font-weight: bold; display: block; margin: 10px 0; }
.filters-horizontal { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

.club-logo-wrapper {
    background: #111;
    padding: 30px;
    border-bottom: 1px solid var(--grey);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    transition: background 0.3s;
}
.club-card:hover .club-logo-wrapper, .club-card-large:hover .club-logo-wrapper {
    background: #1a1a1a;
}
.club-logo-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    border: none;
}
.club-card h3 {
    margin: 0 0 10px 0;
    color: var(--primary);
}
.club-card .members-count {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Page Hero (used for Shop, Fan Clubs, Blog, etc.) */
.page-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary);
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}
.page-hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary);
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--primary);
    margin-bottom: 10px;
}
.page-hero-content p {
    font-size: 1.2rem;
    color: var(--light);
}

/* Club Page */
.club-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.club-hero::before { content: ''; position: absolute; top:0;left:0;right:0;bottom:0; background: rgba(0,0,0,0.7); }
.club-hero-content { position: relative; z-index: 1; text-align: center; width: 100%; }
.club-logo-large { width: 150px; height: 150px; border-radius: 50%; border: 3px solid var(--primary); margin-bottom: 20px; }
.club-hero h1 { font-size: 3rem; color: var(--primary); text-shadow: 0 0 15px var(--primary); }
.neon-glow { box-shadow: 0 0 20px var(--primary); }

/* Promo */
.promo-header { background: linear-gradient(45deg, var(--secondary), var(--darker)); padding: 40px 0; text-align: center; }
.promo-card { position: relative; }
.badge-sale {
    position: absolute; top: 10px; right: 10px;
    background: var(--secondary); color: white;
    padding: 5px 10px; font-weight: bold; border-radius: 3px;
    box-shadow: 0 0 10px var(--secondary);
    z-index: 2;
}
.badge-new {
    position: absolute; top: 10px; left: 10px;
    background: var(--primary); color: var(--dark);
    padding: 5px 10px; font-weight: bold; border-radius: 3px;
    box-shadow: 0 0 10px var(--primary);
    z-index: 2;
    text-transform: uppercase;
}
.old-price { text-decoration: line-through; color: #888; font-size: 1rem !important; }
.new-price { color: var(--secondary) !important; }

/* Cart & Wishlist */
.cart-item {
    display: flex;
    align-items: center;
    background: var(--dark);
    border: 1px solid var(--grey);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    gap: 20px;
}
.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}
.cart-item-info {
    flex-grow: 1;
}
.cart-item-info h3 {
    margin-bottom: 5px;
    color: var(--primary);
}
.cart-item-price {
    font-size: 1.2rem;
    font-weight: bold;
}
.remove-item {
    background: none;
    border: none;
    color: #ff4444;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}
.remove-item:hover {
    color: #ff0000;
}
.checkout-box {
    background: linear-gradient(135deg, var(--dark), #1a1a1a);
    border: 1px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.05);
}

/* Checkout Form */
.checkout-form {
    margin-top: 20px;
}
.checkout-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}
.checkout-form label {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 5px;
    font-weight: bold;
}
.checkout-form label i {
    color: var(--primary);
    margin-right: 5px;
}
.checkout-form .form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--grey);
    border-radius: 5px;
    color: var(--light);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.checkout-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
}
.checkout-form .form-control::placeholder {
    color: #555;
}
.blog-post { overflow: hidden; }
.blog-img { width: 100%; height: 400px; object-fit: cover; }
.date { color: var(--primary); font-weight: bold; display: block; margin-bottom: 10px; }
.category-list, .recent-posts { list-style: none; }
.category-list li, .recent-posts li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--grey); }
#blog-filters a.active { color: var(--primary); font-weight: bold; }
.more-content { margin-top: 15px; }

/* Text Pages */
.text-page h1 { color: var(--primary); margin-bottom: 20px; }
.text-page h2 { color: var(--secondary); margin: 30px 0 15px; font-size: 1.5rem; }
.text-page p { margin-bottom: 15px; color: #ccc; }
.text-page ul { margin-left: 20px; margin-bottom: 15px; color: #ccc; }
.text-page li { margin-bottom: 10px; }

/* Footer */
.footer { background: #000; padding: 60px 0 20px; border-top: 2px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 0 20px; margin-bottom: 0; }
.footer h3 { color: var(--primary); margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.contact-info p { margin-bottom: 10px; }
.contact-info i { color: var(--primary); width: 20px; }
.payment-icons i { margin-right: 15px; color: #aaa; }
.map-container { border: 1px solid var(--primary); border-radius: 5px; overflow: hidden; }

/* Chat Widget */
.chat-widget-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    z-index: 4000;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chat-widget-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.8);
}
.chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background-color: var(--dark);
    border: 1px solid var(--primary);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 4000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.chat-header {
    background-color: var(--darker);
    padding: 15px 20px;
    border-bottom: 1px solid var(--grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-header h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 0;
}
.close-chat {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}
.close-chat:hover {
    color: var(--secondary);
}
.chat-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.chat-message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}
.chat-message.bot {
    background-color: #1a1a1a;
    color: var(--light);
    align-self: flex-start;
    border-bottom-left-radius: 0;
}
.chat-message.user {
    background-color: var(--primary);
    color: var(--dark);
    align-self: flex-end;
    border-bottom-right-radius: 0;
    font-weight: 500;
}
.chat-message p {
    margin: 0;
}
.chat-input-area {
    display: flex;
    padding: 15px;
    background-color: var(--darker);
    border-top: 1px solid var(--grey);
}
.chat-input-area input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: var(--light);
    padding: 10px;
    outline: none;
}
.chat-input-area input::placeholder {
    color: #666;
}
.send-chat {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.3s;
}
.send-chat:hover {
    color: var(--light);
}

/* Responsive */
@media (max-width: 991px) {
    .burger-menu { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: var(--darker);
        border-bottom: 1px solid var(--primary);
    }
    .main-nav.active { display: flex; }
    .nav-links {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        text-align: center;
    }
    .grid-4, .grid-3, .grid-5, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .layout-sidebar { flex-direction: column; }
    .sidebar { width: 100%; }
    .product-detail .flex-row { flex-wrap: wrap; gap: 30px; }
    .product-gallery, .product-info { width: 100%; padding: 0; }
    .product-info { margin-top: 0; }
    
    /* Typography adjustments for tablets */
    .slide-content h2 { font-size: 3rem; }
    .page-hero-content h1 { font-size: 2.8rem; }
    .club-hero h1 { font-size: 2.5rem; }
    section h2 { font-size: 2.2rem; }
    .product-info h1 { font-size: 2.5rem; }
    .price-large { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .grid-4, .grid-3, .grid-5, .footer-grid { grid-template-columns: 1fr; }
    .header-top { flex-wrap: wrap; }
    .slide-content h2 { font-size: 2.2rem; }
    #subscribe-form { flex-direction: column; }
    #subscribe-form input { width: 100%; margin-bottom: 10px; }
    .search-modal-inner input { font-size: 1.5rem; }
    
    /* Typography adjustments for mobile */
    .page-hero-content h1 { font-size: 2.2rem; }
    .club-hero h1 { font-size: 2rem; }
    section h2 { font-size: 1.8rem; }
    .product-info h1 { font-size: 2rem; }
    .price-large { font-size: 2rem; }
    .logo { font-size: 1.5rem; }
    .text-page h1 { font-size: 2rem; }
    .text-page h2 { font-size: 1.3rem; }
    
    .chat-window {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 90px;
    }
    .chat-widget-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
