* {
    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;
    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;
}



.cart-page {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding: 70px 0 100px;
}



.page-title {
    margin-bottom: 50px;
    text-align: center;
}


.page-title h1 {
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 10px;
}


.page-title p {
    color: #777;
    font-size: 13px;
}



.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}




.cart-items {
    width: 100%;
}


.cart-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000;
    padding-bottom: 15px;
    margin-bottom: 10px;
}


.cart-heading h2 {
    font-size: 13px;
    letter-spacing: 2px;
}


.cart-heading span {
    color: #777;
    font-size: 11px;
}


.cart-product {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 25px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}


.cart-product-image {
    width: 130px;
    height: 150px;
    background-color: #f5f5f5;
    overflow: hidden;
}


.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.cart-product-details h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}


.cart-product-details .price {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}


.cart-product-details .size {
    color: #777;
    font-size: 12px;
    margin-bottom: 15px;
}



.cart-quantity {
    width: 110px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}


.cart-quantity button {
    width: 35px;
    height: 100%;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 17px;
}


.cart-quantity span {
    font-size: 12px;
}




.remove-item {
    background: transparent;
    padding: 10px 15px;
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    font-size: 10px;
    cursor: pointer;
}


.remove-item:hover {
    color: red;
}



.cart-product-total {
    text-align: right;
    align-self: start;
}


.cart-product-total strong {
    font-size: 15px;
}




.empty-cart {
    display: none;
    text-align: center;
    padding: 80px 20px;
}


.empty-cart.show {
    display: block;
}


.empty-cart-icon {
    font-size: 45px;
    margin-bottom: 20px;
}


.empty-cart h2 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.empty-cart p {
    color: #777;
    font-size: 13px;
    margin-bottom: 25px;
}


.empty-cart a {
    display: inline-block;
    padding: 14px 25px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
}


.empty-cart a:hover {
    background-color: gold;
    color: #000;
}




.order-summary {
    background-color: #f8f8f8;
    padding: 30px;
}


.order-summary h2 {
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}


.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 13px;
}


.summary-line span {
    color: #666;
}


.summary-line strong {
    font-weight: 500;
}


.discount-line strong {
    color: #b38b00;
}


.summary-divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 25px 0;
}




.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}


.total-line span {
    font-size: 13px;
    letter-spacing: 2px;
}


.total-line strong {
    font-size: 20px;
}




.promo {
    margin-bottom: 25px;
}


.promo h3 {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


.promo-form {
    display: flex;
}


.promo-form input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ccc;
    outline: none;
    background-color: #fff;
    font-family: inherit;
}


.promo-form input:focus {
    border-color: gold;
}


.promo-form button {
    width: 80px;
    height: 40px;
    background-color: #000;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 10px;
    letter-spacing: 1px;
}


.promo-form button:hover {
    background-color: gold;
    color: #000;
}


#promoMessage {
    display: block;
    margin-top: 8px;
    font-size: 11px;
}




.checkout-button {
    width: 100%;
    height: 55px;
    border: none;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: .3s;
    margin-bottom: 15px;
}


.checkout-button:hover {
    background-color: gold;
    color: #000;
}




.continue-shopping {
    display: block;
    text-align: center;
    color: #555;
    text-decoration: none;
    font-size: 11px;
}


.continue-shopping:hover {
    color: gold;
}




.payment-info {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 20px;
}


.payment-info p {
    color: #777;
    font-size: 11px;
    margin-bottom: 10px;
}


.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;
    }





    .cart-page {
        width: 92%;
        padding: 45px 0 70px;
    }

    .page-title {
        margin-bottom: 35px;
    }

    .page-title h1 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .page-title p {
        font-size: 12px;
        line-height: 1.6;
    }

    .cart-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 35px;
    }


    .cart-items {
        width: 100%;
        min-width: 0;
    }

    .cart-heading {
        padding-bottom: 12px;
        margin-bottom: 5px;
    }

    .cart-heading h2 {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .cart-heading span {
        font-size: 10px;
    }


    .cart-product {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 15px;
        padding: 18px 0;
        width: 100%;
    }


    .cart-product-image {
        width: 90px;
        height: 115px;
        grid-row: span 2;
    }


    .cart-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .cart-product-details {
        min-width: 0;
    }

    .cart-product-details h3 {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .cart-product-details .price {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .cart-product-details .size {
        font-size: 11px;
        margin-bottom: 10px;
    }


    .cart-quantity {
        width: 95px;
        height: 34px;
        margin-bottom: 10px;
    }

    .cart-quantity button {
        width: 30px;
        font-size: 15px;
    }

    .cart-quantity span {
        font-size: 11px;
    }


    .remove-item {
        font-size: 9px;
    }


    .cart-product-total {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
        align-self: start;
    }

    .cart-product-total strong {
        font-size: 13px;
    }


    .empty-cart {
        padding: 60px 15px;
    }

    .empty-cart-icon {
        font-size: 40px;
    }

    .empty-cart h2 {
        font-size: 16px;
    }

    .empty-cart p {
        font-size: 12px;
        line-height: 1.6;
    }


    .order-summary {
        width: 100%;
        padding: 25px 20px;
        margin: 0;
    }



    /* 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;
    }


    .cart-product-details h3 {
        font-size: 10px;
    }

    .cart-product-total strong {
        font-size: 12px;
    }

    .cart-product-details .price {
        font-size: 12px;
    }
    

    /*  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%;
    }




}