.wtm-advanced-layout-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.wtm-layout-option {
    position: relative;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.wtm-layout-option:hover {
    border-color: #93003c;
    box-shadow: 0 2px 8px rgba(147, 0, 60, 0.1);
}

.wtm-layout-option.selected {
    border-color: #93003c;
    background: #f8f9fa;
}

.wtm-layout-preview {
    margin-bottom: 10px;
}

.wtm-layout-preview img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.wtm-layout-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: #23282d;
}

.wtm-layout-info p {
    margin: 0;
    font-size: 12px;
    color: #646970;
    line-height: 1.4;
}

.wtm-pro-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

.wtm-layout-option.pro-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wtm-layout-option.pro-disabled:hover {
    border-color: #e1e5e9;
    box-shadow: none;
}