* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Futura PT", Arial, sans-serif;
    color: #000;
    background-color: white;
    scroll-behavior: smooth;
}

.ad-header {
    width: 100%;
    height: 40px;
    background-color: #000;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.ad-content h6 {
    color: white;
}

.ad-content hr {
    width: 30px;
    background-color: white;
    height: 3px;
    margin-left: 10px;
    margin-right: 10px;
}

.marquee-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 20px;
}



.navbar {
    width: 100%;
    height: 120px;
    background-color: white;
    display: flex;
    flex-direction: row;
    position: sticky;
    top: 40px;
    z-index: 999;
}

.left-section {
    width: 30%;
    height: 120px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 30px;
}

.left-section a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
}





.middle-section {
    flex: 1;
    height: 100px;
    display: flex;
    flex-direction: row;
    border: 6px solid gold;
    border-radius: 50px;
    margin-top: 10px;
    align-items: center;
}

.logo-container {
    width: 20%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
}

.brand-name-container {
    width: 80%;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-name-container h1 {
    font-size: 30px;
}

.brand-name-container h6 {
    font-size: 16px;
}


.brand-name-container hr {
    width: 150px;
    background-color: gold;
    height: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: none;
    border-radius: 50px;
}

.right-section {
    width: 30%;
    height: 120px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 50px;

}

.all-categoriries a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
    padding-left: 30px;
}

.wish-icon,
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}



.wish-icon a,
.cart-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


.wish-icon i,
.cart-icon i {
    font-size: 22px;
    color: #000;
    display: block;
    cursor: pointer;
    transition: 0.3s ease;
}

.wish-icon a:hover i,
.cart-icon a:hover i {
    transform: scale(1.15);
}


#wishlistCounter,
#cartCounter {
    position: absolute;
    top: -10px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: gold;
    color: #000;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    pointer-events: none;
    transition: 0.3s ease;
}


.wish-icon a:hover #wishlistCounter,
.cart-icon a:hover #cartCounter {
    background-color: #000;
    color: gold;
}



/*PRODUCT SECTION */

.hoodies-collection {
    width: 90%;
    margin: auto;
    padding: 20px 0 30px;
    margin-top: 20px;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


.product-card {
    transition: .4s;
    margin-bottom: 30px;
}



.product-image {
    width: 250px;
    height: 300px;
    position: relative;
    background: white;
    overflow: hidden;
    border: 2px solid gold;
}



.product-image img {
    width: 100%;
    height: 100%;
}



/* IMAGES SLIDER */

.product-image .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.product-image .slide.active {
    opacity: 1;
    visibility: visible;
}


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: none;
    background: white;
    color: #000;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: 0.3s;
    border-radius: 50px;
}


.product-image:hover .slider-arrow {
    opacity: 1;
}


.slider-arrow:hover {
    background: #000;
    color: white;
}


.slider-arrow.prev {
    left: 10px;
}


.slider-arrow.next {
    right: 10px;
}


.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}


.dot {
    width: 3px;
    height: 3px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}


.dot.active {
    background: white;
    transform: scale(1.3);
}


.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background-color: #000;
    color: white;
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 1px;
}



.product-details {
    height: 100px;
    padding-top: 5px;
    padding-bottom: 10px;

}


.product-category {
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}


.product-details h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}


.price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-button-container {
    width: 250px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.card-button-container button {
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
    background-color: white;
    padding: 10px 20px;
    font-size: 10px;
    letter-spacing: 1px;
    transition: .3s;
}

.card-button-container button:hover {
    background-color: #000;
    color: white;
}


.size-selector {
    position: relative;
    display: inline-block;
}

.size-button {
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
    background-color: white;
    padding: 9px 18px;
    font-size: 10px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .3s;
}

.size-button:hover {
    background-color: #000;
    color: white;
}

.size-options {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    z-index: 20;
    background-color: white;
    border: 1px solid #ddd;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .12);
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    width: 130px;
}

.size-options.show {
    display: grid;
}

.size-options button {
    border: 1px solid #ccc;
    background-color: white;
    color: #000;
    padding: 7px 5px;
    font-size: 9px;
    cursor: pointer;
}

.size-options button:hover,
.size-options button.selected {
    background-color: #000;
    color: white;
    border-color: #000;
}





.footer {
    width: 100%;
    background-color: #000;
    padding-top: 70px;
}



.footer-container {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}


.footer-brand {
    padding-right: 20px;
    color: white;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}


.footer-logo h2 {
    font-size: 13px;
    letter-spacing: 2px;
    margin: 0 0 5px 0;

}

.fashions {
    font-size: 13px;
    letter-spacing: 2px;
    margin: 0 0 5px 0;

}

.footer-logo span {
    font-size: 10px;
    letter-spacing: 3px;
    color: gold;
}


.footer-brand p {
    color: white;
    font-size: 13px;
    line-height: 1.8;
    max-width: 300px;
    margin-bottom: 25px;
}




.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 300px;
}

.social-icons a {
    text-decoration: none;
    color: white;
    font-size: 11px;
    border: 1px solid #555;
    padding: 8px 10px;
    transition: .3s;
    border: 2px solid white;
    border-radius: 50px;
}

.social-icons a:hover {
    background-color: gold;
    border-color: gold;
    color: #000;
}


.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 13px;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    color: white;
}




.footer-line {
    width: 40px;
    height: 2px;
    background-color: gold;
    display: block;
    margin-bottom: 20px;
}




.footer-column a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    margin-bottom: 13px;
    transition: .3s;
}

.footer-column>a:hover {
    color: gold;
    padding-left: 5px;
}





.footer-bottom {
    width: 88%;
    margin: auto;
    border-top: 1px solid #222;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.footer-bottom p {
    color: gold;
    font-size: 10px;
    letter-spacing: 1px;
    margin: 0;
}


.footer-bottom p:last-child {
    color: gold;
}








.desktop-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger {
    display: none;
    width: 35px;
    height: 35px;
    padding: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: 0.3s ease;
}


/* HAMBURGER ANIMATION */

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* MOBILE MENU */

.mobile-menu {
    display: none;
}


@media screen and (max-width: 768px) {


    .navbar {
        width: 100%;
        height: 120px;
        display: flex;
        align-items: center;
        position: sticky;
        top: 40px;
    }




    /* LEFT SECTION */

    .left-section {
        width: 150px;
        height: 120px;
        padding: 0;
        justify-content: center;
        position: relative;

    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 120px;
        left: 0;
        width: 220px;
        background-color: white;
        border-top: 2px solid gold;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
        z-index: 1005;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu a {
        text-decoration: none;
        color: #000;
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 1px;
        padding: 18px 20px;
        border-bottom: 1px solid #eee;
        transition: 0.3s ease;
    }

    .mobile-menu a:hover {
        background-color: #000;
        color: white;
    }





    /* MIDDLE SECTION */

    .middle-section {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        width: auto;
        height: 80px;
        margin: 5px 10px;
        border: 4px solid gold;
        border-radius: 40px;
        background-color: #000;
    }



    .logo-container {
        width: 30%;
        height: 62px;
    }

    .logo-container img {
        width: 60px;
        height: 60px;
    }

    .brand-name-container {
        display: none;
    }







    /* RIGHT SECTION */

    .right-section {
        width: 150px;
        height: 120px;
        flex-shrink: 0;
        padding: 0;
        position: relative;
        right: auto;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 15px;

    }

    .all-categoriries {
        display: none;
    }

    .wish-icon,
    .cart-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wish-icon i,
    .cart-icon i {
        font-size: 19px;
    }

    #wishlistCounter,
    #cartCounter {
        top: -8px;
        right: -8px;
        min-width: 16px;
        height: 16px;
        font-size: 9px;
    }







    /* PRODUCTS */

    .hoodies-collection {
        width: 95%;
        margin: 25px auto 0;
        padding: 25px 0 35px;
    }

    .hoodies-collection .products-grid {
       grid-template-columns: 1fr;
        gap: 20px 8px;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hoodies-collection .product-image {
         width: 300px;
        height: 400px;
        border: 2px solid gold;
    }

    .hoodies-collection .product-details {
        height: auto;
        padding: 8px 2px;
    }


  .hoodies-collection .product-image img {
        width: 100%;
        height: 100%;

    }

    .hoodies-collection .product-details h3 {
         font-size: 12px;
        line-height: 1.3;
    }

    .hoodies-collection .product-category {
         font-size: 14px;
        line-height: 1.3;
    }

    .hoodies-collection .price {
         font-size: 16px;
    }

    .hoodies-collection .card-button-container {
        width: 300px;
        display: flex;
        justify-content: space-between;
    }

    .hoodies-collection .card-button-container button,
    .hoodies-collection .size-button {
       padding: 10px 25px;
        font-size: 10px;
    }








    /* FOOTER*/

    .footer {
        padding-top: 50px;
    }


    .footer-container {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
        background-color: #000;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
    }


    .footer-brand {
        grid-column: auto;
        color: white;
    }


    .footer-logo {
        justify-content: flex-start;
    }


    .footer-brand p {
        max-width: 100%;
        color: white;
    }

    .social-icons {
        width: 100%;
    }


    .footer-bottom {
        width: 85%;
        padding: 20px 0;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .social-icons a {
        color: white;
        border: 2px solid white;
        border-radius: 50px;
    }

    .footer-column>a {
        color: white;

    }

    .footer-column h3 {
        color: white;
    }


}








@media screen and (min-width: 769px) and (max-width: 1024px) {

    .navbar {
        width: 100%;
        height: 120px;
        display: flex;
        align-items: center;
        position: sticky;
        top: 40px;
    }




    /* LEFT SECTION */

    .left-section {
        width: 150px;
        height: 120px;
        padding: 0;
        justify-content: center;
        position: relative;

    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 120px;
        left: 0;
        width: 220px;
        background-color: white;
        border-top: 2px solid gold;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
        z-index: 1005;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu a {
        text-decoration: none;
        color: #000;
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 1px;
        padding: 18px 20px;
        border-bottom: 1px solid #eee;
        transition: 0.3s ease;
    }

    .mobile-menu a:hover {
        background-color: #000;
        color: white;
    }





    /* MIDDLE SECTION */

    .middle-section {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        width: auto;
        height: 80px;
        margin: 5px 10px;
        border: 4px solid gold;
        border-radius: 40px;
        background-color: #000;
    }



    .logo-container {
        width: 30%;
        height: 62px;
    }

    .logo-container img {
        width: 60px;
        height: 60px;
    }

    .brand-name-container {
        display: none;
    }







    /* RIGHT SECTION */

    .right-section {
        width: 150px;
        height: 120px;
        flex-shrink: 0;
        padding: 0;
        position: relative;
        right: auto;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 15px;

    }

    .all-categoriries {
        display: none;
    }

    .wish-icon,
    .cart-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wish-icon i,
    .cart-icon i {
        font-size: 19px;
    }

    #wishlistCounter,
    #cartCounter {
        top: -8px;
        right: -8px;
        min-width: 16px;
        height: 16px;
        font-size: 9px;
    }




    /* PRODUCT SECTION */

    .hoodies-collection {
        width: 90%;
        margin: 30px auto 0;
        padding: 20px 0 30px;
    }

    .hoodies-collection .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 300px);
        justify-content: center;
        align-items: start;
        gap: 50px;
    }

    .hoodies-collection .product-card {
        width: 300px;
        margin: 0 auto 30px;
    }

    .hoodies-collection .product-image {
        width: 300px;
        height: 400px;
        border: 2px solid gold;
    }

    .hoodies-collection .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hoodies-collection .product-details {
        width: 300px;
        height: auto;
        min-height: 115px;
        padding: 8px 3px 10px;
    }

    .hoodies-collection .product-category {
        font-size: 10px;
        margin-bottom: 7px;
    }

    .hoodies-collection .product-details h3 {
        font-size: 14px;
        line-height: 1.35;
        margin-bottom: 7px;
    }

    .hoodies-collection .price {
        font-size: 16px;
        margin-bottom: 9px;
    }

    .hoodies-collection .card-button-container {
        width: 300px;
        display: flex;
        justify-content: space-between;
    }

    .hoodies-collection .card-button-container button,
    .hoodies-collection .size-button {
        padding: 10px 25px;
        font-size: 10px;
    }




    /*  FOOTER */

    .footer {
        padding-top: 60px;
    }

    .footer-container {
        width: 100%;
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 35px;
        padding-bottom: 50px;
        background-color: #000;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
    }


    .footer-column h3 {
        color: white;
    }

    .social-icons {
        color: white;

    }

    .social-icons a {
        color: white;
        border: 2px solid white;
        border-radius: 50px;
    }

    .footer-brand p {
        color: white;
    }

    .footer-column>a {
        color: white;
    }

    .footer-logo h2 {
        color: white;
    }


}