* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: white;
    color: black;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.navbar {
    background-color: white;
    color: black;
    padding: 15px 0;
    text-align: center;
    font-size: 30px;
    font-weight:600;
    border-bottom: 1px solid #8D8D8D;
}
.categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}



/* Product Start */

.product-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1800px;
    margin: 40px auto;
    padding: 0 10px;
}

.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: opacity 0.4s ease;
    display: block;
}

.product-img.secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .product-img.primary {
    opacity: 0;
}

.product-card:hover .product-img.secondary {
    opacity: 1;
}

.product-details {
    text-align: center;
    padding: 10px 0;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #222;
    margin-bottom: 5px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #555;
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-img {
        height: 260px;
    }

    .product-name {
        font-size: 16px;
    }

    .product-price {
        font-size: 14px;
    }
}

/* Product End */



/* Footer Vall Button */
.button-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.uvsbuttoncenter {
    margin-top: 20px;
    margin-bottom: 20px;
    background: transparent;
    border: 2px solid black;
    padding: 18px 70px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: black; /* Default color set */
    display: inline-block; /* Ensure button structure */
}

.uvsbuttoncenter:hover {
    background: black;
    color: white;
    text-decoration: none; /* Ensure no underline appears on hover */
}




 /* Footer Slider Card */
.card-section {
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: auto;
    gap: 0px;
    overflow: hidden;
}

.card {
    flex: 1;
    max-width: 32%;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 1px;
    transition: transform 0.3s ease-in-out;
}

.card img:hover {
    transform: scale(1.05);
}

/* Mobile Slider */
@media (max-width: 768px) {
    .card-section {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 10px;
        padding: 10px;
    }

    .card {
        flex: 0 0 80%;
        scroll-snap-align: center;
        max-width: 80%;
    }
}



/* Footers */
.footer {
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #8D8D8D;
    padding: 15px 0;
    background-color: white;
    text-align: center;
}
.footer a {
    display: inline-block;
    margin: 5px 15px;
    color: #8D8D8D;
    text-decoration: none;
    font-size: 18px;
}
@media (max-width: 768px) {
    .product-card {
        width: 90%;
    }
    .footer a {
        display: block;
        margin: 5px 0;
        text-align: left;
        margin-left: 5px;
        font-size: 14px;
    }
}