﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


.top-bar {
    width: 100%;
    background: #12000a;
    color: #fff;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
}

.top-bar-track {
    display: flex;
    width: max-content;
    animation: scrollBar 20s linear infinite;
}

    .top-bar-track span {
        white-space: nowrap;
        padding: 0 40px;
        font-size: 14px;
        font-weight: 500;
    }


@keyframes scrollBar {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}




.contact-bar {
    background: #fff;
    color: #000;
    padding: 8px 40px;
    font-size: 14px;
}

.contact-left {
    display: flex;
    gap: 25px;
}

.contact-bar,
.contact-left {
    border-bottom: 2px solid #6a6666;
    margin-top: 5px;
}


.main-header {
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    border-bottom: 1px solid #eee;
    margin-top: -15px;
}


.logo img {
    height: 55px;
}


.nav-menu {
    display: flex;
    gap: 28px;
}

    .nav-menu a {
        text-decoration: none;
        color: #000;
        font-size: 14px;
        letter-spacing: 1px;
        font-weight: 500;
        transition: 0.3s;
    }

        .nav-menu a:hover {
            color: #b55a7c;
        }


.header-icons {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-left: 800px;
}

    .header-icons img {
        width: 22px;
        height: 28px;
        cursor: pointer;
        transition: 0.3s;
    }

        .header-icons img:hover {
            transform: scale(1.15);
        }

.breadcrumb-bar {
    width: 100%;
    background: #f6f6f6;
    padding: 14px 40px;
    text-align: center;
    font-size: 14px;
}

    .breadcrumb-bar a {
        text-decoration: none;
        color: #777;
        transition: 0.3s;
    }

        .breadcrumb-bar a:hover {
            color: #000;
        }

    .breadcrumb-bar span {
        margin: 0 6px;
        color: #777;
    }

    .breadcrumb-bar .current {
        color: #000;
        font-weight: 500;
    }

.heading {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

    .heading h1 {
        font-size: 48px;
        font-weight: 600;
        color: #000;
        margin: 0;
        font-family: Arial, sans-serif;
    }

.shop-section {
    width: 100%;
    padding: 60px 40px;
    background:#fff;
}

.shop-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}



.shop-filter {
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    height:300px;
}

    .shop-filter h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .shop-filter label {
        display: block;
        font-size: 14px;
        margin-bottom: 8px;
    }

.price-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

    .price-box input {
        width: 100%;
        padding: 6px;
        border: 1px solid #ddd;
    }

.filter-btn {
    width: 100%;
    padding: 8px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

    .filter-btn:hover {
        background: #333;
    }




.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    text-align: center;
    padding: 25px;
    border: 1px solid #eee;
    transition: 0.3s;
    border-radius: 6px;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .product-card img {
        width: 100%;
        max-height: 260px;
        object-fit: contain;
        margin-bottom: 15px;
    }

.stars {
    font-size: 15px;
    margin-bottom: 12px;
}

.actions {
    display: flex;
    justify-content: center;
}
.product-info {
    text-align: left;
    margin-bottom: 15px;
}

    .product-info h4 {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 5px;
        color: #000;
    }

    .product-info p {
        font-size: 13px;
        color: #666;
        margin-bottom: 6px;
    }

    .product-info .rating {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
    }

    .product-info .stars {
        color: #000;
        letter-spacing: 2px;
    }

    .product-info .reviews {
        color: #777;
    }

.wish {
    width: 40px;
    height: 40px;
    background: #4c6b5a;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.cart {
    flex: 1;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.wish:hover {
    background: #2f4639;
    transform: scale(1.1);
}

.cart:hover {
    background: #333;
    letter-spacing: 0.5px;
}

.search-box {
    position: relative;
}

.search-btn {
    width: 22px;
    height: 28px;
    cursor: pointer;
}

.search-panel {
    position: absolute;
    top: 45px;
    right: 0;
    width: 420px;
    background: #f3f3f3;
    border-radius: 40px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #e0e0e0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.35s ease;
    z-index: 999;
}

    .search-panel.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.search-icon {
    width: 18px;
    opacity: 0.7;
}

.search-panel input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
}

    .search-panel input::placeholder {
        color: #777;
    }






.footer-bar {
    width: 100%;
    background: #F2EFEC;
    color: #000;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
}

.footer-bar-track {
    display: flex;
    width: max-content;
    animation: scrollBar 25s linear infinite;
}

    .footer-bar-track span {
        white-space: nowrap;
        padding: 0 40px;
        font-size: 14px;
        font-weight: 500;
    }

@keyframes scrollBar {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}


.site-footer {
    width: 100%;
    background: linear-gradient(180deg, #1b1b1b, #0f0f0f);
    color: #fff;
    padding-top: 70px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.tagline {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 25px;
}

.footer-col h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            text-decoration: none;
            color: #bbb;
            font-size: 14px;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: #fff;
                transform: translateX(6px);
            }

.contact p {
    font-size: 14px;
    color: #bbb;
    margin: 15px 0 5px;
}

.contact a {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

    .contact a:hover {
        border-color: #fff;
    }

.footer-bottom {
    border-top: 1px solid #222;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.socials a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    margin-right: 12px;
    transition: 0.3s;
}

    .socials a:hover {
        transform: translateY(-4px) scale(1.2);
        color: #ccc;
    }

.footer-right {
    font-size: 14px;
    color: #bbb;
}

    .footer-right a {
        color: #fff;
        text-decoration: none;
    }

        .footer-right a:hover {
            text-decoration: underline;
        }

.mobile-hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 3000;
}

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    z-index: 3001;
    transition: .4s ease;
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

    .mobile-head img {
        height: 38px;
    }

.mobile-close {
    font-size: 22px;
    cursor: pointer;
}

.mobile-links {
    padding: 20px;
}

    .mobile-links a {
        display: block;
        padding: 12px 0;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
    }

.mobile-footer {
    padding: 20px;
    font-size: 13px;
    color: #444;
}

    .mobile-footer h4 {
        margin: 15px 0 6px;
        font-size: 14px;
    }

.mobile-social {
    display: flex;
    gap: 14px;
    margin: 10px 0;
    font-size: 18px;
}

.mobile-welcome {
    background: #f3f3f3;
    padding: 15px;
    border-radius: 8px;
    margin-top: 12px;
}



.header-left {
    display: flex;
    align-items: center;
}


.mobile-hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}



.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 3000;
}

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 330px;
    height: 100%;
    background: #fff;
    z-index: 3001;
    transition: .4s ease;
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

    .mobile-head img {
        height: 38px;
    }

.mobile-close {
    font-size: 22px;
    cursor: pointer;
}

.mobile-links {
    padding: 20px;
}

    .mobile-links a {
        display: block;
        padding: 12px 0;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
    }


.mobile-header-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

    .mobile-header-icons img {
        width: 22px;
        height: 26px;
        cursor: pointer;
        transition: 0.3s;
    }

        .mobile-header-icons img:hover {
            transform: scale(1.1);
        }

    .mobile-header-icons .search-box {
        position: relative;
    }

    .mobile-header-icons .search-panel {
        right: -10px;
        width: 260px;
        top: 38px;
    }
