body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    padding: 20px;
}

.title {
    text-align: center;
    margin-bottom: 30px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.shirt {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.shirt:hover {
    transform: scale(1.05);
}

.shirt img {
    width: 100%;
    border-radius: 6px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    width: 320px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.modal-content img {
    width: 100%;
    border-radius: 8px;
}

#closeBtn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}
