*{
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;


}

html{
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #f9f9f9; /* or whatever background you want */
}
body::-webkit-scrollbar{
    display: none;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.header-left{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90%;
    width: 50%;
}

.logo {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-icon,
.account-icon {
    position: relative;
    font-size: 20px;
    color: #111;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;

    width: 18px;
    height: 18px;

    background: #afa2a2;
    color: #fff;

    font-size: 10px;
    font-weight: 600;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}

/* SEARCH */
.search-form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: visible;
    width: 70%;
    height: 70%;
    position: relative;

}

.search-form input {
    border: none;
    padding: 6px 14px;
    outline: none;
    font-size: 14px;
    width: 80%;
    height: 70%;
    display: flex;
    align-items: center;
    border-radius: 30px 0 0 30px;
}
.search_sbtn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    border: none;
    border-radius: 0  30px 30px 0;
}

.search-dropdown{
    position: absolute;
    top: 110%;
    left: -50%;

    width: 200%;

    background: white;

    display: none;

    z-index: 999999;

    border-radius: 2px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    max-height: 350px;
    overflow-y: auto;
}
.search-item {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    gap: 10px;
}

.search-item:hover {
    background: #f5f5f5;
}

.search-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 2px;
}

.search-item .info {
    font-size: 13px;
}


.section-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
}
.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
}
.container_na {
    width: 90%;
    margin: 15vh auto 0 auto;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}
.product-card {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    margin-top: 15px;
}

.subcategory {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999;
    text-transform: uppercase;
}

.product-name {
    font-size: 14px;
    margin: 5px 0;
}

.price {
    font-weight: 600;
    font-size: 16px;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.grid-cart-btn {
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #dadada;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.grid-cart-btn:hover {
    transform: translateY(-1px);
    opacity: 0.85;
}

.grid-cart-btn.is-added {
    opacity: 0.7;
}
.product-card a {
    text-decoration: none;
    color: inherit;
}
.product-image {
    width: 100%;
    aspect-ratio: 3 / 4;   /* perfect for fashion */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card a:hover {
    color: inherit;
}
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.pagination a {
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid #ddd;
    color: #333;
    transition: 0.3s;
}

.pagination a:hover {
    background: #111;
    color: #fff;
}

.pagination .current {
    font-weight: 600;
}
.current-page {
    background: #111;
    color: white;
    padding: 8px 14px;
}
.pagination span {
    padding: 8px 14px;
}

.pagination span:not(.current-page) {
    color: #999;
}

.footer-main-desktop{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
    width: 100%;
    background-color: #222225;
    color: #FFFFFF;
    flex-shrink: 0;
    margin-top: 5vh;

}
.join-our-world{
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 25%;
}
.sub-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 25%;
    font-size: 17px;
    color: #6b6a6a;
    text-align: center;
}
.main-desktop-form{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30%;
    width: 60%;
}
.md-form-input{
    box-sizing: content-box;
    height: 50%;
    width: 60%;
    margin-right: 5%;
    outline: none;
    background-color: transparent;
    border-radius: 5px;
    color: #727171;
    border: thin solid #2c2c2c;
    padding-left: 20px;

}
.main-subscribe-btn{
    height: 50%;
    width: 20%;
    border: none;
    border-radius: 5px;
    color: black;
    background-color: #FFFFFF;
    transition: background-color 0.5s ease-in;
}
.main-subscribe-btn:hover{
    background-color: black;
    color: #FFFFFF;
}
.md-tc{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
    width: 50%;
    color: #727171;
    font-size: 17px;

}

@media (max-width: 768px) {
    .grid-cart-btn {
        display: none;
    }
}
