#jadore-macaron-selector {
    margin: 20px 0;
}

.jadore-macaron-info {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
}

.jadore-macaron-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.jadore-macaron-item {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.jadore-macaron-item.selected {
    border-color: #c9a96e;
    box-shadow: 0 0 0 1px #c9a96e;
}

.jadore-macaron-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
}

.jadore-macaron-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c4);
    margin: 0 auto 8px;
}

.jadore-macaron-name {
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 4px;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jadore-macaron-price {
    color: #666;
    font-size: 0.85em;
    margin-bottom: 8px;
}

.jadore-macaron-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.jadore-qty-minus,
.jadore-qty-plus {
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    user-select: none;
}

.jadore-qty-minus {
    border-radius: 4px 0 0 4px;
}

.jadore-qty-plus {
    border-radius: 0 4px 4px 0;
}

.jadore-qty-minus:hover,
.jadore-qty-plus:hover {
    background: #e0e0e0;
}

.jadore-qty-minus:disabled,
.jadore-qty-plus:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.jadore-qty-input {
    width: 40px;
    height: 32px;
    text-align: center;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    font-size: 1em;
    -moz-appearance: textfield;
    appearance: textfield;
    background: #fff;
}

.jadore-qty-input::-webkit-outer-spin-button,
.jadore-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.jadore-macaron-summary {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    font-size: 1.05em;
    text-align: center;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.jadore-selected-count {
    font-weight: 700;
    font-size: 1.2em;
}

.jadore-macaron-summary.complete {
    background: #f0f8e8;
    border-color: #8bc34a;
}

.jadore-macaron-summary.over {
    background: #fde8e8;
    border-color: #f44336;
}

.jadore-total-price {
    font-weight: 700;
}

@media (max-width: 600px) {
    .jadore-macaron-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .jadore-macaron-item {
        padding: 8px;
    }

    .jadore-macaron-item img,
    .jadore-macaron-placeholder {
        width: 60px;
        height: 60px;
    }
}
