.sticky-header.sticky {
    top: 0;
}

.auth-page-heading h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.auth-page-heading p {
    color: #91959b;
    margin-bottom: 0;
}

.auth-alert {
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 12px 16px;
}

.auth-alert-success {
    background: #edf7e6;
    border: 1px solid #c8e6b3;
    color: #4a7c12;
}

.auth-alert-error {
    background: #fdecec;
    border: 1px solid #f5c2c2;
    color: #b42318;
}

.auth-switch-link {
    color: #91959b;
    font-size: 14px;
    margin-top: 20px;
}

.auth-switch-link a {
    color: #78a206;
    font-weight: 600;
}

.auth-switch-link a:hover {
    text-decoration: underline;
}

.product__hover ul li form {
    display: inline;
}

.product__hover ul li button {
    background: #eaebed none repeat scroll 0 0;
    border: 0;
    border-radius: 100%;
    color: #78a206;
    cursor: pointer;
    display: block;
    font-size: 18px;
    font-weight: 400;
    height: 42px;
    line-height: 42px;
    padding: 0;
    text-align: center;
    transition: all 300ms ease-in 0s;
    width: 42px;
}

.product__hover ul li button:hover {
    background: #78a206 none repeat scroll 0 0;
    color: #ffffff;
}

.product-add-to-cart > a,
.product-add-to-cart > form > button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 2px solid #78a206;
    border-radius: 40px;
    color: #78a206;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 40px;
    padding: 0 135px;
    text-transform: uppercase;
    display: inline-block;
}

.product-add-to-cart > a:hover,
.product-add-to-cart > form > button:hover {
    background: #78a206 none repeat scroll 0 0;
    color: #ffffff;
}

.shop-search-form .search_inner {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.shop-search-form .search_inner input {
    border: 0;
    flex: 1;
    font-size: 14px;
    padding: 10px 12px;
}

.shop-search-form .search_inner button {
    background: #78a206;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 14px;
}

.shop_toggle li.active > a,
.shop_toggle .categorie_sub li.active > a {
    color: #78a206;
    font-weight: 600;
}

.shop_pagination .disabled span {
    color: #aaa;
    cursor: default;
}

/* ============================================================
   Product Detail Page
   ============================================================ */

/* ── Main section ── */
.pd-main-section {
    padding: 50px 0 60px;
}

.pd-main-row {
    row-gap: 30px;
}

/* ── Image ── */
.pd-image-col {
    display: flex;
    flex-direction: column;
}

.pd-image-wrapper {
    position: relative;
    background: #f9f9f9;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    overflow: hidden;
}

.pd-image-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding: 20px;
}

.pd-image-main img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: transform .3s ease;
}

.pd-image-wrapper:hover .pd-image-main img {
    transform: scale(1.04);
}

/* ── Badges on image ── */
.pd-badge {
    position: absolute;
    top: 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 3px 9px;
    text-transform: uppercase;
    z-index: 2;
}

.pd-badge-hot {
    left: 12px;
    background: #ff6b35;
    color: #fff;
}

.pd-badge-sale {
    left: 12px;
    margin-top: 28px;
    background: #78a206;
    color: #fff;
}

.pd-badge-hot + .pd-badge-sale {
    margin-top: 0;
    left: 12px;
    top: 42px;
}

/* ── Info column ── */
.pd-info-col {
    padding-left: 30px;
}

@media (max-width: 768px) {
    .pd-info-col { padding-left: 15px; }
}

/* category tag */
.pd-category-tag {
    display: inline-block;
    background: #f0f7e0;
    border: 1px solid #c8e083;
    border-radius: 3px;
    color: #5a8000;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 2px 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none;
}

.pd-category-tag:hover {
    background: #78a206;
    border-color: #78a206;
    color: #fff;
    text-decoration: none;
}

/* product name */
.pd-product-name {
    color: #222;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}

@media (max-width: 576px) {
    .pd-product-name { font-size: 20px; }
}

/* code */
.pd-product-code {
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
}

.pd-product-code span {
    font-weight: 600;
    color: #777;
}

/* stars */
.pd-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.pd-stars .fa-star   { color: #f5a623; }
.pd-stars .fa-star-o { color: #ddd; }
.pd-stars-lg .fa     { font-size: 20px; }

.pd-rating-count {
    color: #78a206;
    font-size: 13px;
    text-decoration: none;
}

.pd-rating-count:hover { text-decoration: underline; }

/* divider */
.pd-divider {
    border: 0;
    border-top: 1px solid #efefef;
    margin: 18px 0;
}

/* price + stock */
.pd-price-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
}

.pd-price {
    color: #78a206;
    font-size: 28px;
    font-weight: 700;
}

.pd-stock {
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
}

.pd-stock-in  { background: #edf7e6; color: #4a7c12; border: 1px solid #b9dca0; }
.pd-stock-out { background: #fdecec; color: #b42318; border: 1px solid #f5c2c2; }

/* short desc */
.pd-short-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ── Quantity stepper ── */
.pd-qty-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pd-qty-label {
    color: #555;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.pd-qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.pd-qty-btn {
    background: #f5f5f5;
    border: 0;
    color: #555;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    height: 40px;
    line-height: 38px;
    padding: 0;
    text-align: center;
    width: 40px;
    transition: background .2s;
    -webkit-user-select: none;
    user-select: none;
}

.pd-qty-btn:hover {
    background: #78a206;
    color: #fff;
}

.pd-qty-input {
    border: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 15px;
    font-weight: 600;
    height: 40px;
    text-align: center;
    width: 54px;
    -moz-appearance: textfield;
}

.pd-qty-input::-webkit-inner-spin-button,
.pd-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ── Action buttons ── */
.pd-action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pd-btn {
    align-items: center;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 7px;
    letter-spacing: .5px;
    padding: 12px 24px;
    text-transform: uppercase;
    transition: all .25s;
    text-decoration: none;
}

.pd-btn-cart {
    background: #fff;
    border: 2px solid #78a206;
    color: #78a206;
    flex: 1;
    justify-content: center;
}

.pd-btn-cart:hover {
    background: #78a206;
    color: #fff;
}

.pd-btn-buy {
    background: #78a206;
    border: 2px solid #78a206;
    color: #fff;
    flex: 1;
    justify-content: center;
}

.pd-btn-buy:hover {
    background: #5f8005;
    border-color: #5f8005;
}

@media (max-width: 480px) {
    .pd-btn { padding: 12px 14px; font-size: 12px; }
}

/* out of stock box */
.pd-out-of-stock-box {
    background: #fdecec;
    border: 1px solid #f5c2c2;
    border-radius: 4px;
    color: #b42318;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 18px;
    margin-bottom: 14px;
}

/* ── Meta list ── */
.pd-meta-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.pd-meta-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 4px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.pd-meta-list li:last-child { border-bottom: 0; }

.pd-meta-key {
    color: #777;
    font-weight: 600;
    white-space: nowrap;
    min-width: 100px;
}

.pd-meta-val a {
    color: #78a206;
    text-decoration: none;
}

.pd-meta-val a:hover { text-decoration: underline; }

/* ── Share ── */
.pd-share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pd-share-label {
    color: #555;
    font-size: 13px;
    font-weight: 600;
}

.pd-share-icons { display: flex; gap: 8px; }

.pd-share-btn {
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 34px;
    width: 34px;
    text-decoration: none;
    transition: opacity .2s;
}

.pd-share-btn:hover { opacity: .82; color: #fff; text-decoration: none; }
.pd-share-fb { background: #3b5998; }
.pd-share-tw { background: #1da1f2; }
.pd-share-pi { background: #bd081c; }

/* ── Reassurance ── */
.pd-reassurance {
    display: flex;
    gap: 0;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    overflow: hidden;
}

.pd-reassurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    padding: 12px 12px;
    font-size: 12px;
    color: #555;
    border-right: 1px solid #ebebeb;
    background: #fafafa;
}

.pd-reassurance-item:last-child { border-right: 0; }

.pd-reassurance-item img {
    flex-shrink: 0;
    height: 28px;
    width: 28px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .pd-reassurance { flex-direction: column; }
    .pd-reassurance-item { border-right: 0; border-bottom: 1px solid #ebebeb; }
    .pd-reassurance-item:last-child { border-bottom: 0; }
}

/* ============================================================
   Tabs
   ============================================================ */
.pd-tabs-section {
    background: #f9f9f9;
    padding: 50px 0 60px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.pd-tab-nav > ul {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.pd-tab-link {
    display: inline-block;
    border-bottom: 3px solid transparent;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: -2px;
    padding: 12px 22px;
    text-decoration: none;
    transition: all .2s;
}

.pd-tab-link:hover {
    color: #78a206;
    text-decoration: none;
}

.pd-tab-link.active {
    border-bottom-color: #78a206;
    color: #78a206;
}

.pd-tab-content {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    padding: 30px;
}

.pd-description-body {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.pd-description-body p { margin-bottom: 16px; }

.pd-empty-text {
    color: #999;
    font-size: 14px;
    font-style: italic;
    margin: 0;
}

/* info table */
.pd-info-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 480px;
}

.pd-info-table tr:nth-child(odd)  { background: #f9f9f9; }
.pd-info-table tr:nth-child(even) { background: #fff; }

.pd-info-key,
.pd-info-val {
    font-size: 14px;
    padding: 10px 14px;
}

.pd-info-key {
    color: #777;
    font-weight: 600;
    white-space: nowrap;
    width: 160px;
}

.pd-info-val a { color: #78a206; text-decoration: none; }
.pd-info-val a:hover { text-decoration: underline; }

/* review summary */
.pd-review-summary {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pd-review-score {
    color: #78a206;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}

.pd-review-label {
    color: #777;
    font-size: 13px;
    margin: 4px 0 0;
}

/* ============================================================
   Related products section
   ============================================================ */
.pd-related-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ============================================================
   Auth alert within product page
   ============================================================ */
.pd-main-section .auth-alert {
    margin-bottom: 24px;
}

/* ============================================================
   Topbar — language switcher
   ============================================================ */
.topbar-lang-switcher {
    position: relative;
    cursor: pointer;
}

.topbar-lang-current {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: inherit;
    padding: 2px 0;
    user-select: none;
}

.topbar-lang-current i.ion-earth {
    font-size: 14px;
}

.topbar-lang-dropdown {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    display: none;
    left: 50%;
    list-style: none;
    margin: 0;
    min-width: 130px;
    /* padding-top bridges the gap so mouse can travel from trigger to list */
    padding: 14px 0 6px;
    position: absolute;
    /* pull up so the padding overlaps the gap */
    top: 100%;
    transform: translateX(-50%);
    z-index: 9999;
}

/* Visible arrow — sits inside the padding area */
.topbar-lang-dropdown::after {
    content: '';
    border: 6px solid transparent;
    border-bottom-color: #e5e5e5;
    height: 0;
    left: 50%;
    position: absolute;
    top: 1px;
    transform: translateX(-50%);
    width: 0;
    pointer-events: none;
}

.topbar-lang-dropdown.is-open {
    display: block;
}

.topbar-lang-dropdown li a {
    color: #444 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    padding: 8px 16px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, color .15s;
}

.topbar-lang-dropdown li a:hover {
    background: #f5f5f5;
    color: #78a206 !important;
}

.topbar-lang-dropdown li.active a {
    color: #78a206 !important;
    font-weight: 700;
}

.topbar-lang-dropdown li.active a .fa-check {
    color: #78a206;
    font-size: 11px;
}

/* icon trên topbar links */
.header_top_right_inner a i {
    margin-right: 4px;
    font-size: 13px;
}

/* ============================================================
   Mini Cart
   ============================================================ */
.mini_cart_items_list {
    max-height: 260px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd #f9f9f9;
}

.mini_cart_items_list::-webkit-scrollbar { width: 4px; }
.mini_cart_items_list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

/* Trạng thái giỏ trống */
.mini_cart_empty {
    padding: 30px 20px;
    text-align: center;
    color: #aaa;
}

.mini_cart_empty i {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
    color: #ddd;
}

.mini_cart_empty p {
    font-size: 13px;
    margin: 0;
}

/* Nút xóa dạng form */
.cart_remove form {
    margin: 0;
}

.cart_remove button {
    background: none;
    border: 0;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 4px;
    transition: color .2s;
}

.cart_remove button:hover { color: #e53935; }

/* 2 nút cuối mini cart */
.min_cart_checkout {
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
}

.min_cart_checkout a {
    border-radius: 4px;
    display: inline-block;
    flex: 1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    line-height: 1;
    padding: 9px 10px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

/* Nút "Giỏ hàng" — viền xanh, nền trắng */
.min_cart_checkout a:first-child {
    background: #fff;
    border: 1.5px solid #78a206;
    color: #78a206 !important;
}

.min_cart_checkout a:first-child:hover {
    background: #78a206;
    color: #fff !important;
}

/* Nút "Tiến hành thanh toán" — nền xanh đặc */
.mini-cart-checkout-btn {
    background: #78a206 !important;
    border: 1.5px solid #78a206;
    color: #fff !important;
}

.mini-cart-checkout-btn:hover {
    background: #5f8005 !important;
    border-color: #5f8005;
}

/* ============================================================
   Header Account Dropdown
   ============================================================ */
.header-account-dropdown {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    min-width: 200px;
    padding: 6px 0;
}

/* User info block (khi đã đăng nhập) */
.had-user-info {
    align-items: center;
    display: flex;
    gap: 10px;
    padding: 12px 16px 10px;
}

.had-avatar {
    background: #f0f7e0;
    border-radius: 50%;
    color: #78a206;
    flex-shrink: 0;
    font-size: 22px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    width: 38px;
}

.had-username {
    color: #222;
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.had-email {
    color: #999;
    display: block;
    font-size: 11px;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Divider */
.had-divider {
    border: 0;
    border-top: 1px solid #f0f0f0;
    margin: 4px 0;
}

/* Menu links */
.had-menu {
    list-style: none;
    margin: 0;
    padding: 2px 0;
}

.had-menu li a {
    align-items: center;
    color: #444 !important;
    display: flex;
    font-size: 13px;
    gap: 9px;
    padding: 8px 16px;
    text-decoration: none !important;
    transition: background .15s, color .15s;
}

.had-menu li a i {
    color: #888;
    font-size: 16px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    transition: color .15s;
}

.had-menu li a:hover {
    background: #f5f9ee;
    color: #78a206 !important;
}

.had-menu li a:hover i { color: #78a206; }

/* Badge số lượng giỏ hàng */
.had-badge {
    background: #78a206;
    border-radius: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    margin-left: auto;
    padding: 2px 7px;
}

/* Đăng xuất — màu đỏ */
.had-logout a { color: #c0392b !important; }
.had-logout a i { color: #c0392b; }
.had-logout a:hover {
    background: #fff5f5 !important;
    color: #a93226 !important;
}

/* Override content-setting-dropdown width */
.content-setting-dropdown {
    min-width: 200px !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

@media (max-width: 576px) {
    .topbar-lang-dropdown {
        left: auto;
        right: 0;
        transform: none;
    }
    .topbar-lang-dropdown::before,
    .topbar-lang-dropdown::after {
        left: auto;
        right: 14px;
        transform: none;
    }
}

/* ── AJAX cart toast ── */
.cart-toast-container {
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    position: fixed;
    right: 24px;
    z-index: 99999;
}

.cart-toast {
    background: #333;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    max-width: 320px;
    opacity: 0;
    padding: 14px 18px;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cart-toast-success {
    background: #2e7d32;
}

.cart-toast-error {
    background: #c62828;
}

button.is-loading,
.pd-btn.is-loading {
    cursor: wait;
    opacity: 0.7;
    pointer-events: none;
}

.mini__cart.cart-added-flash .cart_icon_inner {
    animation: cartPulse 0.8s ease;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    40% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ── Shipping feature bar: fix text overflow ── */
.shipping_list.d-flex {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px 0;
}

.single_shipping_box {
    align-items: flex-start;
    border-right: 1px solid #ddd;
    flex: 1 1 0;
    margin-right: 0;
    min-width: 0;
    padding: 0 20px;
}

.single_shipping_box:last-child {
    border-right: none;
    padding-right: 0;
}

.shipping_icon {
    flex-shrink: 0;
}

.shipping_content {
    flex: 1;
    margin-left: 12px;
    min-width: 0;
}

.shipping_content > h6 {
    line-height: 1.35;
    margin-bottom: 4px;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    word-wrap: break-word;
}

.shipping_content > p {
    line-height: 1.45;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 991px) {
    .single_shipping_box {
        flex: 1 1 50%;
        border-right: none;
        padding: 0 12px 16px;
    }

    .single_shipping_box:nth-child(odd) {
        border-right: 1px solid #ddd;
        padding-right: 20px;
    }
}

@media (max-width: 575px) {
    .shipping_list.d-flex {
        flex-direction: column;
        gap: 20px;
        padding: 24px 16px;
    }

    .single_shipping_box,
    .single_shipping_box:nth-child(odd) {
        border-right: none;
        flex: 1 1 100%;
        justify-content: flex-start;
        padding: 0;
    }
}

/* Site footer layout */
.site-footer .footer-main-row {
    margin-bottom: 0;
}

.site-footer .footer_menu_list {
    width: 100%;
}

.site-footer .footer_menu_list .single_footer.widget {
    min-width: 0;
    width: 100%;
}

.site-footer__menus > [class*="col-"] {
    display: flex;
}

.site-footer__brand .footer_logo img {
    max-height: 52px;
    width: auto;
}

.site-footer__intro {
    margin-bottom: 12px !important;
}

.site-footer__label {
    color: #333;
    font-weight: 600;
}

.site-footer .footer_content > p {
    line-height: 1.7;
    margin-bottom: 8px;
}

.site-footer .footer_content > p:last-child {
    margin-bottom: 0;
}

.site-footer .footer_content a {
    color: #363f4d;
}

.site-footer .footer_content a:hover {
    color: #78a206;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer__social > a {
    margin-right: 0 !important;
}

.site-footer .footer_title > h2 {
    margin-bottom: 18px;
}

.site-footer .footer_menu ul {
    margin: 0;
    padding: 0;
}

.site-footer .footer_menu ul li {
    line-height: 1.8;
}

.site-footer__copyright {
    margin-top: 50px;
}

.site-footer__copyright .copyright_text > p,
.site-footer__copyright .footer_mastercard {
    margin: 0;
}

.site-footer__copyright .footer_mastercard img {
    max-height: 28px;
    width: auto;
}

@media (max-width: 991px) {
    .site-footer .footer-main-row > [class*="col-"] {
        margin-bottom: 10px;
    }

    .site-footer__menus {
        margin-top: 10px;
    }

    .site-footer__copyright {
        margin-top: 35px;
    }
}

@media (max-width: 575px) {
    .site-footer__menus > .col-6 {
        margin-bottom: 20px;
    }

    .site-footer__menus > .col-12 {
        margin-bottom: 0;
    }
}
