/*   
Theme Name: Motley Grass
Version: 1.13
*/

.card__title{
	text-transform: none;
}
.wc-block-components-address-form__country{
	display: none;
}

/* Стили для всплывающего окна Cookie */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #ffffff;
    color: #333333;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
    border-left: 5px solid #2eb44b;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(150%);
    opacity: 0;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent__text {
    font-size: 14px;
    line-height: 1.5;
    margin-right: 20px;
    color: #555;
    flex: 1;
}

.cookie-consent__text a {
    color: #2eb44b;
    text-decoration: none;
    font-weight: 600;
}

.cookie-consent__text a:hover {
    text-decoration: underline;
}

.cookie-consent__button {
    background-color: #2eb44b;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.cookie-consent__button:hover {
    background-color: #259a3f;
    transform: translateY(-1px);
}

.cookie-consent__button:active {
    transform: translateY(0);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-consent__text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-consent__button {
        width: 100%;
    }
}