/*
 Theme Name:   Frutin Child
 Theme URI: https://themeholy.com/wordpress/frutin/
 Description:  This is a child theme for Frutin WordPress Theme
Author URI: https://themeforest.net/user/themeholy
 Author URI:   #
 Template:     frutin
 Version:      1.0
 Tags:         two-columns, three-columns, left-sidebar, right-sidebar, flexible-header, custom-background, custom-colors, custom-header, custom-menu, theme-options, editor-style, featured-images, microformats, post-formats,  sticky-post, threaded-comments, translation-ready
 Text Domain:  frutin-child
*/

/*  [ Add your custom css below ]
- - - - - - - - - - - - - - - - - - - - */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');


.wallet-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wallet-card {
    border: 2px solid #4CAF50;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
}

.wallet-card i {
    font-size: 2.5em;
    color: #4CAF50;
    margin-bottom: 10px;
}

.wallet-card h3 {
    margin: 0 0 10px;
    color: #4CAF50;
}

.wallet-card.locked-wallet-card {
    border-color: #FF9800;
}

.wallet-card.locked-wallet-card i {
    color: #FF9800;
}

.wallet-card.locked-wallet-card h3 {
    color: #FF9800;
}

.wallet-option {
    border: 2px solid #4CAF50;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wallet-option:hover {
    background-color: #f0f0f0;
}

.wallet-option h3 {
    margin-top: 0;
    color: #4CAF50;
    font-size: 1.5em;
}

.wallet-label {
    font-size: 1.1em;
    color: #4CAF50;
    font-weight: 500;
}

.input-checkbox.wallet-checkbox {
    margin-right: 10px;
    vertical-align: middle;
}

.input-checkbox.wallet-checkbox:disabled + .wallet-label {
    color: #999;
    cursor: not-allowed;
}




.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    animation: slideIn 0.5s ease-out;
    z-index: 9999;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.toast-notification img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 3px;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.toast-time {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.toast-rating {
    color: #ffd700;
    font-size: 12px;
    margin-bottom: 5px;
}

.toast-price {
    font-size: 14px;
    font-weight: 600;
    color: #2ecc71;
    margin-bottom: 5px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #2ecc71;
    width: 100%;
    animation: progress 5s linear forwards;
}

@keyframes progress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

.shop-container {
    display: flex;
    margin: 0 auto;
    gap: 30px;
}

.shop-sidebar {
    width: 25%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.shop-content {
    width: 75%;
}
