/* Стили для блока "Товары не найдены" */
.customNFproducts {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.customNFproducts__container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.customNFproducts__icon {
    margin-bottom: 24px;
}

.customNFproducts__icon svg {
    width: 80px;
    height: 80px;
}

.customNFproducts__title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.customNFproducts__text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.customNFproducts__subtext {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 24px;
}

.customNFproducts__actions {
    margin-bottom: 32px;
}

.customNFproducts__button {
    background-color: #FF8F18;
    color: white;
    border: none;
    border-radius: 0;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.customNFproducts__button:hover {
    background-color: #FF8F18;
}

.customNFproducts__suggestions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eaeaea;
}

.customNFproducts__suggestions-title {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 16px;
}

.customNFproducts__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.customNFproducts__link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.customNFproducts__link:hover {
    background-color: #e0e0e0;
    color: #000;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .customNFproducts {
        padding: 30px 15px;
    }
    
    .customNFproducts__title {
        font-size: 24px;
    }
    
    .customNFproducts__text,
    .customNFproducts__subtext {
        font-size: 15px;
    }
    
    .customNFproducts__button {
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .customNFproducts__title {
        font-size: 22px;
    }
    
    .customNFproducts__links {
        flex-direction: column;
        gap: 10px;
    }
    
    .customNFproducts__link {
        width: 100%;
    }
}

/* Стили для модального окна */
.customNFproducts-modal {
    font-family: Arial, sans-serif;
}

.customNFproducts-modal__header {
    text-align: center;
    margin-bottom: 24px;
}

.customNFproducts-modal__title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.customNFproducts-modal__subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.customNFproducts-modal__body {
    max-width: 450px;
    margin: 0 auto;
}

.customNFproducts-modal__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customNFproducts-modal__form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.customNFproducts-modal__label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.customNFproducts-modal__input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.customNFproducts-modal__input:focus {
    border-color: #FF8F18;
    outline: none;
    box-shadow: 0 0 0 1px #FF8F18;
}

.customNFproducts-modal__input::placeholder {
    color: #aaa;
}

.customNFproducts-modal__form-footer {
    margin-top: 10px;
}

.customNFproducts-modal__submit {
    width: 100%;
    background-color: #FF8F18;
    color: white;
    border: none;
    border-radius: 0;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.customNFproducts-modal__submit:hover {
    background-color: #FF8F18;
}

.customNFproducts-modal__privacy {
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    color: #888;
}

.customNFproducts-modal__privacy a {
    color: #FF8F18;
    text-decoration: none;
}

.customNFproducts-modal__privacy a:hover {
    text-decoration: underline;
}

/* Стили для модального окна на мобильных устройствах */
@media (max-width: 576px) {

    #nfProductsFormModal .modal-content{
        padding:  30px 20px;
    }
    .customNFproducts-modal__title {
        font-size: 20px;
    }
    
    .customNFproducts-modal__subtitle {
        font-size: 14px;
    }
    
    .customNFproducts-modal__input {
        padding: 10px 14px;
    }
    
    .customNFproducts-modal__submit {
        padding: 12px 16px;
    }
}
