/* ============ BASIC RESET ============ */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ============ NAVBAR ============ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid #ccc;
}

.navbar nav a {
    margin: 0 15px;
    text-decoration: none;
    color: black;
}

.nav-right input {
    padding: 5px;
}

.nav-right a {
    margin-left: 15px;
    text-decoration: none;
    color: black;
}

/* ============ CATEGORY SECTION ============ */
.categories {
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

.category-box {
    width: 22%;
    text-align: center;
    border: 1px solid #ccc;
    padding: 15px;
}

/* 1:1 Image Ratio */
.category-box img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* ============ TRENDING SECTION ============ */
.trending-section {
    padding: 40px;
}

.product-grid {
    display: flex;
    gap: 20px;
}

.product-card {
    width: 23%;
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
}

/* 1:1 Product Image */
.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
