/* SquareKit Modal Styles - Extending Admin Modal Infrastructure */

/* Base Modal Overlay */
.squarekit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.squarekit-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content Container */
.squarekit-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.squarekit-modal.active .squarekit-modal-content {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.squarekit-modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #07251A 0%, #0a3d2a 100%);
    color: #fff;
}

.squarekit-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.squarekit-modal-header .product-info {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
}

.squarekit-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.squarekit-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Modal Body */
.squarekit-modal-body {
    padding: 0;
    max-height: calc(90vh - 160px);
    overflow-y: auto;
    position: relative;
}

/* Scrollbar Styling */
.squarekit-modal-body::-webkit-scrollbar {
    width: 8px;
}

.squarekit-modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.squarekit-modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.squarekit-modal-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Modal Content Area */
.squarekit-modal-content-area {
    display: grid;
    grid-template-columns: 1fr 320px;
    min-height: 500px;
}

/* Left Panel - Options */
.squarekit-modal-options {
    padding: 32px;
    background: #f8fafc;
}

/* Right Panel - Summary */
.squarekit-modal-summary {
    padding: 32px 24px;
    background: #fff;
    border-left: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    height: fit-content;
}

/* Modal Footer */
.squarekit-modal-footer {
    padding: 32px 32px 40px 32px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.squarekit-modal-footer .left-actions {
    display: flex;
    gap: 16px;
}

.squarekit-modal-footer .right-actions {
    display: flex;
    gap: 16px;
}

/* Modal Buttons */
.squarekit-modal-button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.squarekit-modal-button.primary {
    background: #667eea;
    color: #fff;
}

.squarekit-modal-button.primary:hover {
    background: #5a67d8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.squarekit-modal-button.secondary {
    background: #e2e8f0;
    color: #374151;
    padding: 16px 24px;
    min-width: 100px;
}

.squarekit-modal-button.secondary:hover {
    background: #cbd5e1;
}

.squarekit-modal-button.ghost {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.squarekit-modal-button.ghost:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.squarekit-modal-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Loading State */
.squarekit-modal-button .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Compact Product Page View */
.squarekit-modifiers-compact {
    margin: 24px 0;
    padding: 24px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    text-align: center;
}

.squarekit-modifiers-compact h4 {
    margin: 0 0 16px 0;
    color: #1a202c;
    font-size: 20px;
    font-weight: 600;
}

.squarekit-modifiers-compact .description {
    margin: 0 0 20px 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
}

.squarekit-modifiers-compact .customize-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.squarekit-modifiers-compact .customize-button:hover {
    background: #5a67d8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

.squarekit-modifiers-compact .customize-icon {
    font-size: 18px;
}

.squarekit-modifiers-compact .options-preview {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.squarekit-modifiers-compact .option-tag {
    padding: 4px 12px;
    background: #e2e8f0;
    color: #374151;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

/* Selection Summary in Compact View */
.squarekit-selection-summary {
    margin-top: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: none;
}

.squarekit-selection-summary.has-selections {
    display: block;
}

.squarekit-selection-summary h5 {
    margin: 0 0 12px 0;
    color: #1a202c;
    font-size: 14px;
    font-weight: 600;
}

.squarekit-selection-summary .selected-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.squarekit-selection-summary .selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.squarekit-selection-summary .item-name {
    color: #374151;
}

.squarekit-selection-summary .item-price {
    color: #059669;
    font-weight: 600;
}

.squarekit-selection-summary .total-line {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1a202c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .squarekit-modal-content {
        width: 98%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .squarekit-modal-content-area {
        grid-template-columns: 1fr;
    }
    
    .squarekit-modal-summary {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        position: static;
    }
    
    .squarekit-modal-header {
        padding: 20px 24px;
    }
    
    .squarekit-modal-header h2 {
        font-size: 20px;
    }
    
    .squarekit-modal-options,
    .squarekit-modal-summary {
        padding: 24px 20px;
    }
    
    .squarekit-modal-footer {
        padding: 24px 24px 32px 24px;
        flex-direction: column;
        gap: 16px;
    }
    
    .squarekit-modal-footer .left-actions,
    .squarekit-modal-footer .right-actions {
        width: 100%;
        justify-content: center;
    }
    
    .squarekit-modifiers-compact {
        padding: 20px 16px;
    }
    
    .squarekit-modifiers-compact .customize-button {
        width: 100%;
        justify-content: center;
    }
}

/* Accessibility */
.squarekit-modal[aria-hidden="true"] {
    display: none;
}

.squarekit-modal-content:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Animation for modal content */
@media (prefers-reduced-motion: no-preference) {
    .squarekit-modal-content-area {
        animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Modifier Sets */
.squarekit-modal-modifier-set {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.squarekit-modal-modifier-set:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.squarekit-modal-modifier-set h5 {
    margin: 0 0 20px 0;
    color: #1a202c;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

/* Modal Option Grid */
.squarekit-modal-options .squarekit-modifier-option {
    margin-bottom: 12px;
}

.squarekit-modal-options .squarekit-modifier-option-label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    min-height: 60px;
}

.squarekit-modal-options .squarekit-modifier-option-label:hover {
    border-color: #667eea;
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.squarekit-modal-options .squarekit-modifier-option input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

.squarekit-modal-options .squarekit-modifier-option .option-name {
    flex: 1;
    color: #1a202c;
    font-weight: 500;
    font-size: 15px;
}

.squarekit-modal-options .squarekit-modifier-option .option-price {
    color: #059669;
    font-weight: 600;
    font-size: 14px;
    margin-left: 8px;
}

/* Selected State */
.squarekit-modal-options .squarekit-modifier-option input:checked + .option-name {
    color: #667eea;
    font-weight: 600;
}

.squarekit-modal-options .squarekit-modifier-option input:checked ~ .option-price {
    color: #667eea;
}

.squarekit-modal-options .squarekit-modifier-option-label:has(input:checked) {
    border-color: #667eea;
    background: #f0f4ff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* Disabled/Sold Out State */
.squarekit-modal-options .squarekit-modifier-sold-out .squarekit-modifier-option-label,
.squarekit-modal-options .squarekit-modifier-out-of-stock .squarekit-modifier-option-label {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f9fafb;
}

.squarekit-modal-options .squarekit-modifier-sold-out .squarekit-modifier-option-label:hover,
.squarekit-modal-options .squarekit-modifier-out-of-stock .squarekit-modifier-option-label:hover {
    transform: none;
    box-shadow: none;
    border-color: #e2e8f0;
}

/* Show More Toggle */
.squarekit-show-more-toggle {
    width: 100%;
    padding: 14px 20px;
    background: #1a202c;
    border: 2px dashed #1a202c;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.squarekit-show-more-toggle:hover {
    background: #2d3748;
    border-color: #2d3748;
    border-style: dashed;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 32, 44, 0.3);
}

.squarekit-show-more-toggle.expanded {
    background: #07251A;
    border-color: #07251A;
    border-style: dashed;
    color: #fff;
}

.squarekit-show-more-toggle.expanded:hover {
    background: #0a3d2a;
    border-color: #0a3d2a;
    border-style: dashed;
}



/* Hidden Options */
.squarekit-hidden-option {
    display: none !important;
}

.squarekit-hidden-option.force-hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Modal Summary Styles */
.squarekit-modal-summary h3 {
    margin: 0 0 20px 0;
    color: #1a202c;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.squarekit-modal-summary .no-selections {
    text-align: center;
    color: #9ca3af;
    font-style: italic;
    padding: 20px;
}

.squarekit-modal-summary .selected-items {
    margin-bottom: 24px;
    max-height: 300px;
    overflow-y: auto;
}

/* Enhanced Selected Items */
.squarekit-modal-summary .selected-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 12px;
    margin-bottom: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    animation: slideInItem 0.3s ease-out;
    transition: all 0.2s ease;
}

.squarekit-modal-summary .selected-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.squarekit-modal-summary .selected-item .item-details {
    flex: 1;
    margin-right: 12px;
}

.squarekit-modal-summary .selected-item .item-category {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.squarekit-modal-summary .selected-item .item-name {
    display: block;
    color: #1a202c;
    font-weight: 500;
    line-height: 1.3;
}

.squarekit-modal-summary .selected-item .item-price-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.squarekit-modal-summary .selected-item .item-price {
    color: #059669;
    font-weight: 600;
    white-space: nowrap;
    font-size: 13px;
}

.squarekit-modal-summary .selected-item .item-price.free {
    color: #64748b;
    font-style: italic;
}

.squarekit-modal-summary .selected-item .remove-item {
    background: #ef4444;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.7;
    flex-shrink: 0;
}

.squarekit-modal-summary .selected-item .remove-item:hover {
    opacity: 1;
    background: #dc2626;
    transform: scale(1.1);
}

.squarekit-modal-summary .selected-item:hover .remove-item {
    opacity: 1;
}

.squarekit-modal-summary .selected-item.removing {
    animation: slideOutItem 0.2s ease-in forwards;
}



@keyframes slideOutItem {
    from {
        opacity: 1;
        transform: translateX(0);
        max-height: 60px;
    }
    to {
        opacity: 0;
        transform: translateX(20px);
        max-height: 0;
        padding: 0;
        margin: 0;
    }
}

/* Enhanced Price Breakdown */
.squarekit-modal-summary .price-breakdown {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.squarekit-modal-summary .price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.squarekit-modal-summary .price-line.total {
    border-top: 2px solid #667eea;
    margin-top: 12px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 18px;
    color: #1a202c;
    background: rgba(102, 126, 234, 0.05);
    margin: 12px -20px -20px -20px;
    padding: 16px 20px;
    border-radius: 0 0 12px 12px;
}

.squarekit-modal-summary .price-line .amount {
    font-weight: 600;
    color: #059669;
    transition: all 0.3s ease;
}

.squarekit-modal-summary .price-line.total .amount {
    color: #667eea;
    font-size: 20px;
    font-weight: 700;
}

/* Price Animation Effects */
.squarekit-modal-summary .price-line .amount.price-updating {
    animation: priceUpdate 0.3s ease-in-out;
    color: #f59e0b;
}

@keyframes priceUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: #f59e0b; }
    100% { transform: scale(1); }
}

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Selection Counter in Header */
.squarekit-modal-header .selection-counter {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    animation: fadeInCounter 0.3s ease-out;
}

@keyframes fadeInCounter {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Done Button */
.squarekit-modal-footer .squarekit-done-customizing {
    background: linear-gradient(135deg, #07251A 0%, #0a3d2a 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(7, 37, 26, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 140px;
}

.squarekit-modal-footer .squarekit-done-customizing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 37, 26, 0.6);
}

.squarekit-modal-footer .squarekit-done-customizing:active {
    transform: translateY(0);
}

.squarekit-modal-footer .squarekit-done-customizing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.squarekit-modal-footer .squarekit-done-customizing:hover::before {
    left: 100%;
}

/* Main Product Page Price Updates */
.price .base-price {
    color: #64748b;
    text-decoration: line-through;
    font-size: 0.9em;
    margin-right: 8px;
}

.price .modifier-addition {
    color: #059669;
    font-weight: 600;
    margin-right: 8px;
}

.price .total-price {
    color: #1a202c;
    font-weight: 700;
    font-size: 1.2em;
}

/* Body scroll lock */
body.squarekit-modal-open {
    overflow: hidden;
}

/* Enhanced animations for option selection */
@media (prefers-reduced-motion: no-preference) {
    .squarekit-modal-options .squarekit-modifier-option-label {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .squarekit-hidden-option {
        animation: slideInOption 0.3s ease-out;
    }
}

@keyframes slideInOption {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Set Descriptions and Choice Indicators */
.squarekit-modal-modifier-set .set-description {
    margin: 8px 0 16px 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    font-style: italic;
}

.squarekit-modal-modifier-set .choice-indicator {
    margin: 8px 0 20px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #667eea;
    background: #f0f4ff;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

/* Option Search */
.squarekit-option-search {
    position: relative;
    margin: 16px 0 20px 0;
}

.squarekit-search-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s ease;
}

.squarekit-search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.squarekit-option-search .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
}

/* Enhanced Option Styling */
.squarekit-modal-option-enhanced {
    position: relative;
    overflow: hidden;
}

.squarekit-modal-option-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.squarekit-modal-option-enhanced:hover::before {
    left: 100%;
}

.squarekit-modal-option-enhanced.selected {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0f2fe 100%);
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* Keyboard Shortcuts Info */
.squarekit-modal-footer::after {
    content: 'Tip: Use Ctrl+A to select all, Ctrl+D to deselect all';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #9ca3af;
    white-space: nowrap;
}

/* Loading States */
.squarekit-modal-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.squarekit-modal-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Smooth transitions for all interactive elements */
.squarekit-modal * {
    transition: all 0.2s ease;
}

/* Enhanced mobile responsiveness */
@media (max-width: 480px) {
    .squarekit-modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .squarekit-modal-header {
        padding: 16px 20px;
    }

    .squarekit-modal-header h2 {
        font-size: 18px;
    }

    .squarekit-modal-options,
    .squarekit-modal-summary {
        padding: 16px;
    }

    .squarekit-modal-options .squarekit-modifier-option-label {
        padding: 12px 16px;
        min-height: 50px;
    }

    .squarekit-modal-footer {
        padding: 16px 20px;
    }

    .squarekit-modal-footer::after {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .squarekit-modal-options .squarekit-modifier-option-label {
        border-width: 3px;
    }

    .squarekit-modal-options .squarekit-modifier-option-label:hover {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .squarekit-modal,
    .squarekit-modal-content,
    .squarekit-modal-options .squarekit-modifier-option-label,
    .squarekit-show-more-toggle {
        transition: none;
    }

    .squarekit-modal-option-enhanced::before {
        display: none;
    }
}
