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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Top Banner */
.top-banner {
    background: #d4ff00;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
}

/* Header */
.header {
    background: #2d2d2d;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    text-transform: lowercase;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    justify-content: flex-end;
}

.logo img {
    display: block;
    max-height: 50px;
}

.main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
}

.main-nav a:hover,
.main-nav a.active {
    text-decoration: underline;
}

.wrap{
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-bar {
    flex: 1;
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    outline: none;
}

.search-btn {
    background: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    font-size: 18px;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    justify-content: flex-end;
}

.icon-btn {
    color: white;
    text-decoration: none;
    font-size: 20px;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d4ff00;
    color: #2d2d2d;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1500;
    align-items: stretch;
}

.mobile-menu.open {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: #2d2d2d;
    color: white;
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mobile-menu-nav {
    background: #2d2d2d;
    width: 260px;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 30px;
    overflow-y: auto;
}

.mobile-menu-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.mobile-menu-close strong {
    font-size: 24px;
    font-weight: 700;
}

body.menu-open {
    overflow: hidden;
}

/* Secondary Navigation */
.secondary-nav {
    background: #3d3d3d;
    padding: 10px 20px;
    display: flex;
    gap: 25px;
    overflow-x: auto;
    white-space: nowrap;
}

.secondary-nav a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.secondary-nav .sale-link {
    background: #ff1744;
    padding: 5px 15px;
    border-radius: 3px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 500px;
    background: linear-gradient(to right, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.3) 50%, 
        rgba(0,0,0,0.1) 100%),
        url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1600&h=800&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: lowercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-hero {
    background: white;
    color: #2d2d2d;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: transparent;
    color: white;
}

/* Promo Banners */
.promo-banners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.promo-item {
    padding: 40px 20px;
    text-align: center;
}

.promo-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.promo-item p {
    font-size: 14px;
}

/* Brands Section */
.brands-section {
    padding: 60px 20px;
    text-align: center;
}

.brands-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 300;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.brand-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.brand-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.brand-card:hover img {
    transform: scale(1.05);
}

.brand-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-cta {
    margin-top: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #2d2d2d;
    color: #2d2d2d;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #2d2d2d;
    color: white;
}

/* Discover Section */
.discover-section,
.categories-section {
    padding: 40px 20px;
    background: #f5f5f5;
}

.discover-section h2,
.categories-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 300;
}

.categories-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-column ul {
    list-style: none;
}

.category-column li {
    margin-bottom: 12px;
}

.category-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.category-column a:hover {
    text-decoration: underline;
    color: #333;
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
}

/* Women's/Men's Page Styles */
.category-banner {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.products-section {
    padding: 60px 20px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.filter-options {
    display: flex;
    gap: 15px;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    cursor: pointer;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.product-info h3 {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 400;
}

.product-price {
    font-weight: bold;
    font-size: 16px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #2d2d2d;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #000;
}

/* Vibe Section */
.vibe-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.vibe-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.vibe-section p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.vibe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vibe-card {
    text-align: center;
    cursor: pointer;
}

.vibe-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
}

.vibe-card h3 {
    font-size: 16px;
    font-weight: 500;
}

/* Brands Showcase */
.brands-showcase {
    padding: 60px 20px;
}

.brands-showcase h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.brands-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.brand-item {
    text-align: center;
}

.brand-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Men's Page Specific */
.men-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('https://images.unsplash.com/photo-1490114538077-0a7f8cb49891?w=1600&h=600&fit=crop') center/cover;
    padding: 100px 20px;
    color: white;
    text-align: center;
}

.men-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.category-icons-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.category-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.icon-item {
    text-align: center;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-section {
    padding: 60px 20px;
}

.trending-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.trending-section p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tailoring-banner {
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.1)),
                url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1600&h=500&fit=crop') center/cover;
    padding: 100px 20px;
}

.banner-content {
    text-align: center;
    color: white;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.popular-brands {
    padding: 60px 20px;
    background: #f9f9f9;
}

.popular-brands h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding: 30px;
    background: white;
    border: 1px solid #ddd;
}

.sneakers-section {
    padding: 60px 20px;
}

.sneakers-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.sneakers-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.sneakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.sneaker-card {
    text-align: center;
}

.sneaker-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
}

.sneaker-card p {
    font-size: 14px;
    margin-bottom: 8px;
}

.sneaker-card .price {
    font-weight: bold;
    font-size: 16px;
}

/* About Page */
.about-hero {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-sections {
    padding: 60px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    text-align: center;
}

.about-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}

.about-card-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.about-card-content p {
    color: #666;
    margin-bottom: 20px;
}

.mission-section {
    padding: 60px 20px;
    background: white;
    max-width: 900px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.mission-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.mission-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.mission-content li {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.stats-section {
    padding: 60px 20px;
    background: #2d2d2d;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
}

.social-section {
    padding: 60px 20px;
    text-align: center;
}

.social-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    padding: 15px 30px;
    background: #2d2d2d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Contact Page */
.contact-hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #606060 0%, #606060 100%);
    color: white;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.info-item {
    margin: 30px 0;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-item .subtext {
    color: #666;
    font-size: 14px;
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #2d2d2d;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.btn-submit:hover {
    background: #000;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.faq-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Auth Page */
.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
}

.auth-container {
    max-width: 500px;
    width: 100%;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.auth-logo {
    margin-bottom: 30px;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: #2d2d2d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    margin: 0 auto;
}

.auth-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.auth-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 13px;
    line-height: 1.4;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.auth-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.auth-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: bold;
}

.auth-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.auth-form small {
    color: #666;
    font-size: 12px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.forgot-link {
    color: #666;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    padding: 15px;
    background: #2d2d2d;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.btn-auth:hover {
    background: #000;
}

.btn-back {
    width: 100%;
    padding: 15px;
    background: white;
    color: #2d2d2d;
    border: 1px solid #ddd;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.auth-success {
    display: none;
    text-align: center;
}

.auth-success.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.social-auth {
    margin-top: 30px;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #666;
    font-size: 14px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    z-index: -1;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.social-btn {
    padding: 12px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-icon {
    font-weight: bold;
}

.qr-section {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-pattern {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #000 25%, transparent 25%),
                linear-gradient(-45deg, #000 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #000 75%),
                linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.auth-footer {
    background: white;
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.auth-footer .footer-links {
    margin-top: 10px;
}

.auth-footer .footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

/* Cart Page */
.cart-section {
    padding: 60px 20px;
    min-height: 60vh;
}

.cart-section h1 {
    font-size: 32px;
    margin-bottom: 40px;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
}

.cart-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.cart-item-image img {
    width: 150px;
    height: 200px;
    object-fit: cover;
}

.cart-item-details h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.cart-item-details p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.quantity-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
}

.quantity {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 5px;
}

.remove-btn {
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 10px;
}

.cart-item-price {
    text-align: right;
}

.cart-item-price .price {
    font-size: 18px;
    font-weight: bold;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.empty-cart-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cart-summary {
    background: #f9f9f9;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    padding-top: 20px;
    border-top: 2px solid #ddd;
    margin-top: 20px;
}

.promo-code {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.promo-code input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
}

.promo-code button {
    padding: 10px 20px;
    background: #2d2d2d;
    color: white;
    border: none;
    cursor: pointer;
}

.discount {
    color: #28a745;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #2d2d2d;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
}

.btn-checkout:hover {
    background: #000;
}

.accepted-payments {
    margin-top: 30px;
    text-align: center;
}

.accepted-payments p {
    font-size: 12px;
    margin-bottom: 10px;
    color: #666;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.payment-icons span {
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    background: white;
    border: 1px solid #ddd;
}

.cart-info {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
}

.cart-info p {
    margin-bottom: 8px;
}

.recommendations {
    margin-top: 60px;
}

.recommendations h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brands-grid,
    .vibe-grid,
    .brands-row,
    .products-grid,
    .trending-grid,
    .sneakers-grid,
    .recommendations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-icons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
    }

    .header-container {
        gap: 18px;
    }

    .header-actions {
        margin-left: auto;
    }
    
    .promo-banners,
    .brands-grid,
    .vibe-grid,
    .brands-row,
    .footer-content,
    .about-grid,
    .stats-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .trending-grid,
    .sneakers-grid,
    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
    
    .category-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .qr-section {
        display: none;
    }

     .cart-section {
        padding: 40px 0px;
    }

    .cart-section h1 {
        font-size: 26px;
        margin-bottom: 30px;
        text-align: center;
    }

    /* Stack cart + summary */
    .cart-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Cart item layout */
    .cart-item {
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto auto;
        gap: 15px;
        padding: 15px 0;
    }

    .cart-item-image img {
        width: 100px;
        height: 140px;
    }

    .cart-item-price {
        grid-column: 2 / -1;
        text-align: left;
        margin-top: 10px;
    }

    .cart-item-price .price {
        font-size: 16px;
    }

    .quantity-controls {
        gap: 8px;
    }

    .qty-btn {
        width: 28px;
        height: 28px;
    }

    .quantity {
        width: 45px;
    }

    /* Cart summary */
    .cart-summary {
        position: static;
        padding: 25px 20px;
    }

    .cart-summary h2 {
        font-size: 20px;
    }

    .summary-row {
        font-size: 13px;
    }

    .summary-total {
        font-size: 16px;
    }

    .btn-checkout {
        font-size: 15px;
        padding: 14px;
    }

    /* Empty cart */
    .empty-icon {
        font-size: 60px;
    }

    .empty-cart h2 {
        font-size: 22px;
    }

    .empty-cart-links {
        flex-direction: column;
        gap: 15px;
    }

    /* Recommendations */
    .recommendations {
        margin-top: 40px;
    }

    .recommendations h2 {
        font-size: 22px;
        text-align: center;
    }

    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    
    .products-grid,
    .trending-grid,
    .sneakers-grid,
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
    }

    .mobile-nav-toggle {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}
