:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #0f3623; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #339967; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #57c78f; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #57c78f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}


.welcome p{
    color:white;
}

.input-group-text-mandatory{
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: red;
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-tertiary-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

a.logo, a.cta-btn {
    color: var(--accent-color);
    text-decoration: none;
}

section.smaller{
    padding: 20px;
}

.navme{
    background: #f1f7fc;
}


.card-image{
    background-color: white;
}

.card-text{
    font-size: 15px;
}

.card-text p{
    margin-bottom: 0px;
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container and is cropped as necessary */
    border-radius: unset;
}

.commentheader{
    border-bottom: 1px dashed black;
    padding-bottom: 10px;
}

.f-green{
    color: #097969;
}


/*Responsive table*/
table.resp {
    border: 1px solid #ddd;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;

}

table.resp tbody,
table.resp tfoot,
table.resp tr,
table.resp td,
table.resp th {
    border-width: 0;
}

table.resp thead{
    border: 1px solid #ddd;
}

table.resp tr {
    border: 1px solid #ddd;
    padding: .35em;

}

table.resp th,
table.resp td {
    padding: .625em;
    text-align: left;
    border-width: 0;
}

table.resp th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
    background-color: #f8f8f8;
    border-width: 0;
}


.imgfit150{
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.h3offer{
    font-size: 16px;
}

@media screen and (max-width: 600px) {
    table.resp {
        border: 1px solid #ddd;
    }

    table.resp thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table.resp tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    table.resp td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    table.resp td::before {
        /*
        * aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table.resp td:last-child {
        border-bottom: 0;
    }
}
/*Responsive table end*/

.btn-tiny {
    padding: 0.15rem 0.3rem;
    font-size: 0.8rem;
    border-radius: 5px;
}

.card-header a{
    text-decoration: none;
    color:black;
}

input[readonly] {
    background-color: #f0f0f0; /* Light gray background */
    color: #555; /* Darker text color */
    border: 1px solid #ccc; /* Solid border */
    cursor: not-allowed; /* Indicates not editable */
}

input[readonly]:hover {
    background-color: #e9e9e9; /* Slightly darker on hover */
}

input[readonly]:focus {
    outline: none; /* Remove focus outline */
}

.navmenu a{
    text-decoration: none;
}

.instatop{
    margin: 0 0 0 10px;
}
@media screen and (max-width: 800px) {
    .instatop{
        display: none;
    }
}

a.nolink{
    text-decoration: none;
}

.smallannounce{
    background: lightslategrey;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
}

span.smalltext{
    font-size: 0.9rem;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #333;
    margin: 20px 0;
}

.invoice-table thead {
    background-color: #f4f4f4;
    border-bottom: 2px solid #ccc;
}

.invoice-table th {
    text-align: left;
    padding: 10px;
    font-weight: bold;
}

.invoice-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.invoice-table tbody tr:hover {
    background-color: #f9f9f9;
}

.invoice-table tbody tr:last-child td {
    border-bottom: none;
}

.invoice-table tbody td:last-child {
    text-align: right;
    font-weight: bold;
}

.invoice-table tbody tr:nth-child(odd) {
    background-color: #fefefe;
}

.invoice-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

:root {
    --heading-color2: #062f42; /* Deep blue */
    --accent-color2: #ec632e;  /* Orange */
    --accent-color2-dark: #d15427;
}

.promobox {
    text-align: center;
    border-radius: 10px;
    background: var(--heading-color2);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 100%;
    max-width: 500px; /* Optional, limits the box width */
    margin: 20px auto; /* Centers the box */
}

.promobox h1 {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.promobox p {
    font-size: 16px;
    color: #444444; /* Default text color */
    margin-bottom: 30px;
    color: floralwhite;
}

.promobox .action-button {
    background-color: var(--accent-color2);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.promobox .action-button:hover {
    background-color: var(--accent-color2-dark);
}

.promobox .action-button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.page-title-promo .heading {
    padding: 40px 0;
    border-top: 1px solid
    color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title-promo span{
    font-weight: bold;
    color: var(--heading-color2);
}

.promotext h3{
    font-size: 2rem;
    font-weight: 700;
}

.promotext ul{
    list-style: none;
    padding: 0;
}
.promotext ul li{
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
}
.promotext ul li i{
    flex-shrink: 0;
    font-size: 48px;
    color: var(--accent-color);
    margin-right: 20px;
}

.btn-hoof {
    font-weight: bold; /* Жирный шрифт для выделения */
    color: #ec632e; /* Акцентный цвет, чтобы выделить ссылку */
    text-decoration: none; /* Убираем подчеркивание */
    background-color: #062f42; /* Темный фон для кнопки */
    padding: 10px 20px; /* Отступы для кнопки */
    border-radius: 5px; /* Закругленные углы */
    transition: all 0.3s ease; /* Плавное изменение при наведении */
}

.btn-hoof:hover {
    background-color: #ec632e; /* Меняем фон при наведении */
    color: #ffffff; /* Белый цвет текста при наведении */
    transform: scale(1.05); /* Немного увеличиваем при наведении */
}

.thumb {
    width: 150px;
    height: 150px;
    object-fit: cover; /* Чтобы не искажались */
}

.galpreview {
    cursor: pointer;
}

.top-30 {
    top: 30% !important;
}

.badgecart {
    font-size: 12px;
    padding: 4px 6px;
    line-height: 1;

    position: absolute;
    right: -5px;
    top: -5px;
}

.cartaddinprices{
    color:green;
    font-size: 1.4rem;
    float: right;
}

.list-group .cart-controls{
    display:inline-block;
    float: right;
}

/*Cart table*/

.cart-table-wrapper {
    width: 100%;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th, .cart-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    box-sizing: border-box;
}

.cart-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.cart-img {
    width: 80px;
    height: auto;
}

.tdcenter {
    text-align: center;
    vertical-align: middle;
}

.cart-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Адаптивная версия */
@media (max-width: 768px) {
    .cart-table thead,
    .cart-table tfoot {
        display: none; /* Прячем шапку и футер */
    }

    .cart-table tbody {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cart-table tr {
        display: flex;
        flex-direction: column;
        border: 1px solid #ddd;
        padding: 10px;
        background: #fff;
        width: 100%;
    }

    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px;
        width: 100%;
        text-align: left;
        border: none;
        border-top: 1px solid #ddd;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: bold;
        min-width: 120px;
        display: inline-block;
        color: #333;
    }

    .cart-img {
        width: 100%;
        max-width: 100px;
        display: block;
        margin: 0 auto;
    }
}

/*Cart table end*/
.flatbox {
    padding: 1.5rem;
    min-height: 70px;
    font-size: 1.1rem;
    text-align: left;
    margin: 5px 0;
    border: 2px solid #e0e0e0; /* Softer border */
    border-radius: 8px; /* Slight rounding for smooth edges */
    background: #ffffff; /* Clean white background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    transition: all 0.3s ease-in-out;
}

.flatbox:hover {
    border-color: #d6d6d6; /* Slightly darker on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.checkphoneuser{
    display: none;
}
.infocheck {
    color: #6c757d; /* Серый цвет текста */
    background-color: #e9ecef; /* Светло-серый фон */
    border: 1px solid #ced4da; /* Граница как у input */
    padding: 0.375rem 0.75rem; /* Отступы как у input */
    border-radius: 0.375rem; /* Скругление углов */
    font-size: 1rem;
    user-select: none; /* Запрет выделения */
    cursor: not-allowed; /* Курсор как у disabled элемента */
}

#finorderphonea{
    display: none;
}

.divnicegroup{
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.375rem;
}

.divnicegroup-item{
    padding: 5px 10px;
    color: #212529;
    text-decoration: none;
    background-color: white;
    border: 1px solid #dee2e6;
}
.divnicegroup-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.divnicegroup-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.b{
    font-weight: bold;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(43%) sepia(55%) saturate(696%) hue-rotate(110deg);
    border-radius: 50%; /* Опционально для стилизации */
}
