body {
    padding: 0;
    margin: 0;
    background: #ffffff;
}

/* ----- */
.header {
    height: 75vh !important;
    background-image: url('backgg.png') !important;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 3%;
    width: 100%;
}

.header-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    max-width: none;
    margin: 0;
    gap: 40px;
}

.description {
    flex: 1;
    max-width: 55%;
    padding-right: 40px;
    text-align: left;
}

.description h1 {
    color: #ffffff;
    font-weight: 700;
    font-family: 'Anton', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 1px black;
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: 3px;
}

.description p {
    color: #000000;
    font-family: 'Alice', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

.description button {
    background: #ffffff;
    border: none;
    border-radius: 50px;
    color: #000000;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.description button:hover {
    background-color: rgb(149, 149, 149);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.description button:focus {
    outline: none;
    box-shadow: none;
}

.image-section {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.image-section img {
    width: 100%;
    height: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        min-height: auto;
        padding: 40px 3%;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .description {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 0;
        text-align: center;
    }

    .description h1 {
        font-size: 2.5rem;
    }

    .description p {
        max-width: 100%;
    }

    .image-section {
        max-width: 100%;
    }
}

@media (max-width: 425px) {
    .header {
        min-height: auto;
        padding: 40px 3%;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .description {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 0;
        text-align: center;
    }

    .description h1 {
        font-size: 2.2rem;
    }

    .description p {
        max-width: 100%;
        font-size: 1.2rem;
    }

    .image-section {
        max-width: 100%;
    }
}

/* -------- */
.brand-section {
    background: #ffffff;
    padding: 30px 0 10px 0;
    max-width: 1450px;
    margin: 0 auto;
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.brand-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.carousel-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #000000;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background: #000000;
    color: #ffffff;
}

.arrow-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.arrow-btn:disabled:hover {
    background: transparent;
    color: inherit;
}

.carousel-wrapper {
    background: #ffffff;
    overflow: hidden;
    padding: 5px 10px 10px 10px;
    width: 100%;
}

.brand-carousel {
    display: flex;
    gap: 10px;
    transition: transform 0.4s ease;
    width: max-content;
}

.brand-item {
    flex: 0 0 450px;
    height: 560px;
    text-align: left;
    background: #ffffff;
    padding: 5px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.brand-item:hover {
    transform: scale(1.05);
}

.brand-image {
    width: 100%;
    height: 500px;
    background: #f5f5f5;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    border-radius: 4px;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

@media (max-width: 1024px) {
    .brand-item {
        flex: 0 0 240px;
    }

    .brand-image {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .brand-section {
        padding: 15px 0 5px 0 !important;
    }

    .brand-item {
        height: 150px !important;
        padding: 8px;
    }

    .brand-image {
        height: 100px !important;
        margin-bottom: 5px !important;
    }

    .brand-name {
        font-size: 0.9rem !important;
    }

    .carousel-wrapper {
        padding: 5px 5% 5px 5% !important;
    }
}

@media (max-width: 480px) {
    .brand-section {
        padding: 10px 0 0 0 !important;
    }

    .brand-item {
        flex: 0 0 450px;
        height: 560px;
        text-align: left;
        background: #ffffff;
        padding: 5px;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .brand-image {
        width: 100%;
        height: 500px;
        background: #f5f5f5;
        background-size: cover;
        background-position: center;
        margin-bottom: 15px;
        border-radius: 4px;
    }

    .brand-name {
        font-size: 0.8rem !important;
    }

    .carousel-wrapper {
        padding: 2px 5% 2px 5% !important;
    }

    .brand-item:hover {
        transform: none !important;
    }
}

.sale-banner {
    position: relative;
    height: 400px;
    background-image: url('shoeSale.png');
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 20px 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.sale-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sale-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.sale-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sale-banner button {
    background-color: white;
    color: #000000;
    border: none;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.sale-banner button:hover {
    background-color: rgb(149, 149, 149);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.sale-banner button:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .sale-banner {
        height: 250px !important;
        margin: 15px 0 !important;
    }

    .sale-title {
        font-size: 2rem !important;
        margin-bottom: 0.25rem !important;
    }

    .sale-subtitle {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .sale-description {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
        padding: 0 10px !important;
    }

    .sale-banner button {
        padding: 10px 20px !important;
        font-size: 11px !important;
    }
}

.banner-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sports-section {
    background: #ffffff;
    padding: 50px 5px 30px 5px;
    max-width: 1450px;
    margin: 0 auto;
}

.sports-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.sports-button {
    display: flex;
    gap: 10px;
}

.sports-header button {
    background-color: white;
    color: #000000;
    border: 2px solid black;
    padding: 12px 25px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sports-header button:hover {
    background: #000000;
    color: #ffffff;
    border-color: black;
}

.sports-header button:focus {
    outline: none !important;
    box-shadow: none !important;
    background-color: #000000;
    color: white;
}

.sports-header button:active {
    transform: none;
    box-shadow: none;
    background-color: #000000;
    color: white;
}

.sports-header button.active {
    background: #000000 !important;
    color: white !important;
}

.sports-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.sports-container {
    background: #ffffff;
    padding: 5px 10px 10px 10px;
    width: 100%;
}

.sports-cards {
    display: none !important;
}

.sports-cards.active {
    display: block !important;
}

.sports-grid {
    display: flex;
    gap: 10px;
    width: 100%;
}

.sports-item {
    flex: 1;
    height: 560px;
    text-align: left;
    background: #ffffff;
    padding: 5px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sports-item:hover {
    transform: scale(1.05);
}

.sports-image {
    width: 100%;
    height: 500px;
    background: #f5f5f5;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    border-radius: 4px;
}

.sports-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

@media (max-width: 1024px) {
    .sports-image {
        height: 400px;
    }

    .sports-item {
        height: 460px;
    }
}

@media (max-width: 768px) {
    .sports-section {
        padding: 20px 0 !important;
    }

    .sports-header {
        padding: 0 5% !important;
        margin-bottom: 20px !important;
    }

    .sports-container {
        padding: 10px 5% !important;
    }

    .sports-grid {
        flex-direction: column;
        gap: 15px !important;
    }

    .sports-item {
        height: 150px !important;
        padding: 8px;
    }

    .sports-image {
        height: 100px !important;
        margin-bottom: 5px !important;
    }

    .sports-name {
        font-size: 1.1rem !important;
        margin-top: 8px !important;
    }
}

@media (max-width: 480px) {
    .sports-item {
        height: 120px !important;
        padding: 5px;
    }

    .sports-image {
        height: 80px !important;
        margin-bottom: 3px !important;
    }

    .sports-name {
        font-size: 1rem !important;
    }

    .sports-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .sports-button {
        gap: 8px !important;
    }

    .sports-header button {
        padding: 10px 20px !important;
        font-size: 11px !important;
    }
}
