/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    border: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
    padding: 20px;
}

/* LOGO */
.logo img {
    max-width: 200px;
    height: 250px;
    margin-bottom: 20px;
}

/* TABS */
.tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.tabs button {
    padding: 10px 20px;
    background: #eee;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
    margin-bottom: 5px;
}
.tabs button.active,
.tabs button:hover {
    background: #333;
    color: #fff;
}
.logo {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
/* CATEGORY SECTION */
.category {
    margin-bottom: 40px;
    padding: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.category h2 {
    margin-bottom: 20px;
    background: rgba(255,255,255,0.8);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
}

/* FLEX LAYOUT */
.items-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
/* .item-card {
    background: #fff;
    width: 250px;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.item-card:hover {
    transform: translateY(-5px);
}
.item-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fff; 
}

.item-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.item-card p {
    font-size: 14px;
    margin-bottom: 5px;
} */

.item-card {
    background: none;
    width: 250px;
    text-align: center;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

.item-card img {
    width: 200px;
    height: 250px;
    object-fit: contain;
    background: transparent;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 13px 24px rgba(0, 0, 0, 0.37))
}



.item-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.item-card p {
    font-size: 14px;
    margin: 2px 0;
}

/* NEW ARRIVAL BADGE */
.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    padding: 5px 8px;
    font-size: 12px;
    border-radius: 4px;
    z-index: 1;
}

/* POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
}
.popup img {
    max-width: 90%;
    max-height: 90%;
}
#popup-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
