.ms-wardrobe-block {
    margin-top: 15px;
}

.ms-add-to-wardrobe,
.ms-in-wardrobe,
.ms-login-required {
    background-color: #F5BABE; /* lososová */
    color: #2b2b2b;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

.ms-add-to-wardrobe:hover {
    background-color: #e2a6aa;
}

.ms-in-wardrobe {
    background-color: #8C9C5F;
    color: #fff;
}

.ms-login-required {
    opacity: 0.6;
    cursor: not-allowed;
}

.ms-wardrobe-message {
    display: block;
    margin-top: 9px;
    font-size: 14px;
    color: #8f8f8f;
}

/* Můj účet */

.ms-wardrobe-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ms-wardrobe-item {
    width: calc(25% - 20px);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    position: relative;
}

.ms-wardrobe-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.ms-wardrobe-item-name {
    margin-top: 10px;
    font-size: 1em;
}

.ms-remove-button {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 20px;
    font-weight: bold;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-remove-button:hover {
    background-color: #c0392b;
    transform: scale(1.1);
}

.ms-remove-button:active {
    background-color: #a93226;
}

.ms-stock-status {
    margin-top: 8px;
    font-size: 0.9em;
    font-weight: bold!important;
}

.ms-stock-status.in-stock {
    color: #27ae60;
}

.ms-stock-status.out-of-stock {
    color: #e74c3c;
}