* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Futura PT", Arial, sans-serif;
    color: #000;
    background-color: #fff;
}




.ad-header {
    width: 100%;
    height: 40px;
    background-color: #000;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-content {
    display: flex;
    align-items: center;
}

.ad-content h6 {
    color: #fff;
}

.ad-content hr {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border: none;
    margin: 0 10px;
}

.marquee-container {
    display: flex;
    align-items: center;
    margin-left: 20px;
}




.navbar {
    width: 100%;
    height: 120px;
    background-color: #fff;

    display: flex;
    flex-direction: row;

    position: sticky;
    top: 40px;

    z-index: 999;
}


.left-section {
    width: 30%;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-left: 50px;
    padding-right: 30px;
}

.left-section a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}


.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: 50%;
}


.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;
    height: 3px;
    border: none;
    background-color: gold;
    margin: 5px 0;
}


.right-section {
    width: 30%;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-right: 50px;
}

.all-categoriries a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    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;
    pointer-events: none;
}


.wishlist-page {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding: 70px 0 100px;
}



.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 10px;
}

.page-title p {
    color: #777;
    font-size: 13px;
}


.wishlist-section {
    width: 100%;
}


.wishlist-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.wishlist-heading h2 {
    font-size: 13px;
    letter-spacing: 2px;
}

.wishlist-heading span {
    color: #777;
    font-size: 11px;
}




.wishlist-products {
    width: 100%;
}


.wishlist-product {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 25px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}




.wishlist-product-image {
    width: 150px;
    height: 170px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.wishlist-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.wishlist-product:hover .wishlist-product-image img {
    transform: scale(1.04);
}




.wishlist-product-details h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.wishlist-product-details .category {
    font-size: 10px;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 10px;
}

.wishlist-product-details .price {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.wishlist-size{
    color: #777;
	font-size: 12px;
	margin-bottom: 15px;
}


.wishlist-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}


.add-to-cart {
    min-width: 130px;
    height: 40px;
    border: none;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.add-to-cart:hover {
    background-color: gold;
    color: #000;
}


.remove-wishlist {
    font-size: 10px;
    background-color: transparent;
    padding: 10px 20px;
    border: 1px solid #000;
    text-decoration: none;
}

.remove-wishlist:hover {
    color: red;
}



.empty-wishlist {
    display: none;
    text-align: center;
    padding: 80px 20px;
}

.empty-wishlist.show {
    display: block;
}


.empty-wishlist-icon {
    font-size: 55px;
    margin-bottom: 20px;
    color: #000;
}


.empty-wishlist h2 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.empty-wishlist p {
    color: #777;
    font-size: 13px;
    max-width: 450px;
    margin: 0 auto 25px;
    line-height: 1.8;
}


.empty-wishlist a {
    display: inline-block;
    padding: 14px 25px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.empty-wishlist a:hover {
    background-color: gold;
    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;
    }



    .wishlist-product {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 5px 50px;
        align-items: start;
        padding: 20px 0;
        background-color: transparent;
    }

    .wishlist-product-image {
        width: 130px;
        height: 180px;
    }

    .wishlist-product-details {
        min-width: 0;
    }

    .wishlist-product-details h3 {
        font-size: 13px;
    }

    .wishlist-product-details .category {
        font-size: 9px;
        margin-bottom: 8px;
    }

    .wishlist-product-details .price {
        font-size: 12px;
    }


    .wishlist-actions {
        grid-column: 2;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
    }

    .add-to-cart {
        width: 100px;
        height: 38px;
        font-size: 9px;
    }

    .remove-wishlist {
        font-size: 8px;
        background-color: transparent;
        padding: 10px 10px;
        border: 1px solid #000;
        text-decoration: none;
        font-weight: 500;
    }




    /* 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;
    }



    .remove-wishlist {
        font-size: 10px;
        background-color: transparent;
        padding: 10px 20px;
        border: 1px solid #000;
        text-decoration: none;
    }


    /*  FOOTER */

    .footer {
        padding-top: 60px;
    }

    .footer-container {
        width: 90%;
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 35px;
        padding-bottom: 50px;
    }


    .footer-column.newsletter {
        grid-column: 1 / -1;
        width: 100%;
    }


}