.notice-modal-overlay-price {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

// Common container styles
.notice-modal-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1000;
    max-width: 95vw;

    // Positioning variants
    &.notice-modal-center {
        position: fixed;
        top: 35%;
        left: 35%;
        transform: translate(-50%, -50%);
        width: 500px;
        max-width: 95vw;
    }

    &.notice-modal-top-right {
        position: fixed;
        top: 40px;
        right: 20px;
        max-width: 380px;
    }

    &.notice-modal-bottom-right {
        position: fixed;
        bottom: 20px;
        right: 20px;
        max-width: 380px;
    }
}

// Header styles
.notice-modal-header {
    padding: 20px 20px 10px;
    position: relative;

    h2 {
        margin: 0 0 10px;
        font-size: 22px;
        font-weight: 700;
        color: #333;
    }

    p {
        margin: 0;
        color: #666;
        font-size: 16px;
        line-height: 1.5;
    }
}

// Close button
.notice-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;

    &:hover {
        color: #333;
    }
}

// Action buttons
.notice-modal-actions {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    gap: 15px;

    button {
        padding: 10px 20px;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

.notice-modal-confirm {
    background-color: #4CAF50;
    color: white;
    border: none;

    &:hover {
        background-color: #3d8b40;
    }

    .arrow-icon {
        font-size: 14px;
    }
}

.notice-modal-decline {
    background-color: transparent;
    color: #666;
    border: 1px solid #ddd;

    &:hover {
        background-color: #f5f5f5;
    }
}

// Guarantee section for premium modal
.notice-modal-guarantee {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 15px 20px;
    margin: 20px;
    border-radius: 6px;
    border: 1px solid #eee;

    &-badge {
        background-color: #4CAF50;
        color: white;
        font-weight: bold;
        font-size: 20px;
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-right: 15px;
    }

    &-text {
        h4 {
            margin: 0 0 5px;
            font-size: 16px;
            color: #333;
        }

        p {
            margin: 0;
            font-size: 14px;
            color: #666;
        }
    }
}

// Toast notification styles
.notice-modal-toast {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: white;
    border-left: 4px solid #4CAF50;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 100%;

    &.notice-border-left-success {
        border-left-color: #4CAF50;
    }

    &.notice-border-left-info {
        border-left-color: #2196F3;
    }

    &.notice-border-left-warning {
        border-left-color: #FF9800;
    }

    &.notice-border-left-error {
        border-left-color: #F44336;
    }

    &-icon {
        margin-right: 15px;
        font-size: 20px;

        &.success {
            color: #4CAF50;
        }

        &.info {
            color: #2196F3;
        }

        &.warning {
            color: #FF9800;
        }

        &.error {
            color: #F44336;
        }
    }

    &-content {
        flex: 1;

        h4 {
            margin: 0 0 5px;
            font-size: 25px;
            color: #008080;

            &.success {
                color: #4CAF50;
            }

            &.info {
                color: #2196F3;
            }

            &.warning {
                color: #FF9800;
            }

            &.error {
                color: #F44336;
            }
        }

        p {
            margin: 0;
            font-size: 14px;
            color: #666;
        }
    }

    &-close {
        background: none;
        border: none;
        color: #999;
        font-size: 14px;
        cursor: pointer;

        &:hover {
            color: #333;
        }
    }
}

// Specific styles for confirmation modal
.notice-modal-confirmation {
    width: 100%;
}

// Specific styles for premium modal
.notice-modal-premium {
    width: 100%;

    .notice-modal-header {
        padding-bottom: 0;
    }
}



// ENd  -==========================

// Price Modal Container
.price-modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    padding: 32px;

    // Mobile Styles
    &.mobile {
        width: calc(100% - 40px);
        max-width: 100%;
        margin: 0 20px;
        padding: 20px;
    }

    // Scrollbar Styling
    &::-webkit-scrollbar {
        width: 8px;
    }

    &::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    &::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

    @media (max-width: 768px) {
        width: calc(100% - 30px);
        margin: 0 15px;
        padding: 20px;
    }
}

// Header Styles
.price-modal-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;

    h2 {
        font-size: 28px;
        padding: 5px;
        font-weight: 700;
        color: #2a2a2a;
        margin-bottom: 8px;
        background: linear-gradient(90deg, #ff6b6b, #ff9e4f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    p {
        font-size: 16px;
        color: #666;
    }

    @media (max-width: 480px) {
        h2 {
            font-size: 24px;
        }

        p {
            font-size: 14px;
        }
    }
}

// Close Button
.price-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;

    &:hover {
        background: #f5f5f5;
        transform: scale(1.1);
    }

    @media (max-width: 480px) {
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
    }
}

// Plan Toggle
.price-modal-toggle {
    display: flex;
    justify-content: center;
    background: #eef1f5;
    border-radius: 30px;
    padding: 4px;
    margin-bottom: 32px;
    width: 250px;
    margin-left: auto;
    margin-right: auto;

    button {
        border: none;
        background: transparent;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 500;
        color: #666;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;

        &.active {
            background: #ffffff;
            color: #333;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .price-modal-save {
            position: absolute;
            top: -10px;
            right: -15px;
            background: #ff6b6b;
            color: white;
            font-size: 10px;
            font-weight: 600;
            padding: 3px 6px;
            border-radius: 10px;
        }
    }

    @media (max-width: 480px) {
        width: 100%;
        max-width: 300px;

        button {
            padding: 8px 15px;
            font-size: 12px;
        }
    }
}

// Plans Grid
.price-modal-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

// Individual Plan
.price-modal-plan {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e8eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    &.recommended {
        border: 2px solid #4f46e5;
        box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
    }

    @media (max-width: 480px) {
        padding: 20px;
    }
}

// Price Section
.price-modal-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 24px;

    .price-modal-original {
        font-size: 16px;
        color: #999;
        text-decoration: line-through;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .price-modal-discount {
        font-size: 14px;
        font-weight: 600;
        color: white;
        background: #ff6b6b;
        padding: 2px 6px;
        border-radius: 4px;
        margin-right: 10px;
    }

    .price-modal-current {
        font-size: 32px;
        font-weight: 700;
        color: #333;
    }

    .price-modal-period {
        font-size: 14px;
        color: #666;
        margin-left: 4px;
    }

    @media (max-width: 480px) {
        flex-direction: column;
        align-items: flex-start;

        >* {
            margin: 5px 0;
        }

        .price-modal-current {
            font-size: 28px;
        }
    }
}

// Features List
.price-modal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;

    li {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        font-size: 14px;
        color: #555;

        .check-icon {
            color: #4f46e5;
            margin-right: 10px;
            flex-shrink: 0;
        }
    }

    @media (max-width: 480px) {
        li {
            font-size: 13px;
            margin-bottom: 8px;
        }
    }
}

// Select Button
.price-modal-select {
    width: 100%;
    background: linear-gradient(90deg, #4f46e5, #7c74ff);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);

    &:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
    }

    .arrow-icon {
        margin-left: 8px;
        transition: transform 0.2s ease;
    }

    &:hover .arrow-icon {
        transform: translateX(4px);
    }
}

// Guarantee Section
.price-modal-guarantee {
    display: flex;
    align-items: center;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 12px;
    padding: 16px;
    border: 1px dashed #4f46e5;

    @media (max-width: 480px) {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
}

.price-modal-guarantee-badge {
    width: 48px;
    height: 48px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-right: 16px;
    flex-shrink: 0;

    @media (max-width: 480px) {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.price-modal-guarantee-text {
    h4 {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin: 0 0 4px 0;
    }

    p {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    @media (max-width: 480px) {
        text-align: center;
    }
}