:root {
    --cl-bg: #2d2d2d;
    --cl-dark: #0c0c0c;
    --cl-dark-2: #1e1e1e;
    --cl-red: #9a232c;
    --cl-red-dark: #812327;
    --cl-burgundy: #8c0014;
    --cl-gold: #e5d5a4;
    --cl-cream: #fbf6e6;
    --cl-heading: #fff4d1;
    --cl-orange: #fd8834;
    --cl-price: #d53c3c;
    --cl-text: #e8e0cf;
}

html {
    font-size: 93.75%;
    scroll-behavior: smooth;
}

body {
    font-family: "Exo 2", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    background-color: var(--cl-bg);
    color: var(--cl-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--cl-heading);
    font-family: "Exo 2", "Roboto Condensed", sans-serif;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

.section-sub a,
.product-text a,
.breadcrumbs a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.section-sub a:hover,
.product-text a:hover,
.breadcrumbs a:hover {
    color: #fff;
    text-decoration: underline;
}

.text-cream {
    color: var(--cl-cream) !important;
}

.text-heading {
    color: var(--cl-heading) !important;
}

.text-price {
    color: var(--cl-price) !important;
}

/* ---------- Scroll reveal animations ---------- */
[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    opacity: 1;
}

.anim-fadeInDown {
    animation: fadeInDown 0.9s ease both;
}

.anim-fadeInUp {
    animation: fadeInUp 0.9s ease both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Background slideshow (Кена Бёрнса) ---------- */
.bg-slideshow {
    position: relative;
    overflow: hidden;
    margin-top: 6%;
}

.bg-slideshow-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: bgSlide 20s linear infinite;
}

.bg-slideshow > .container {
    position: relative;
    z-index: 2;
}

.production-col {
    background: rgba(0, 0, 0, 0.78);
    padding: 6% 9% 6% 6%;
    border-radius: 0 8px 8px 0;
}

.production-section > .container,
.natural-section > .container {
    max-width: 1140px;
}

@keyframes bgSlide {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    2.5% {
        opacity: 1;
        transform: scale(1);
    }
    20% {
        opacity: 1;
        transform: scale(1.1);
    }
    22.5% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
    }
    .anim-fadeInDown,
    .anim-fadeInUp {
        animation: none;
    }
    .bg-slideshow-layer {
        animation: none;
        opacity: 1;
    }
}

/* ---------- Navbar ---------- */
.navbar-choc {
    background: rgba(20, 20, 20, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-choc .navbar-brand img {
    max-height: 46px;
    width: auto;
}

.navbar-choc .navbar-nav .nav-link {
    --bs-navbar-color: #e5d5a4;
    --bs-navbar-hover-color: #e5d5a4;
    --bs-navbar-active-color: #e5d5a4;
    position: relative;
    color: #e5d5a4;
    font-family: "Exo 2", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 0.5rem 11px;
    text-decoration: none;
}

.navbar-choc .navbar-nav .nav-link::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #e5d5a4;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.58, 0.3, 0.005, 1);
}

.navbar-choc .navbar-nav .nav-link:hover,
.navbar-choc .navbar-nav .nav-link:focus,
.navbar-choc .navbar-nav .nav-link.active {
    color: #e5d5a4;
}

.navbar-choc .navbar-nav .nav-link:hover::after,
.navbar-choc .navbar-nav .nav-link:focus::after,
.navbar-choc .navbar-nav .nav-link.active::after {
    opacity: 1;
}

.navbar-choc .navbar-nav .nav-link.dropdown-toggle::after {
    position: static;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.4em;
    vertical-align: 0.2em;
    background: none;
    opacity: 1;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.navbar-choc .navbar-nav .nav-link.dropdown-toggle:hover,
.navbar-choc .navbar-nav .nav-link.dropdown-toggle:focus,
.navbar-choc .navbar-nav .nav-link.dropdown-toggle.active,
.navbar-choc .navbar-nav .nav-link.dropdown-toggle.show {
    box-shadow: inset 0 -3px 0 #e5d5a4;
}

.navbar-choc .dropdown-menu {
    background: #171717;
    border: 1px solid rgba(229, 213, 164, 0.28);
    padding: 0.35rem 0;
    margin-top: 0;
}

@media (min-width: 992px) {
    .navbar-choc .nav-item.dropdown:hover > .dropdown-menu,
    .navbar-choc .nav-item.dropdown:focus-within > .dropdown-menu {
        display: block;
    }
}

.navbar-choc .dropdown-item {
    color: #e5d5a4;
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0.5rem 1.15rem;
}

.navbar-choc .dropdown-item:hover,
.navbar-choc .dropdown-item:focus {
    background-color: #e5d5a4;
    color: #262626;
}

.navbar-choc .btn-price {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    background: var(--cl-price);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.4rem 1.4rem;
}

.navbar-choc .btn-price:hover,
.navbar-choc .btn-price:focus {
    background: #c23232;
    color: #fff;
}

.navbar-choc .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.navbar-choc .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-choc .navbar-collapse {
    padding: 0.5rem 0;
}

#clients {
    scroll-margin-top: 90px;
}

@media (max-width: 991.98px) {
    .navbar-choc .navbar-nav {
        width: 100%;
        background-color: #171717;
        margin-top: 0.5rem;
    }

    .navbar-choc .navbar-nav .nav-link {
        color: #d9cca3;
        font-weight: 300;
        font-size: 13px;
        padding: 0.75rem 1rem;
    }

    .navbar-choc .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-choc .navbar-nav .nav-link:hover,
    .navbar-choc .navbar-nav .nav-link:focus,
    .navbar-choc .navbar-nav .nav-link.active {
        color: #262626;
        background-color: #d9cca3;
    }

    .navbar-choc .navbar-nav .nav-link.dropdown-toggle:hover,
    .navbar-choc .navbar-nav .nav-link.dropdown-toggle:focus,
    .navbar-choc .navbar-nav .nav-link.dropdown-toggle.active,
    .navbar-choc .navbar-nav .nav-link.dropdown-toggle.show {
        box-shadow: none;
    }

    .navbar-choc .dropdown-menu {
        display: block;
        position: static;
        float: none;
        background: #121212;
        border: none;
        border-radius: 0;
        padding: 0;
    }

    .navbar-choc .dropdown-item {
        color: #d9cca3;
        font-weight: 300;
        font-size: 13px;
        padding: 0.65rem 1.5rem;
    }

    .navbar-choc .dropdown-item:hover,
    .navbar-choc .dropdown-item:focus {
        color: #262626;
        background-color: #d9cca3;
    }
}

/* ---------- Buttons ---------- */
.btn-choc {
    font-family: "Exo 2", sans-serif;
    background-color: var(--cl-gold);
    color: #3a3a3a;
    border-radius: 50px;
    font-weight: 400;
    font-size: 13px;
    padding: 0.55rem 2.2rem;
    box-shadow: 0 7px 19px 3px rgba(0, 0, 0, 0.73);
    border: none;
    text-decoration: none;
}

.btn-choc:hover,
.btn-choc:focus {
    background-color: #d8c38a;
    color: #3a3a3a;
}

.btn-choc-red {
    background-color: var(--cl-red);
    color: #fff;
    font-size: 15px;
    border: 2px solid var(--cl-red);
}

.btn-choc-red:hover,
.btn-choc-red:focus {
    background-color: var(--cl-red-dark);
    border-color: var(--cl-red-dark);
    color: #fff;
}

.btn-outline-choc {
    border: 2px solid var(--cl-gold);
    color: var(--cl-gold);
    border-radius: 50px;
    background: transparent;
    padding: 0.45rem 2rem;
    font-weight: 600;
}

.btn-outline-choc:hover {
    background: var(--cl-gold);
    color: #3a3a3a;
}

/* ---------- Sections ---------- */
.site-section {
    position: relative;
    padding: 4.5rem 0;
}

.site-section--dark {
    background-color: var(--cl-dark);
}

.site-section--dark2 {
    background-color: var(--cl-dark-2);
}

.site-section--gray {
    background-color: var(--cl-dark-2);
}

/* ---------- Shape dividers (Elementor-style V-cut) ---------- */
.elementor-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    pointer-events: none;
    z-index: 2;
}

.elementor-shape-top {
    top: -1px;
}

.elementor-shape-bottom {
    bottom: -1px;
}

.elementor-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: 56px;
}

.elementor-shape.elementor-shape-bottom svg {
    height: 51px;
}

.production-section > .elementor-shape-top svg {
    height: 62px;
}

.elementor-shape .elementor-shape-fill {
    fill: #2d2d2d;
}

.section-title {
    font-weight: 300;
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

.section-title b {
    font-weight: 700;
}

.section-sub {
    color: var(--cl-cream);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.5;
}

.retail-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.retail-text ul {
    margin: 0 0 1rem;
    padding-left: 1.3rem;
}

.retail-text li {
    margin-bottom: 0.35rem;
}

.divider {
    width: 24%;
    max-width: 280px;
    height: 4.2px;
    background: var(--cl-gold);
    margin: 1.2rem auto 1.8rem;
}

.divider-left {
    margin-left: 0;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 580px;
    display: flex;
    align-items: center;
    text-align: center;
    background: url("/images/fon-3.jpg") center / cover no-repeat;
    padding: 0 4% 2%;
}

.hero > .container {
    max-width: 694px;
}

.hero h1 {
    font-size: 46px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.3em;
    color: var(--cl-heading);
}

.hero h1 b {
    font-weight: 700;
}

.hero-icon-box {
    text-align: left;
    color: var(--cl-cream);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.4rem;
    padding: 7%;
}

.hero-icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon--sm {
    width: 49px;
    height: 49px;
}

.hero-icon svg {
    width: 100%;
    height: 100%;
    fill: #fffbd5;
}

.hero-icon-box h3 {
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    margin: 0;
    color: #feeed0;
}

/* ---------- Product cards ---------- */
.catalog-grid > [class*="col-"],
.row > [class*="col-"]:has(> .product-card) {
    display: flex;
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: #0c0c0c;
    border: none;
    border-radius: 0;
    height: 100%;
    width: 100%;
    margin: 6%;
    padding: 0;
    box-shadow: 0 14px 31px -15px rgba(0, 0, 0, 0.82);
}

.product-card:hover {
    transform: none;
    box-shadow: 0 14px 31px -15px rgba(0, 0, 0, 0.82);
}

.product-card .card-img-top {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.product-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 0;
}

.product-card .card-title,
.product-card-name {
    color: #fbf6e6;
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.3em;
    text-align: center;
    padding: 0.45rem 6% 0;
    margin: 0;
    flex: 1 1 auto;
}

.product-card-btn {
    text-align: center;
    padding: 0.55rem 0 3.5%;
    margin-top: auto;
    flex-shrink: 0;
}

.product-card-btn .btn-choc {
    font-size: 15px;
    font-weight: 400;
    padding: 0.4rem 1.6rem;
}

.catalog-page {
    padding-top: 3%;
}

.catalog-title {
    color: #fff4d1;
    font-family: "Exo 2", sans-serif;
    font-size: 35px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0;
}

.blog-card {
    background: #0c0c0c;
    padding: 1.4rem 1.35rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-family: "Exo 2", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.blog-card-title a {
    color: #fff4d1;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #e5d5a4;
}

.blog-card-date,
.blog-post-date {
    color: #d9cca3;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.blog-card-desc {
    color: #fbf6e6;
    font-weight: 300;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.blog-card-more {
    color: #e5d5a4;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.blog-post-text {
    max-width: 820px;
}

.blog-post-text p,
.blog-post-text li {
    color: #fbf6e6;
}

/* ---------- Feature (blo) cards ---------- */
.blo-section {
    padding: 0;
    background: transparent;
}

.blo-section--first {
    margin-top: 4%;
}

.container-nishi {
    max-width: 1140px;
    padding-left: 0;
    padding-right: 0;
}

.blo-col {
    display: flex;
    min-height: 400px;
}

.blo-card {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    margin: 5%;
    padding: 5%;
    box-shadow: 0 10px 21px 7px rgba(0, 0, 0, 0.5);
}

.blo-card .blo-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    margin: 0;
}

.blo-card--darken .blo-title {
    width: 100%;
    padding: 3%;
    background-color: rgba(187, 64, 64, 0.78);
}

.blo-card--darken::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s;
}

.blo-card--darken:hover::after {
    background-color: rgba(27, 27, 27, 0.36);
}

/* ---------- Icon list ---------- */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 0.6rem;
    color: rgba(253, 255, 237, 0.87);
}

.icon-list .icon-check {
    fill: #fffee3;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    margin-top: 0.25rem;
}

/* ---------- Partner carousel ---------- */
.container-partners {
    max-width: 1140px;
}

.partner-slide {
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 286px;
    padding: 0;
}

.partner-slide img {
    max-width: 100%;
    max-height: 233px;
    object-fit: contain;
}

#partnerCarousel .carousel-control-prev,
#partnerCarousel .carousel-control-next {
    top: 50%;
    bottom: auto;
    width: 25px;
    height: 25px;
    opacity: 0.9;
    transform: translateY(-50%);
}

#partnerCarousel .carousel-control-prev {
    left: -30px;
    right: auto;
}

#partnerCarousel .carousel-control-next {
    left: auto;
    right: -30px;
}

#partnerCarousel .carousel-control-prev-icon,
#partnerCarousel .carousel-control-next-icon {
    width: 25px;
    height: 25px;
    background-size: 100% 100%;
}

#partnerCarousel .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23eeeeee'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#partnerCarousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23eeeeee'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ---------- Certificates grid ---------- */
.container-certs {
    max-width: 1140px;
}

.cert-card img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease;
    cursor: zoom-in;
}

.cert-card:hover img {
    transform: scale(1.02);
}

/* ---------- Offer section (оптовые цены) ---------- */
.offer-section {
    position: relative;
    background: #1e1e1e url('/images/MG_4839-2.jpg') center/cover no-repeat;
    padding: 84.53px 42.27px 42.27px;
}

.offer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 0;
    pointer-events: none;
}

.offer-section .container {
    position: relative;
    z-index: 1;
}

.container-offer {
    max-width: 1140px;
    padding-left: 0;
    padding-right: 0;
}

.offer-title {
    color: var(--cl-heading);
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 20px;
}

.offer-sub {
    color: var(--cl-heading);
    font-size: 30px;
    font-weight: 200;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 0;
}

.offer-card {
    background: rgba(21, 21, 21, 0.75);
    margin: 28.5px;
    padding: 28.5px;
}

.offer-form-title {
    color: var(--cl-heading);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 20px;
}

.offer-form .offer-field {
    margin-bottom: 18px;
}

.offer-form .form-control.offer-input {
    background: #fafafa;
    color: #666666;
    border: 1px solid #eaeaea;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 15px;
    height: 42px;
    box-shadow: none;
}

.offer-form .form-control.offer-input::placeholder {
    color: #757575;
}

.offer-form .offer-btn {
    background: var(--cl-red);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 14px;
    font-size: 15px;
    font-weight: 400;
    height: 47px;
    line-height: 1;
}

.offer-form .offer-btn:hover {
    background: var(--cl-red-dark);
    color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--cl-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 0 1.5rem;
}

.site-footer .footer-title {
    color: var(--cl-cream);
}

.site-footer .footer-firm {
    font-size: 29px;
    font-weight: 400;
    line-height: 1.3;
}

.site-footer .footer-hours {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
}

.site-footer .footer-contacts {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

.site-footer .footer-copyright {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 251, 240, 0.77);
}

.site-footer .map-wrap iframe {
    display: block;
    width: 100%;
    border: 0;
    filter: grayscale(1);
}

/* ---------- Modals ---------- */
.modal-content {
    background: #3a3a3a;
    color: var(--cl-cream);
    border: none;
    border-radius: 8px;
}

.modal-content .form-control {
    border-radius: 50px;
    padding: 0.65rem 1.2rem;
    background: #fff;
    color: #212529;
}

.modal-content .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content .modal-title {
    color: var(--cl-heading);
}

.modal-content .btn-close {
    filter: invert(1);
}

.modal-content input[type="submit"],
.modal-content .btn-submit {
    background: var(--cl-burgundy);
    color: #fff;
    border-radius: 50px;
    width: 100%;
    padding: 0.75rem !important;
    border: 2px solid #fff;
    font-weight: 600;
}

.modal-content input[type="submit"]:hover,
.modal-content .btn-submit:hover {
    background: var(--cl-red-dark);
    color: #fff;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    color: var(--cl-cream);
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.3;
}

.breadcrumbs a {
    color: #fff;
}

/* ---------- Product page ---------- */
.product-page {
    padding-top: 3%;
}

.product-page h1.product-title {
    color: #fff4d1;
    font-family: "Exo 2", sans-serif;
    font-size: 35px;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
    margin: 0;
}

.product-buy {
    text-align: center;
    margin-top: 1.25rem;
}

.product-buy .btn-choc {
    font-size: 20px;
    padding: 0.45rem 2rem;
}

.product-info {
    padding-top: 0;
}

.product-price {
    color: var(--cl-price);
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1.4em;
    text-align: left;
    margin: 0 0 1.4em;
    line-height: 1.3em;
}

.product-text {
    color: var(--cl-cream);
    font-family: "Exo 2", sans-serif;
    font-size: 1.4em;
    font-weight: 300;
    line-height: 1.3em;
}

/* ---------- Table (wholesale conditions etc.) ---------- */
.tab table {
    border-collapse: collapse;
    color: #5f5f5f;
    margin: 10px 0 5px;
}

.tab table tr {
    background-color: #191919;
    color: #ffffba;
    border: 1px solid #fff;
    text-align: center;
}

.tab table td {
    padding: 13px 18px;
    border: 1px solid #fff;
}

@media (max-width: 991px) {
    .hero {
        min-height: 460px;
    }
    .hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 1024px) {
    .product-card-name,
    .product-card .card-title {
        font-size: 15px;
    }
    .product-page h1.product-title {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 29px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .catalog-title {
        font-size: 25px;
    }
    .product-card-name,
    .product-card .card-title {
        font-size: 12px;
    }
    .product-card-btn .btn-choc {
        font-size: 13px;
        padding: 0.3rem 1.1rem;
    }
    .blo-col {
        min-height: 200px;
    }
    .tab table {
        font-size: 11px;
    }
    .tab table td {
        padding: 9px;
    }
}

@media (max-width: 467px) {
    .blo-col {
        min-height: 200px;
    }
}
