/**
 * Marzipan Block Editor Styles
 */

/* Block wrapper */
.marzipan-block-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Block preview container */
.marzipan-block-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    overflow: hidden;
}

.marzipan-block-preview__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: #1e1e1e;
    color: #fff;
}

.marzipan-block-preview__header svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.marzipan-block-preview__title {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marzipan-block-preview__badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.marzipan-block-preview__content {
    padding: 20px;
    text-align: center;
}

.marzipan-block-preview__value {
    display: inline-block;
    background: #1e1e1e;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.marzipan-block-preview__placeholder {
    color: #757575;
    font-size: 13px;
}

.marzipan-block-preview__badge-preview {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Grid preview for collection */
.marzipan-block-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 20px 20px;
}

.marzipan-block-preview__grid-item {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 6px;
    position: relative;
}

.marzipan-block-preview__grid-item::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    height: 8px;
    background: #ced4da;
    border-radius: 4px;
}

/* Cart preview */
.marzipan-block-preview__cart-preview {
    padding: 0 20px 20px;
}

.marzipan-block-preview__cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 8px;
}

.marzipan-block-preview__cart-item:last-child {
    margin-bottom: 0;
}

.marzipan-block-preview__cart-item-image {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 4px;
    flex-shrink: 0;
}

.marzipan-block-preview__cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.marzipan-block-preview__cart-item-name {
    height: 12px;
    width: 70%;
    background: #dee2e6;
    border-radius: 3px;
}

.marzipan-block-preview__cart-item-price {
    height: 10px;
    width: 40%;
    background: #e9ecef;
    border-radius: 3px;
}

/* Form preview */
.marzipan-block-preview__form-preview {
    padding: 0 20px 20px;
}

.marzipan-block-preview__form-field {
    margin-bottom: 12px;
}

.marzipan-block-preview__form-label {
    height: 10px;
    width: 80px;
    background: #dee2e6;
    border-radius: 3px;
    margin-bottom: 6px;
}

.marzipan-block-preview__form-input {
    height: 36px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
}

.marzipan-block-preview__form-textarea {
    height: 80px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
}

.marzipan-block-preview__form-button {
    height: 36px;
    width: 120px;
    background: #1e1e1e;
    border-radius: 4px;
}

/* Block selection state */
.wp-block[data-type^="marzipan/"].is-selected .marzipan-block-preview {
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

/* Specific block styles */
.marzipan-block-preview--icon .marzipan-block-preview__content {
    padding: 16px 20px;
}

.marzipan-block-preview--button .marzipan-block-preview__content,
.marzipan-block-preview--account .marzipan-block-preview__content {
    padding: 24px 20px;
}

/* Inspector panel improvements */
.editor-styles-wrapper .marzipan-inspector-note {
    background: #f0f6fc;
    border-left: 4px solid #007cba;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #1e1e1e;
}
