/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('logo.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Header Styles */
.header {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 50%;
    border: 2px solid #fff;
}

.logo-container h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.navbar a:hover {
    color: #FF6B35;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -70px;
    padding-top: 100px;
    /* Increased to 100px to prevent overlap with header */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    margin: 0 auto;
    position: relative;
}

.hero-text {
    flex: 1;
}

.hero-content h2 {
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-main {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.welcome-to {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.welcome-kicks {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, #FF6B35 0%, #000000 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Promo Sections */
.promos-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    background: transparent;
}

.global-muse-promo,
.mat-courier-promo {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
    transition: transform 0.3s ease;
}

.global-muse-promo:hover,
.mat-courier-promo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.global-muse-promo h3,
.mat-courier-promo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #FF6B35;
    letter-spacing: 2px;
}

.global-muse-promo p,
.mat-courier-promo p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Shared promo styles are handled above via commas */

.external-link-btn-small {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #000000 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.external-link-btn-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #e55a2b 0%, #333333 100%);
}


/* Products Section */
.products-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF6B35;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #000 0%, #FF6B35 100%);
    margin: 0.5rem auto;
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.product-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: black;
    text-transform: capitalize;
}

.product-description {
    color: black;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.add-to-cart-btn,
.buy-now-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.add-to-cart-btn {
    background-color: #000;
    color: white;
}

.add-to-cart-btn:hover {
    background-color: #333;
}

.buy-now-btn {
    background-color: #128c7e;
    color: white;
}

.buy-now-btn:hover {
    background-color: #0d6a60;
}

/* Search and Filter Section */
.search-filter-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.search-container {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    justify-content: center;
    align-items: center;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-bar:focus {
    border-color: #FF6B35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.search-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #FF6B35 0%, #000000 100%);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #e55a2b 0%, #333333 100%);
}

.filter-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.filter-select:focus {
    border-color: #FF6B35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.filter-select:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    margin: 3rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: white;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.social-links {
    margin-top: 1rem;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    transform: scale(1.05);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    display: inline-block;
    margin-right: 1rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FF6B35;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.cart-modal-content {
    background: rgba(255, 255, 255, 0.95);
    color: black;
    margin: auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.cart-header h2 {
    margin: 0;
    color: black;
}

.close {
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-items-container {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.cart-item-details h4 {
    margin: 0 0 5px 0;
    color: black;
}

.cart-item-details p {
    margin: 0;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.9em;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-actions button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: bold;
}

.cart-item-actions button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.remove-btn {
    background: rgba(255, 53, 53, 0.3) !important;
    padding: 5px 8px !important;
    font-size: 0.8em;
}

.remove-btn:hover {
    background: rgba(255, 53, 53, 0.5) !important;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.7);
}

.cart-total {
    font-size: 1.2em;
    margin-bottom: 15px;
    text-align: right;
}

.cart-buttons {
    display: flex;
    gap: 10px;
}

.checkout-btn {
    flex: 1;
    background: linear-gradient(135deg, #FF6B35 0%, #000000 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #333333 100%);
}

.continue-shopping-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
}

.continue-shopping-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Size and Quantity Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #FF6B35 0%, #000000 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.modal-body {
    padding: 25px;
}

.product-preview {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.modal-product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #FF6B35;
}

.selection-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}

.size-select,
.quantity-select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: white;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}

.size-select:focus,
.quantity-select:focus {
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.modal-footer {
    padding: 25px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 15px;
    justify-content: center;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 0 0 20px 20px;
}

.whatsapp-order-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 200px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.modal-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.customer-details-form h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
    border-left: 4px solid #FF6B35;
    padding-left: 10px;
}

.modal-input:focus {
    border-color: #FF6B35 !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.cancel-btn {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    border: 2px solid #ddd;
    padding: 14px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 150px;
}

.cancel-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: #999;
}

.whatsapp-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #1da851 0%, #0d6a60 100%);
}

.cancel-btn {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 200px;
}

.cancel-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .logo-container h1 {
        font-size: 1.5rem;
    }

    .navbar ul {
        gap: 1rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .global-muse-promo {
        width: 100%;
        max-width: 350px;
    }

    .welcome-main {
        font-size: 2.5rem;
    }

    .welcome-to {
        font-size: 1.8rem;
    }

    .welcome-kicks {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .search-filter-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .search-container {
        flex-direction: column;
        gap: 10px;
    }

    .search-bar {
        max-width: 100%;
        padding: 10px 15px;
    }

    .search-btn {
        padding: 10px 20px;
        width: 100%;
    }

    .filter-container {
        justify-content: center;
        gap: 10px;
    }

    .filter-select {
        width: 100%;
        max-width: 200px;
        padding: 8px 15px;
    }

    .modal-content {
        width: 95%;
        max-width: 95%;
    }

    .product-preview {
        flex-direction: column;
        text-align: center;
    }

    .modal-product-image {
        width: 80px;
        height: 80px;
    }

    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }

    .whatsapp-order-btn,
    .cancel-btn {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .welcome-main {
        font-size: 2rem;
    }

    .welcome-to {
        font-size: 1.4rem;
    }

    .welcome-kicks {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Delivery Notice Banner */
.delivery-notice-banner {
    background: linear-gradient(135deg, #00c3ff 0%, #000000 100%);
    color: #39ff14;
    /* Brighter Neon Green */
    padding: 20px;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(57, 255, 20, 0.2);
    border: 1px solid rgba(57, 255, 20, 0.3);
    animation: slideIn 0.5s ease-out;
}

.delivery-notice-banner p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.delivery-notice-banner strong {
    color: #ffffff;
    text-transform: uppercase;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}