body {
    background-color: black;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.navbar {
    background-color: #0d1224;
    height: auto;
    border: 2px solid #1d2440; 
    border-radius: 10px;
    margin: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
}

.logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1); 
}

.main-input {
    background-color: #f0f0f0;
    border: 2px solid #1e2a3a;
    padding: 10px;
    width: 65%; 
    border-radius: 8px;
    font-size: 18px;
    color: #333;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.main-input:focus {
    background-color: #fff;
    border-color: #d4a81b; 
    outline: none;
}

.main-text {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.categories {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.categories-image {
    height: 220px;
    width: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.categories-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.men {
    font-family: 'System-ui', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.cardcontainer {
    background-color: white;
    padding: 10px;
    height: auto;
    width: 450px;
    margin-left: 10px;
    border-radius: 10px;
    gap: 10%;
    margin-bottom: 10px;
}
.cardheading {
    color: #1d2440;
    font-size: 25px;
}
.ac-image {
    width: 200px;
    height: 150px;
    margin-right: 20px;
}
.para {
    font-family: "Gill Sans", sans-serif;
    font-size: 15px;
}
@media (max-width: 768px) {
    .categories {
        flex-direction: column;
    }
    .cardcontainer {
        width: 100%;
        margin-left: 0;
    }
}
.sectionabtus {
    background-color: #232F3E;
    color: white;
    padding: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center; 
}

ul {
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
    width: 200px; 
}

ul b {
    font-size: 18px; 
    font-weight: bold;
    margin-bottom: 10px; 
}

ul li {
    margin: 5px 0; 
    font-size: 14px; 
}
/* Container for the product card */
.product-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Styling for the product card */
.product-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 250px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 13px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Styling for product image */
.product-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* Brand heading */
.brand-heading {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 10px;
}

/* Product title */
.product-title {
    font-size: 14px;
    font-weight: 500;
    color: #34495e;
    text-decoration: none;
    margin-top: 8px;
    display: block;
    max-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Rating styling */
.rating {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 5px;
}

/* Price container for the price and brand logo */
.price-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

/* Brand logo */
.brand-logo {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

/* Price styling */
.price {
    font-size: 16px;
    font-weight: 600;
    color: #e74c3c;
    margin-left: 5px;
}

/* Add to Cart button */
.add-to-cart-btn {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 25px;
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #27ae60;
}
.cart {
    color: white;
    gap: 10px;
    background-color: #0d1224;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    height: 20vh;
    margin-top: 10px;
    border-radius: 12px;
    padding: 15px;
    width: 100vw;
}
.buyNow-background {
    background-color: transparent;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    margin-right: 10px;
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}
.buyNow {
    color: black;
    justify-content: right;
    border: 0px solid;
    border-radius: 5px;
}

.new {
    font-size: 30px;
}
#total{
    background-color: transparent;
    color: whitesmoke;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 30px;
}