.elementor-arrax-premium-notice {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.premium-notice-content {
    text-align: center;
    max-width: 400px;
    width: 100%;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.premium-notice-icon {
    font-size: 48px;
    color: #6045E2;
    margin-bottom: 20px;
}

.premium-notice-icon i {
    background: linear-gradient(45deg, #6045E2, #8A5FE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-notice-title {
    color: #2B2B2B;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px;
}

.premium-notice-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 25px;
}

.premium-notice-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.premium-notice-button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 140px;
}

.premium-notice-upgrade {
    background: linear-gradient(45deg, #6045E2, #8A5FE2);
    color: white !important;
    box-shadow: 0 4px 15px rgba(96,69,226,0.2);
}

.premium-notice-trial {
    background: white;
    color: #6045E2 !important;
    border: 2px solid #6045E2;
}

.premium-notice-upgrade:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96,69,226,0.3);
}

.premium-notice-trial:hover {
    background: rgba(96,69,226,0.05);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media screen and (max-width: 767px) {
    .elementor-arrax-premium-notice {
        padding: 20px;
        min-height: 250px;
    }

    .premium-notice-content {
        padding: 30px 20px;
    }

    .premium-notice-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .premium-notice-title {
        font-size: 20px;
        margin: 0 0 10px;
    }

    .premium-notice-description {
        font-size: 14px;
        margin: 0 0 20px;
    }

    .premium-notice-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .premium-notice-button {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}

/* Small height screens */
@media screen and (max-height: 600px) {
    .elementor-arrax-premium-notice {
        min-height: 200px;
        padding: 15px;
    }

    .premium-notice-content {
        padding: 20px;
    }

    .premium-notice-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .premium-notice-title {
        font-size: 18px;
        margin: 0 0 8px;
    }

    .premium-notice-description {
        font-size: 14px;
        margin: 0 0 15px;
    }
}

/* Lock icon styling for non-premium widgets */
.elementor-panel .elementor-element {
    position: relative;
}

.elementor-panel .elementor-element[class*="elementor-element-"].elementor-element-disabled:before {
    content: '\e902'; /* Elementor lock icon */
    font-family: eicons;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #a4afb7;
    font-size: 15px;
    transition: color 0.3s ease;
}

.elementor-panel .elementor-element[class*="elementor-element-"].elementor-element-disabled:hover:before {
    color: #d72b3f; /* Red color on hover */
}

/* Category icon styling */
.elementor-panel .elementor-panel-category-items .elementor-element-wrapper .icon.premium-lock i {
    color: #a4afb7;
    transition: color 0.3s ease;
}

.elementor-panel .elementor-panel-category-items .elementor-element-wrapper:hover .icon.premium-lock i {
    color: #d72b3f;
}

/* Widget PRO badge styling */
.elementor-widget-pro-badge {
    background: #d72b3f;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-left: 5px;
    vertical-align: middle;
}

/* Disabled widget overlay */
.elementor-panel .elementor-element[class*="elementor-element-"].elementor-element-disabled {
    position: relative;
    cursor: not-allowed;
    opacity: 0.8;
}

.elementor-panel .elementor-element[class*="elementor-element-"].elementor-element-disabled:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
} 