/* Base styles optimized for all devices */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Sanva', Roboto, Arial, sans-serif;
    background: 
        linear-gradient(rgba(255,255,255,0.90), rgba(255,255,255,0.90)),
        url('https://niewmedia.com/wp-content/uploads/2024/03/36A9235_SY.jpg') center/cover fixed;
    line-height: 1.4;
    min-height: 100vh;
    font-size: clamp(14px, 1.5vw, 16px);
}

/* Header - Fully Responsive */
.header {
    background-color: rgb(255, 74, 128);
    color: white;
    font-family: 'Round Pop', sans-serif;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: clamp(0.5rem, 2vw, 2rem);
    flex-wrap: wrap;
}

.logo {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: bold;
    color: #ffffff;
    flex-shrink: 0;
    order: 1;
}

.header-middle {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 250px;
    order: 3;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: min(400px, 90vw);
}

.search-input {
    width: 100%;
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
    padding-right: clamp(2.5rem, 6vw, 3rem);
    border: 2px solid #f4fff3;
    border-radius: 25px;
    background-color: rgba(245, 245, 245, 0.1);
    color: rgb(255, 255, 255);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgb(255, 255, 255);
}

.search-input:focus {
    border-color: #00d4ff;
    background-color: rgba(255,255,255,0.2);
}

.search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: clamp(30px, 6vw, 35px);
    height: clamp(30px, 6vw, 35px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.search-button:hover {
    background: #75e3ff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-shrink: 0;
    order: 2;
}

/* Auth buttons */
.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.auth-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
    border-radius: 20px;
    cursor: pointer;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.auth-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: #00d4ff;
    color: #00d4ff;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.logout-btn {
    background: #ff4757;
    border: none;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
}

.logout-btn:hover {
    background: #ff3838;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    width: min(400px, 90vw);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-close:hover {
    color: #000;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #00d4ff;
}

.submit-btn {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #333;
}

.modal-switch {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.modal-switch a {
    color: #00d4ff;
    text-decoration: none;
    cursor: pointer;
}

.modal-switch a:hover {
    text-decoration: underline;
}

.nav-menu {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1.5rem);
    list-style: none;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.cart-container {
    position: relative;
    font-family: 'Sanva', sans-serif;
}

.cart-button {
    background: none;
    border: none;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    cursor: pointer;
    padding: clamp(0.25rem, 1vw, 0.5rem);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.cart-button:hover {
    background: rgba(255,255,255,0.1);
    color: #00d4ff;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: clamp(16px, 3vw, 20px);
    height: clamp(16px, 3vw, 20px);
    font-size: clamp(0.6rem, 1.5vw, 0.7rem);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: clamp(280px, 50vw, 350px);
    max-height: min(400px, 60vh);
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 10px;
}

.cart-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-header {
    padding: clamp(0.75rem, 2vw, 1rem);
    border-bottom: 1px solid #eee;
    font-weight: bold;
    color: #333;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.cart-items {
    max-height: min(250px, 40vh);
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: clamp(0.75rem, 2vw, 1rem);
    border-bottom: 1px solid #f0f0f0;
    gap: clamp(0.5rem, 2vw, 1rem);
}

.cart-item-image {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

.cart-item-price {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: bold;
    color: #000;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 1vw, 0.5rem);
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.quantity-btn {
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    width: clamp(22px, 4vw, 25px);
    height: clamp(22px, 4vw, 25px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.quantity {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 4px;
    padding: clamp(0.2rem, 1vw, 0.25rem) clamp(0.4rem, 1vw, 0.5rem);
    cursor: pointer;
    font-size: clamp(0.65rem, 1.5vw, 0.7rem);
    margin-left: clamp(0.25rem, 1vw, 0.5rem);
}

.remove-btn:hover {
    background: #ff3838;
}

.cart-footer {
    padding: clamp(0.75rem, 2vw, 1rem);
    border-top: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.cart-total {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.checkout-btn {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: clamp(0.6rem, 2vw, 0.75rem);
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #333;
}

.empty-cart {
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    color: #666;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Artist Banner - Fully Responsive */
.artist-banner {
    background: 
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.45)),
        url('https://pbs.twimg.com/media/GJm_fn0bMAAWsj5?format=jpg&name=4096x4096') center/cover;
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem);
    text-align: center;
    color: white;
    font-family: 'Pixeloid Sans', sans-serif;
    font-size: larger;
    position: relative;
    min-height: clamp(350px, 55vh, 550px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.artist-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 40%, rgba(255,182,193,0.25) 0%, transparent 50%),
        radial-gradient(circle at 85% 25%, rgba(173,216,230,0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255,218,185,0.2) 0%, transparent 50%);
    z-index: 1;
}

.artist-logo {
    animation: logoGlow 2s ease-out, rgbGlow 4s linear infinite 2s;
}

.artist-description {
    animation: fadeInUp 2s ease-out 0.5s both;
    opacity: 0;
}

@keyframes logoGlow {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: drop-shadow(0 0 0px rgba(255,0,0,0));
    }
    70% {
        opacity: 1;
        transform: translateY(0);
        filter: drop-shadow(0 0 25px rgba(255,0,128,0.8));
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: drop-shadow(0 0 15px rgba(0,255,255,0.6));
    }
}

@keyframes rgbGlow {
    0% { filter: drop-shadow(0 0 15px rgba(255,0,128,0.6)); }
    8.33% { filter: drop-shadow(0 0 15px rgba(255,0,64,0.6)); }
    16.67% { filter: drop-shadow(0 0 15px rgba(255,0,0,0.6)); }
    25% { filter: drop-shadow(0 0 15px rgba(255,64,0,0.6)); }
    33.33% { filter: drop-shadow(0 0 15px rgba(255,128,0,0.6)); }
    41.67% { filter: drop-shadow(0 0 15px rgba(128,255,0,0.6)); }
    50% { filter: drop-shadow(0 0 15px rgba(0,255,0,0.6)); }
    58.33% { filter: drop-shadow(0 0 15px rgba(0,255,128,0.6)); }
    66.67% { filter: drop-shadow(0 0 15px rgba(0,255,255,0.6)); }
    75% { filter: drop-shadow(0 0 15px rgba(0,128,255,0.6)); }
    83.33% { filter: drop-shadow(0 0 15px rgba(0,64,255,0.6)); }
    91.67% { filter: drop-shadow(0 0 15px rgba(128,0,255,0.6)); }
    100% { filter: drop-shadow(0 0 15px rgba(255,0,128,0.6)); }
}

.artist-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255,255,255,0.08) 25%, 
        transparent 50%, 
        rgba(255,255,255,0.08) 75%, 
        transparent 100%);
    animation: shimmer 10s ease-in-out infinite;
    z-index: 2;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); opacity: 0.3; }
    50% { transform: translateX(100%); opacity: 0.6; }
}

.artist-banner > * {
    position: relative;
    z-index: 3;
}

.artist-name {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: bold;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    letter-spacing: clamp(1px, 0.3vw, 3px);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 25px rgba(255,255,255,0.4), 2px 2px 15px rgba(0,0,0,0.8);
    }
    to {
        text-shadow: 0 0 35px rgba(255,182,193,0.7), 2px 2px 15px rgba(0,0,0,0.8);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

/* Filter Section - Responsive */
.filter-section {
    background-color: #f8f9fa;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
    border-bottom: 1px solid #e9ecef;
}

.filter-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-button {
    padding: clamp(0.4rem, 1.5vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    cursor: pointer;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-button:hover,
.filter-button.active {
    background-color: #000;
    color: white;
    border-color: #000;
}

/* Products Grid - Ultra Responsive */
.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 45vw), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Sanva', sans-serif;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 400px;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: clamp(200px, 25vw, 280px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.product-image.placeholder {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.product-image.placeholder::before {
    content: 'NewJeans';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: bold;
    color: rgba(0,0,0,0.3);
    text-align: center;
}

.product-info {
    padding: clamp(1rem, 3vw, 1.5rem);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.8rem);
}

.product-title {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: clamp(1.1rem, 2.8vw, 1.2rem);
    font-weight: bold;
    color: #000;
}

.product-shipping {
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    color: #666;
    background-color: #f8f9fa;
    padding: clamp(0.25rem, 1vw, 0.3rem) clamp(0.5rem, 1.2vw, 0.6rem);
    border-radius: 15px;
    display: inline-block;
    align-self: flex-start;
}

.add-to-cart-btn {
    position: absolute;
    bottom: clamp(0.75rem, 2vw, 1rem);
    right: clamp(0.75rem, 2vw, 1rem);
    background: #000;
    color: white;
    border: none;
    border-radius: 50%;
    width: clamp(40px, 8vw, 45px);
    height: clamp(40px, 8vw, 45px);
    cursor: pointer;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    z-index: 10;
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: #333;
    transform: scale(1.1);
}

.add-to-cart-btn:active {
    transform: scale(0.95);
}

.sold-out {
    opacity: 0.6;
    position: relative;
}

.sold-out::after {
    content: 'SOLD OUT';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,0,0,0.9);
    color: white;
    padding: clamp(0.4rem, 1.5vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
    border-radius: 20px;
    font-weight: bold;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    z-index: 100;
}

/* Reviews Section */
.reviews-section {
    margin-top: 2rem;
    padding: 1.5rem;
    font-family: 'Sanva', sans-serif;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.review-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 1rem;
}

.star.filled {
    color: #ffd700;
}

.add-review-btn {
    background: #00d4ff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.add-review-btn:hover {
    background: #00b8e6;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #00d4ff;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
}

.review-date {
    font-size: 0.8rem;
    color: #666;
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.review-text {
    color: #555;
    line-height: 1.5;
}

.no-reviews {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
}

/* Review Form */
.review-form {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.review-form.active {
    display: block;
    animation: slideIn 0.3s ease;
}

.rating-input {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.rating-star {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-star:hover,
.rating-star.active {
    color: #ffd700;
}

.review-textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.review-textarea:focus {
    border-color: #00d4ff;
}

.review-form-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cancel-review-btn {
    background: #666;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.cancel-review-btn:hover {
    background: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .header-middle {
        flex: 1 1 100%;
        order: 3;
    }

    .header-right {
        flex: 1 1 100%;
        order: 2;
        justify-content: center;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }

    .artist-name {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }

    .filter-content {
        flex-wrap: wrap;
    }

    .cart-dropdown {
        width: 300px;
        right: -50px;
    }

    .search-input {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cart-dropdown {
        width: 280px;
        right: -100px;
    }
    
    .header-right {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-menu {
        justify-content: center;
    }
}