﻿/*
Theme Name: Bono Child
Theme URI: https://wpshop.ru/themes/bono
Author: WPShop.ru
Author URI: http://wpshop.ru/
Template: bono
Version: 1.0.0
*/

/* Below you can add your CSS styles */
/* Ниже Вы можете добавить свои CSS стили */


    /* Блок преимуществ для темы Bono */
.advantages-bono {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.advantage-item-bono {
    text-align: center;
    padding: 40px 25px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.advantage-item-bono:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.market li {
 list-style:none;
 margin-bottom: 5px;	
 font-size:1em;
}

.widget-header {
    font-weight: 700;
    font-size: 1.3em;
    margin-bottom: 1em;
    color: #000;
}

.site-footer, .site-footer a, .site-footer .pseudo-link {
    color: #000;
}

.icon-bono {
    font-size: 42px;
    color: #2c80ff;
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-item-bono h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.advantage-item-bono p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 992px) {
    .advantages-bono {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}


@media (min-width: 768px) {
    .header-customer-account__text {
        display: none;
    }
}

@media (max-width: 576px) {
    .advantages-bono {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-item-bono {
        padding: 30px 20px;
    }
    
    .icon-bono {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .advantage-item-bono h3 {
        font-size: 18px;
    }
    
    .advantage-item-bono p {
        font-size: 14px;
    }
}



.shop-item__image {
    position: relative;
    overflow: hidden;
    margin-bottom: .7em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}


.shop-grid {
    -webkit-box-pack: left; 
    -ms-flex-pack: left;
    justify-content: left; 
}


.contact-menu {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            max-width: 1200px;
            width: 100%;
        }
        
        .contact-card {
            flex: 1;
            min-width: 250px;
            max-width: 280px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 30px 25px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .card-icon {
            width: 70px;
            height: 70px;
            background-color: #dd9933;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
        }
        
        .card-title {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .card-content {
            color: #666;
            line-height: 1.7;
            font-size: 15px;
        }
        
        .address-card .card-icon {
            background: linear-gradient(135deg, #dd9933, #c47c1a);
        }
        
        .contact-card .card-icon {
            background: linear-gradient(135deg, #dd9933, #c47c1a);
        }
        
        .hours-card .card-icon {
            background: linear-gradient(135deg, #dd9933, #c47c1a);
        }
        
        .support-card .card-icon {
            background: linear-gradient(135deg, #dd9933, #c47c1a);
        }
        
        @media (max-width: 768px) {
            .contact-menu {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-card {
                max-width: 100%;
                width: 100%;
            }
        }