

body {
    margin: 0;
  
    background: var(--background);
    color: var(--text);
    direction: rtl;
}

/* Grid System */
.builder-row {
    position: relative;
    margin: 0;
    width: 100%;
}

.row-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.row-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding: 0px;
}

.builder-column {
    flex: 1;
    min-width: 0;
    position: relative;
    border:0px !important;
    display: flex;
    flex-direction: column;
}

/* Skeleton Loading */
.widget-skeleton {
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
    min-height: 100px;


}

.widget-skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0) 100%);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Skeleton types */
.text-skeleton { height: 100px; }
.image-skeleton { height: 300px; }
.button-skeleton { height: 50px; max-width: 200px; }
.video-skeleton { height: 400px; }
.products-slider-skeleton { height: 400px; }
.gallery-skeleton { height: 300px; }
.marquee-skeleton { height: 80px; }

/* Edit Button */
.edit-button-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    animation: fadeInUp 0.5s ease-out;
}

.edit-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #3b82f6;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.edit-button:hover {
    transform: translateY(-2px);
}

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

/* Widget Base Styles */
 

/* Layout Responsiveness */
@media (max-width: 768px) {
    .row-content {
        flex-direction: column;
    }

    .builder-column {
        width: 100% !important;
    }
}

/* Error States */
.error-message {
    padding: 1rem;
    background: #fee2e2;
    color: #dc2626;
    border-radius: var(--radius);
    text-align: center;
}

/* Empty State */
.empty-state {
    padding: 2rem;
    text-align: center;
    color: var(--secondary);
    background: var(--surface);
    border-radius: var(--radius);
    border: 2px dashed var(--border);
}

/* Widget Types Base Styles */
.text-widget {
    line-height: 1.6;
}

.image-widget img {
    max-width: 100%;
    height: auto;
    display: block;
}

.button-widget {
    text-align: center;
}

.video-widget {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-widget iframe,
.video-widget video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Products Widget */
.products-widget {
    position: relative;
}

.products-container {
    display: grid;
    gap: 1rem;
}

/* Gallery Widget */
.gallery-widget {
    display: grid;
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.widget-content{
    max-height: 100% !important;
}


/* Critical Skeleton Loading Styles */
.shimmer-loading {
    position: relative;
    overflow: hidden;
}

.widget-skeleton {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 20px;
}

.widget-skeleton.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.6) 50%, 
        rgba(255,255,255,0) 100%);
    animation: shimmer 1.5s infinite;
}

/* Image Skeleton */
.image-skeleton-content {
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #e0e0e0;
    position: relative;
}

/* Text Skeleton */
.text-skeleton-line {
    height: 12px;
    background: #e0e0e0;
    margin: 10px 0;
    border-radius: 0px;
}

.text-skeleton-line:nth-child(2) {
    width: 85%;
}

.text-skeleton-line:nth-child(3) {
    width: 65%;
}

/* Products Grid Skeleton */
.products-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.product-skeleton-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-image-skeleton {
    width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    background: #e0e0e0;
    border-radius:0px;
}

.product-title-skeleton {
    height: 20px;
    background: #e0e0e0;
    border-radius: 0px;
    width: 80%;
}

.product-price-skeleton {
    height: 16px;
    background: #e0e0e0;
    border-radius: 0px;
    width: 40%;
}

/* Default Skeleton */
.default-skeleton-content {
    height: 100px;
    background: #e0e0e0;
    border-radius: 0px;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .products-skeleton-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .widget-content {
        padding: 0!important;;
    }
}

/* Hide real content while loading */
.widget-skeleton.loading + .widget-content {
    display: none;
}

/* Remove shimmer once content is loaded */
.widget-skeleton:not(.loading)::before {
    display: none;
}


/* Image widget responsive styles */
.image-wrapper {
    width: 100%;
}

.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}

@media (max-width: 767px) {
    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block;
    }
}

/* Image placeholder styles */
.image-placeholder {
    width: 100%;
    padding: 2rem;
    background: #f5f5f5;
    text-align: center;
    color: #666;
    border-radius: 4px;
}

/* Aspect ratio container support for older browsers */
@supports not (aspect-ratio: 1) {
    [style*="aspect-ratio"] {
        position: relative;
    }
    
    [style*="aspect-ratio"]::before {
        content: "";
        display: block;
        padding-bottom: calc(100% / (var(--aspect-ratio)));
    }
    
    [style*="aspect-ratio"] > * {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Products Widget Core */
.products-widget {
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Products Container */
.products-container {
    width: 100%;
    max-width: 100%;
    position: relative;

}

/* Grid Layout */
.products-grid {
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(var(--desktop-columns), 1fr);
}

/* Product Card */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Image Container */
.product-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Product Details */
.product-details {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: var(--title-font-size);
    margin: 0 0 8px 0;
    font-weight: 600;
    line-height: 1.4;
}

.product-price {
    font-size: var(--price-font-size);
    margin-top: auto;
    font-weight: bold;
}

/* Badges */
/* Badges */
.custom-badge,
.sale-badge {
    position: absolute;
    padding: 4px 8px;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
    z-index: 1;
}

/* מדבקה מותאמת אישית בצד ימין למעלה */
.custom-badge {
    top: 10px;
    right: 10px;
}

/* מדבקת סייל מתחת למדבקה המותאמת אישית */
.sale-badge {
    top: 40px;  /* מרחק מספיק בשביל מדבקה + רווח */
    right: 10px;
    background-color: #e53e3e;
}

/* אם אין מדבקה מותאמת אישית, מדבקת הסייל תהיה למעלה */
.product-image-container:not(:has(.custom-badge)) .sale-badge {
    top: 10px;
}

.sale-badge {
    background-color: #e53e3e;
}

/* Buttons */
.btn-add-to-wishlist {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 0.8rem!important;;
}

.quick-add {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}



.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Specific */
.products-widget[data-display="slider"] {
    overflow: hidden;
}

.products-widget .swiper {
    width: 100%;
    overflow: hidden;
}

.products-widget .swiper-slide {
    height: auto;
    display: flex;
}

/* Navigation Controls */
.swiper-button-next,
.swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px !important;
    font-weight: bold;
    color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(var(--tablet-columns), 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(var(--mobile-columns), 1fr);
    }
}

/* Loading State */
.products-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Error Message */
.error-message {
    padding: 20px;
    text-align: center;
    color: #e53e3e;
    background: #fff;
    border-radius: 4px;
    margin: 10px 0;
}


.button-widget .widget-content{
padding:0 !important;
overflow: auto;
}

.btn {
    font-family: inherit;
    line-height: 1.5;
    user-select: none;
    position: relative;
 
}



/* Button Hover Effects */
.btn:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* Style Variants */
.btn[style*="outlined"]:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.btn[style*="text"]:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Focus State */
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

@media screen and (max-width: 768px) {
    .btn {
        font-size: 0.875rem;
    }

}


/* Base Row Settings */
.builder-row {
    width: 100%;
    position: relative;

}



/* Mobile Row Settings */
@media (max-width: 768px) {
    .builder-row .row-content {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    /* שינוי סדר העמודות במובייל */
    .builder-row[data-mobile-order="bottom-top"] .row-content {
        display: flex !important;
        flex-direction: column-reverse !important;
    }
    
    .builder-row[data-mobile-order="top-bottom"] .row-content {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .builder-row[data-mobile-order="reverse"] .row-content {
        display: flex !important;
        flex-direction: row-reverse !important;
    }
    
    .builder-row[data-mobile-order="default"] .row-content {
        display: flex !important;
        flex-direction: row !important;
    }

    /* הגדרת רוחב מלא לעמודות במובייל */
    .builder-row .row-content > .builder-column {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Loading State */
.builder-row.shimmer-loading .row-content {
    opacity: 0.7;
}

/* עדיפות גבוהה לסגנונות מובייל */
/* Base Row Styles */
.row-content {
    display: flex;

    width: 100%;
    
}

/* Mobile Row Layout */
@media (max-width: 768px) {
    /* Base mobile layout */
    .row-content {
        flex-direction: column;
    }

    /* Side by side layout */
    .row-content[data-mobile-layout="row"] {
        flex-direction: row !important;
        flex-wrap: nowrap;
        gap: 0;
    }

    /* Default columns in mobile */
    .builder-column {
        width: 100% !important;
    }

    /* Columns in row layout */
    .row-content[data-mobile-layout="row"] .builder-column {
        width: var(--column-width) !important;
        min-width: var(--column-width) !important;
        flex: 0 0 var(--column-width) !important;
    }
    
    /* Ensure content inside columns doesn't overflow */
    .builder-column {
        overflow: hidden;
    }

    /* Make buttons full width in mobile */
    .builder-column .widget-content {
        width: 100%;
    }
    
    .builder-column .btn {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Ensure smooth transitions */
.row-content {
    transition: flex-direction 0.3s ease;
}

/* Fix button spacing in mobile */
@media (max-width: 768px) {
    .widget.button-widget {
        margin-bottom: 8px;
    }
    
    .widget.button-widget:last-child {
        margin-bottom: 0;
    }
    .button-widget .widget-content{
        padding:0!important;
        overflow: auto;
        }
}

/* HTML Widget Styles */
.html-widget-empty {
    min-height: 100px;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
    margin: 10px 0;
}

.html-placeholder {
    color: #999;
    font-style: italic;
}

/* תיקוני סגנונות לתוכן HTML מותאם */
.widget-content {
    width: 100%;
    box-sizing: border-box;
}




/* Device Visibility Classes */

/* Desktop Only (>1024px) */
.show-desktop-only {
    display: none !important;
}

@media (min-width: 1025px) {
    .show-desktop-only {
        display: block !important;
    }
}

/* Tablet Only (768px-1024px) */
.show-tablet-only {
    display: none !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .show-tablet-only {
        display: block !important;
    }
}

/* Mobile Only (<768px) */
.show-mobile-only {
    display: none !important;
}

@media (max-width: 767px) {
    .show-mobile-only {
        display: block !important;
    }
}

/* Mobile and Tablet (<1024px) */
.show-mobile-tablet {
    display: none !important;
}

@media (max-width: 1024px) {
    .show-mobile-tablet {
        display: block !important;
    }
}

/* All Devices */
.show-all-devices {
    display: block !important;
}

/* Fix for flex and grid containers */

@media (max-width: 767px) {
    .show-desktop-only,
    .show-tablet-only {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .show-desktop-only,
    .show-mobile-only {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .show-mobile-only,
    .show-tablet-only,
    .show-mobile-tablet {
        display: none !important;
    }
}

.image-widget .desktop-image,
.image-widget .mobile-image {
    position: relative;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}






/* Video Widget Styles */
.video-widget {
    width: 100%;
}

.video-container {
    position: relative;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Gallery Widget Styles */
.gallery-widget {
    width: 100%;
}


.gallery-grid.loaded,
.gallery-masonry.loaded {
    opacity: 1;
}



@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .gallery-masonry {
        column-count: 2 !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-masonry {
        column-count: 1 !important;
    }
}


/* וידאו skeleton */
.video-skeleton-placeholder {
    background: #eee;
    width: 100%;
    border-radius: 4px;
}

/* גלריה skeleton */
.gallery-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-image-skeleton {
    background: #eee;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 4px;
}

/* שורה רצה skeleton */
.marquee-skeleton-content {
    width: 100%;
    padding: 20px 0;
}

.marquee-skeleton-line {
    height: 20px;
    background: #eee;
    border-radius: 4px;
    width: 100%;
}

/* אנימציית טעינה */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Video Widget Styles */
.video-widget {
    width: 100%;
}

.video-widget .video-container {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.video-widget .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Fix for video aspect ratio */
.video-widget .video-container[style*="aspect-ratio"] {
    height: 0 !important;
    padding-top: 56.25% !important; /* 16:9 Aspect Ratio */
}

.gallery-skeleton {
    width: 100%;
}

.gallery-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.gallery-skeleton-item {
    position: relative;
    padding-bottom: 100%;
}

.gallery-image-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 0.8; }
    100% { opacity: 0.6; }
}

/* Gallery Widget Styles */
.gallery-widget {
    width: 100% !important;
    display: block !important;
}

.gallery-grid {
    display: grid !important;
}

.gallery-item {
    position: relative !important;
}

.gallery-item img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* הוספה לקובץ הסגנונות הקיים */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .hide-desktop {
        display: none !important;
    }
}

/* סגנונות למצב Preview */
.preview-mode .builder-row {
    position: relative;
}

.preview-mode .builder-row[data-visibility]:not([data-visibility=""]):before {
    content: attr(data-visibility);
    position: absolute;
    top: -20px;
    left: 0;
    background: #666;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}


.widget-content.active {
    max-height: 500px!important;;
    padding: 1rem!important;;
}
/* Bootstrap Classes */
.d-md-none {
    display: block;
}

.d-none {
    display: none;
}

@media (min-width: 768px) {
    .d-md-none {
        display: none;
    }
    
    .d-none.d-md-block {
        display: block;
    }
}

.col-md-3 { width: 25%; }
.col-md-4 { width: 33.333333%; }
.col-md-6 { width: 50%; }
.col-md-12 { width: 100%; }

.gallery-widget {
    width: 100%;
}

.gallery-grid {
    display: grid;
    gap: var(--gap, 10px);
    width: 100%;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* Masonry Layout */
.gallery-masonry {
    column-gap: var(--gap, 10px);
    width: 100%;
}

.gallery-masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: var(--gap, 10px);
    height: auto;
}

.gallery-masonry .gallery-item img {
    position: relative;
    height: auto !important;
}

/* Collage Layout */
.gallery-collage {
    display: grid;
    gap: var(--gap, 10px);
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .gallery-masonry {
        column-count: 2 !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-masonry {
        column-count: 1 !important;
    }
}


.builder-row {
    width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
}

.row-content {
    position: relative;
    width: 100%;
    display: flex;
    gap: 20px;
}

.container-width {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row-content.full-width {
    width: 100%;
}

.row-content.custom-width {
    margin-left: auto;
    margin-right: auto;
}

/* מדיה קוורי להתאמה למסכים שונים */
@media (max-width: 1200px) {
    .row-content.container-width {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .row-content.container-width {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .row-content.container-width {
        max-width: 540px;
    }
    
    .row-content[data-mobile-layout="column"] {
        flex-direction: column;
    }
    
    .row-content[data-mobile-layout="column"] .builder-column {
        width: 100% !important;
    }
}

/* Add to critical.css or your main stylesheet */

/* Default styles for desktop */
.builder-row {
    padding: var(--desktop-padding, 0);
    margin: var(--desktop-margin, 0);
}

.builder-column {
    padding: var(--desktop-padding, 20px);
    margin: var(--desktop-margin, 0);
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .builder-row {
        padding: var(--mobile-padding, var(--desktop-padding, 0)) !important;
        margin: var(--mobile-margin, var(--desktop-margin, 0)) !important;
    }
    
    .builder-column {
        padding: var(--mobile-padding, var(--desktop-padding, 20px)) !important;
        margin: var(--mobile-margin, var(--desktop-margin, 0)) !important;
    }
}

@media screen and (max-width: 768px) {
    .row-content[data-mobile-layout="column"][data-reverse="true"] {
        flex-direction: column-reverse;
    }
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.image-widget {
    justify-content: center;
}