
/* =================================================================
   1. CÀI ĐẶT CHUNG, BIẾN MÀU & FONT
================================================================= */

:root {
    --color-primary: #fdd600;      /* Vàng chủ đạo */
    --color-primary-dark: #e9c400;  /* Vàng đậm hơn khi hover */
    --color-dark: #181818;          /* Đen (không quá gắt) */
    --color-light: #ffffff;         /* Trắng */
    --color-text: #333333;          /* Màu chữ chính */
    --color-text-light: #f1f1f1;    /* Màu chữ trên nền tối */
    --color-background: #f7f7f7;    /* Màu nền trang (xám rất nhạt) */
    --color-border: #eeeeee;        /* Màu viền */
    --color-sale: #e74c3c;          /* Màu giá sale */

    --font-primary: 'Poppins', sans-serif;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
}

.container {
    max-width: 1280px; /* Tăng độ rộng container cho thoáng hơn */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Topbar Styling */
.topbar {
  background-color: #f8f9fa; /* Màu nền nhẹ nhàng */
  padding: 10px 0; /* Khoảng cách trên dưới */
  font-size: 0.875rem; /* Kích thước chữ nhỏ hơn */
  border-bottom: 1px solid #e9ecef; /* Đường kẻ dưới nhẹ */
}

/* List Styling */
.topbar ul {
  list-style: none; /* Bỏ dấu chấm của list */
  margin: 0;
  padding: 0;
}

.topbar li {
  margin-bottom: 5px; /* Khoảng cách giữa các mục trên mobile */
  color: #495057; /* Màu chữ */
  white-space: nowrap; /* Ngăn không cho chữ xuống dòng */
}

.topbar li:last-child {
  margin-bottom: 0;
}

/* Icon Styling */
.topbar .bi {
  margin-right: 8px; /* Khoảng cách giữa icon và chữ */
  color: #007bff; /* Màu icon, ví dụ màu xanh dương */
  background-color: #e7f2ff; /* Màu nền icon */
  padding: 5px;
  display: flex; /* Dùng flex để căn giữa icon */
  align-items: center; /* Căn giữa theo chiều dọc */
  justify-content: center; /* Căn giữa theo chiều ngang */
  width: 28px; /* Kích thước icon cố định */
  height: 28px; /* Kích thước icon cố định */
  font-size: 1rem; /* Kích thước icon */
}

/* Link Styling */
.topbar a {
  color: #495057; /* Màu link */
  transition: color 0.3s ease; /* Hiệu ứng chuyển đổi màu khi hover */
}

.topbar a:hover {
  color: #007bff; /* Màu link khi hover */
}

/* Responsive Adjustments (using Bootstrap's breakpoints as a guide) */

/* Cho màn hình lớn hơn (lg) */
@media (min-width: 992px) {
  .topbar li {
    margin-bottom: 0; /* Bỏ khoảng cách dưới trên màn hình lớn */
  }

  .anouncement__list_left {
    justify-content: flex-start !important; /* Căn trái trên màn hình lớn */
  }

  .anouncement__list_right {
    justify-content: flex-end !important; /* Căn phải trên màn hình lớn */
    gap: 2.5rem !important; /* Tăng khoảng cách giữa các mục bên phải */
  }
}

/* Cho màn hình trung bình (md) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .anouncement__list_left,
  .anouncement__list_right {
    flex-direction: column !important; /* Xếp theo cột trên màn hình trung bình */
    gap: 0.5rem !important; /* Giảm khoảng cách */
  }

  .col-md-5, .col-md-7 {
    flex: 0 0 auto;
    width: 100%; /* Đảm bảo mỗi cột chiếm toàn bộ chiều rộng */
  }

  .col-md-5 {
    margin-bottom: 10px; /* Khoảng cách giữa hai khối trên md */
  }
}

/* Cho màn hình nhỏ hơn (sm) */
@media (max-width: 767.98px) {
  .anouncement__list_left,
  .anouncement__list_right {
    flex-direction: column !important; /* Xếp theo cột trên màn hình nhỏ */
    align-items: flex-start !important; /* Căn trái */
    gap: 0.5rem !important; /* Giảm khoảng cách */
  }
  .col-md-5, .col-md-7 {
    flex: 0 0 auto;
    width: 100%; /* Đảm bảo mỗi cột chiếm toàn bộ chiều rộng */
  }

  .col-md-5 {
    margin-bottom: 10px; /* Khoảng cách giữa hai khối trên sm */
  }
}

/* Custom CSS cho 5 cột Bootstrap (như đã có) */
@media (min-width: 992px) {
  .row > .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* General product card styling */
.product-category-section .product .product-inner {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-category-section .product .product-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important; /* Đổ bóng rõ hơn khi hover */
}

li.product  {
    position: relative;
}
/* Custom Sale Percentage Styles */
li.product .onsale {
    text-align: center;
    position: absolute;
    top: 0px;
    left: 0;
    margin: 0;
    z-index: 9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    min-height: inherit;
    border-radius: 5px;
    line-height: 1.2rem;
    width: 50px;
    height: 31px;
    font-size: 14px;
    background-color: #ffd600;
    color: rgb(0, 0, 0);
    font-weight: 500;
}

@media (max-width: 767.98px) {
  .anouncement__list_left,
  .anouncement__list_right {
    flex-direction: column !important; /* Xếp theo cột trên màn hình nhỏ */
    align-items: flex-start !important; /* Căn trái */
    gap: 0.5rem !important; /* Giảm khoảng cách */
  }
  .col-md-5, .col-md-7 {
    flex: 0 0 auto;
    width: 100%; /* Đảm bảo mỗi cột chiếm toàn bộ chiều rộng */
  }

  .col-md-5 {
    margin-bottom: 10px; /* Khoảng cách giữa hai khối trên sm */
  }
}

/* Custom CSS cho 5 cột Bootstrap (như đã có) */
@media (min-width: 992px) {
  .row > .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* General product card styling */
/* Đã thêm position: relative ở đây */
.product-category-section .product .product-inner {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-category-section .product .product-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important; /* Đổ bóng rõ hơn khi hover */
}


/* Giá sản phẩm */
.product .price {
    display: flex; /* Dùng flexbox để căn chỉnh giá gốc và giá khuyến mãi */
    align-items: baseline; /* Căn chỉnh theo baseline của text */
    flex-wrap: wrap; /* Cho phép giá xuống dòng nếu không đủ chỗ */
    justify-content: flex-start; /* Căn trái giá */
    margin-top: 0.5rem; /* Khoảng cách trên giá */
}

.product .price ins { /* Giá khuyến mãi */
    color: #dc3545; /* Màu đỏ */
    font-size: 1.25rem; /* To hơn */
    font-weight: bold;
    text-decoration: none; /* Bỏ gạch dưới mặc định của INS */
    margin-right: 8px; /* Khoảng cách với giá gốc */
}

.product .price del { /* Giá gốc bị gạch ngang */
    color: #6c757d; /* Màu xám */
    font-size: 0.9rem; /* Nhỏ hơn */
    text-decoration: line-through; /* Gạch ngang */
    font-weight: normal;
}
/* CSS mẫu cho các section sản phẩm dựa trên cấu trúc PHP của bạn */

/* Định kiểu cho toàn bộ phần chính của trang */
.site-main {
    background-color: #f8f9fa; /* Màu nền nhẹ cho toàn bộ khu vực chính */
}

/* Định kiểu cho mỗi section danh mục sản phẩm */
.product-category-section {
    background-color: #ffffff; /* Nền trắng cho mỗi hộp danh mục */
    border-radius: 8px; /* Bo tròn các góc */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Thêm bóng nhẹ */
    padding: 30px; /* Padding bên trong mỗi section */
    margin-bottom: 30px; /* Khoảng cách giữa các section (đã có mb-5, đây là thêm nếu muốn override) */
}

/* Định kiểu cho tiêu đề danh mục */
.product-category-section .section-title {
    color: #c51813;
    font-weight: 600;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 25px !important;
    display: inline-block;
    width: auto;
    font-size: 22px;
}

/* Định kiểu cho thông báo không có sản phẩm */
.product-category-section p.text-center {
    color: #6c757d; /* Màu chữ xám */
    font-style: italic; /* Chữ nghiêng */
    padding: 20px 0; /* Padding trên dưới */
}

/* Điều chỉnh khoảng cách chung cho container */
.container {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Điều chỉnh lại các cột trên màn hình nhỏ nếu cần */
@media (max-width: 767.98px) {
    .product-category-section {
        padding: 20px; /* Giảm padding trên màn hình nhỏ */
        margin-bottom: 20px; /* Giảm margin-bottom */
    }
    .product-category-section .section-title {
        font-size: 1.5rem; /* Kích thước tiêu đề nhỏ hơn */
        margin-bottom: 20px !important;
    }
}

/* Tiêu đề sản phẩm */
.woocommerce-loop-product__title {
    font-size: 1rem; /* Kích thước tiêu đề */
    color: #333; /* Màu chữ đen */
    text-align: left; /* Căn trái */
    text-decoration: none; /* Bỏ gạch dưới */
    margin-bottom: 0.5rem; /* Khoảng cách dưới tiêu đề */
    display: block; /* Đảm bảo là block element */
    font-weight: 500; /* Độ đậm vừa phải */
    /* Giới hạn số dòng cho tiêu đề */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em; /* Chiều cao cố định tương ứng với 2 dòng */
    line-height: 1.4em; /* Chiều cao dòng */
}
a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
    color: inherit; /* Kế thừa màu đen từ parent */
    text-decoration: none; /* Bỏ gạch dưới cho link */
}
a.woocommerce-LoopProduct-link.woocommerce-loop-product__link h2:hover {
    color: #007bff; /* Màu xanh khi hover */
}

.product-type-simple img {
    max-width: 100%;
    max-height: 100%; /* Đảm bảo ảnh không tràn ra khỏi wrapper */
    object-fit: contain; /* Giữ tỷ lệ khung hình và fit vào vùng chứa */
    transition: transform 0.3s ease;
}

/* Giá khuyến mãi (sale) */
.vutaphoa-price-sale {
    color: #e63946;       /* đỏ */
    font-weight: 700;
    margin-right: 6px;
}

/* Giá gốc (regular) */
.vutaphoa-price-regular {
    opacity: 0.7;
    margin-left: 6px;
}
/* ==== 1. Hiệu ứng chung cho product ==== */
ul.products li.product {
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #fff;
}

/* Hover nổi khối + đổ bóng */
ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
}

/* ==== 2. Zoom ảnh khi hover ==== */
ul.products li.product img {
    transition: transform 0.4s ease;
}

ul.products li.product:hover img {
    transform: scale(1.05);
}

/* ==== 3. Hiện nút Add to Cart & Quick View khi hover ==== */
ul.products li.product .button,
ul.products li.product .quick-view-btn {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    z-index: 5;
}

/* Khi hover thì hiện ra */
ul.products li.product:hover .button,
ul.products li.product:hover .quick-view-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* Style nút Add to Cart */
ul.products li.product .button {
    background: #e63946;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 5px;
}
#quickViewModal .modal-content {
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
}

#quickViewModal h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

#quickViewModal .price {
    font-size: 20px;
    font-weight: 600;
    color: #e63946;
}

#quickViewModal .price del {
    color: #777;
    margin-left: 8px;
}

#quickViewModal .variations select {
    width: 100%;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

#quickViewModal .single_add_to_cart_button {
    background: #e63946;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
}

#quickViewModal .single_add_to_cart_button:hover {
    background: #d62828;
}

/* SECTION HEADER: giữ 1 hàng, không wrap */
.product-category-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap; /* QUAN TRỌNG: không allow wrap ở desktop */
}

/* Tiêu đề */
.product-category-section .section-title {
    margin: 0;            /* loại margin mặc định của h2 */
    white-space: nowrap;  /* tránh xuống dòng */
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
}

/* Danh mục con - menu ngang */
.product-category-section .subcategories {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    flex: 0 0 auto;      /* không giãn ra */
    white-space: nowrap;  /* giữ trên 1 dòng */
    overflow: hidden;     /* nếu quá dài: cắt bớt */
}

/* Mỗi mục nhỏ */
.product-category-section .subcategories li {
    margin: 0;
}

/* Link trong danh mục con */
.product-category-section .subcategories li a {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color .15s ease, background-color .15s ease;
}

/* Hover effect */
.product-category-section .subcategories li a:hover {
    font-weight: 500;
        font-size: 14px;
        min-width: max-content;
        margin: 0px 0.5rem;
        border-radius: 0.5rem;
        color: rgb(255, 255, 255);
        background-color: rgb(197, 24, 19);
        cursor: pointer;
}

/* Responsive: trên thiết bị nhỏ thì cho xuống 2 hàng */
@media (max-width: 767.98px) {
    .product-category-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .product-category-section .subcategories {
        flex-wrap: wrap;
    }
}

.footer {
    background: #fff;
    font-size: 14px;
    color: #333;
}
.footer h5 {
    font-size: 15px;
    text-transform: uppercase;
}
.footer a {
    color: #333;
    text-decoration: none;
}
.footer a:hover {
    color: #007bff;
}

a.custom-logo-link img {
    text-align: center;
    display: block;
    margin: 0 auto;
    width: 70%;
    height: auto;
}
.site-info {
    text-align: start;
    width: 1200px;
    max-width: calc(100% - 10px);
    margin: auto;
}
.single-product .entry-header {
    display: none !important;
}
.woocommerce-tabs.wc-tabs-wrapper {
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    padding: 15px;
    margin-bottom: 40px;
}
/* Bọc các nút trong 1 hàng */
.single-product .cart {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Nút Thêm vào giỏ hàng */
.single-product .cart .single_add_to_cart_button {
    background-color: #28a745; /* xanh lá */
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s ease;
}

.single-product .cart .single_add_to_cart_button:hover {
    background-color: #218838;
}

/* Nút Mua ngay */
.single-product .cart .buy-now-button {
    background-color: #dc3545; /* đỏ Bootstrap */
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s ease;
}

.single-product .cart .buy-now-button:hover {
    background-color: #b02a37;
}

/* Bọc ô số lượng */
.single-product .cart .quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

/* Nút trừ & cộng */
.single-product .cart .quantity button {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.single-product .cart .quantity button:hover {
    background: #e9ecef;
}

/* Ô nhập số */
.single-product .cart .quantity input.qty {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    -moz-appearance: textfield;
}

/* Ẩn mũi tên tăng giảm mặc định */
.single-product .cart .quantity input.qty::-webkit-outer-spin-button,
.single-product .cart .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ====== TRANG GIỎ HÀNG ====== */

/* Bảng giỏ hàng */
.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.woocommerce-cart table.shop_table th {
    background: #f8f9fa;
    padding: 15px;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
}

.woocommerce-cart table.shop_table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

/* Ảnh sản phẩm */
.woocommerce-cart .product-thumbnail img {
    max-width: 70px;
    border-radius: 6px;
}

/* Nút cập nhật giỏ hàng */
.woocommerce .actions .button {
    background: #ffc107;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
}
.woocommerce .actions .button:hover {
    background: #e0a800;
}

/* Tổng giỏ hàng */
.cart_totals {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.cart_totals h2 {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* Nút thanh toán */
.woocommerce .wc-proceed-to-checkout .checkout-button {
    background: #28a745;
    color: #fff !important;
    padding: 14px 25px;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: block;
}
.woocommerce .wc-proceed-to-checkout .checkout-button:hover {
    background: #218838;
}
/* ====== TRANG THANH TOÁN ====== */

/* Form thanh toán */
.woocommerce-checkout form.checkout {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Tiêu đề */
.woocommerce-checkout h3 {
    font-size: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
    padding-left: 10px;
    color: #007bff;
}

/* Input + Select */
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    margin-bottom: 15px;
    font-size: 15px;
}
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* Bảng đơn hàng */
.woocommerce-checkout-review-order-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* Nút đặt hàng */
.woocommerce #place_order {
    background: #dc3545;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 25px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}
.woocommerce #place_order:hover {
    background: #c82333;
}

.header-cart {
    position: relative;
}

.mini-cart-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 350px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 5px;
}

.header-cart:hover .mini-cart-dropdown {
    display: block;
}

/* Style sản phẩm trong mini cart */
.woocommerce-mini-cart-item {
    display: flex !important;
    align-items: center;
    margin-bottom: 12px;
}

.woocommerce-mini-cart-item img {
    width: 30px;
        height: auto;
        margin-right: 12px;
        border-radius: 4px;
        border: 1px solid #eee;
}

.woocommerce-mini-cart-item a {
    font-weight: 500;
        color: #333;
        text-decoration: none;
        font-size: 12px;
}

.woocommerce-mini-cart-item .quantity {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* Tổng tiền */
.woocommerce-mini-cart__total {
    font-weight: bold;
        margin-top: 5px;
        text-align: right;
        font-size: 13px;
}

/* Nút */
.woocommerce-mini-cart__buttons a {
    display: inline-block;
    padding: 8px 12px;
    margin-left: 5px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.woocommerce-mini-cart__buttons .wc-forward {
    background: #28a745;
    color: #fff;
}

.woocommerce-mini-cart__buttons .checkout {
    background: #dc3545;
    color: #fff;
}



.h4, h4 {
    font-size: 1.5rem;
}
.footer-useful-link li {
    margin-bottom: 10px;
}
.footer-useful-link li a {
    color: #444;
    font-size: 14px;
    text-transform: capitalize;
    text-decoration: none;
}
.footer-useful-link li:hover a , .footer-custom-link a:hover{
    color: #fedc19;
}

.footer-bottom-content {
    border-top: 1px solid #e9e9e9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
}

.footer-copyright p {
    color: #666;
    font-size: 13px;
    line-height: 30px;
}
.footer-copyright a {
    color: #fedc19;
}


.footer-custom-link a {
    color: #444;
    display: inline-block;
    line-height: 30px;
    margin-left: 33px;
    position: relative;
    vertical-align: top;
    text-decoration: none;
}

.footer-mxh img {
    height: 35px;
}
.nav-menu {
    list-style: none;
    gap: 20px;
    text-align: center;
    margin: 0 auto;
    padding-top: 10px;
}
.nav-menu li a {
    text-decoration: none;
    color: #333;
}
ul#menu-menu li:hover {
    background-color: #fe9;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

ul#menu-menu li {
    cursor: pointer;
    padding: 10px;
    position: relative;
}