*{
    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 */
}
.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}
.container_na {
    width: 90%;
    margin: 0 auto;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 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: 18px;
    margin: 5px 0;
}

.price {
    font-weight: 600;
    font-size: 16px;
}
.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;

}