@charset "utf-8";

/* ===== CSS VARIABLES ===== */
:root {
  --color-highlight: #cca62c;
  --color-second: #7f6000;
  --color-third: #385723;
  --color-main: #111c2d;
  --color-text: #7e858d;
  --font-body: "Roboto Slab", Arial, Helvetica, sans-serif;
  --white: #fff;
  --black: #000;
  --light: #f3f3f3;
  --gray: #e1e1e1;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-main);
  background: #fff;
}

a {
  color: var(--color-main);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--color-highlight); text-decoration: none; }

img { max-width: 100%; height: auto; vertical-align: middle; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin-top: 0; margin-bottom: 1rem; }
h1,h2,h3,h4,h5,h6 { margin-top: 0; }

/* ===== UTILITY ===== */
.fs-14 { font-size: 1.4rem !important; }
.fs-16 { font-size: 1.6rem !important; }
.fw-bold { font-weight: 700 !important; }
.bg-third { background-color: var(--color-third) !important; }
.bg-highlight { background-color: var(--color-highlight) !important; }
.text-highlight { color: var(--color-highlight) !important; }

/* ===== BLANK LOGO PLACEHOLDER ===== */
.blank-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-highlight);
  background: rgba(204,166,44,0.07);
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-highlight);
  letter-spacing: 0.15em;
}
.blank-logo-placeholder::before { content: 'LOGO'; }

/* ===== HEADER ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Topbar */
.hd_top {
  background-color: var(--color-highlight);
  padding: 8px 0;
}
.hd_top .h_web_info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hd_top .h_web_info a {
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hd_top .h_web_info a:hover { opacity: 0.85; color: #fff; }
.hd_top .h_web_info i { font-size: 1.3rem; }

/* Topbar search */
.header_search .search_content {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  min-width: 200px;
}
.header_search .search_input { flex: 1; }
.header_search .search_input input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.3rem;
  width: 100%;
  font-family: var(--font-body);
}
.header_search .search_input input::placeholder { color: rgba(255,255,255,0.8); }
.header_search .search_button .btn {
  background: none;
  border: none;
  color: #fff;
  padding: 0;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Google translate wrapper */
.topbar-section { display: flex; align-items: center; }
.hd_search { gap: 12px; }

/* Logo + nav row */
.setting-menu {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.logo-section img { max-height: 70px; width: auto; }
.logo-section .blank-logo-placeholder { width: 200px; height: 65px; }

/* ===== NAVIGATION ===== */
.header_menu { flex: 1; }
.menu-container { position: relative; display: flex; justify-content: flex-end; }

/* Desktop menu */
.menu-section { background: transparent; }
.menu-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}
.navigation__item { position: relative; }
.navigation__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-main);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  line-height: 1.4;
}
.navigation__link:hover,
.navigation__item.active > .navigation__link {
  color: var(--color-highlight);
  border-bottom-color: var(--color-highlight);
  text-decoration: none;
}

/* Dropdown */
.entry-menu.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-top: 3px solid var(--color-highlight);
  border: 1px solid #e8e8e8;
  border-top: 3px solid var(--color-highlight);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 200;
  list-style: none;
  padding: 6px 0;
  margin: 0;
}
.navigation__item:hover > .entry-menu.dropdown { display: block; }
.entry-menu.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 1.4rem;
  color: var(--color-main);
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.15s;
  font-weight: 400;
}
.entry-menu.dropdown li:last-child a { border-bottom: none; }
.entry-menu.dropdown li a:hover {
  background: #fdf5e0;
  color: var(--color-highlight);
  padding-left: 22px;
}

/* Mobile burger */
.btn-menu-mobile {
  display: none;
  font-size: 2.2rem;
  color: var(--color-main);
  cursor: pointer;
  padding: 5px 8px;
  line-height: 1;
  background: none;
  border: none;
  text-decoration: none;
}

/* Mobile sidebar nav */
.menu-top { display: none; }
.close-sidebar { display: none; }
.back-drop { display: none; }
.menu_search { display: none; }
.grower { display: none; }

/* ===== SLIDER ===== */
.slider-wrap {
  position: relative;
  overflow: hidden;
  background: #111c2d;
}
.swiper-slider-main { width: 100%; }
.swiper-slider-main .swiper-slide { position: relative; overflow: hidden; }
.swiper-slider-main .swiper-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.swiper-slider-main .swiper-slide.swiper-slide-active img {
  transform: scale(1.03);
}
.swiper-slide--wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  padding: 60px 30px 40px;
  text-align: center;
}
.swiper-slide--tile {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}
.swiper-slider-main .swiper-button-next,
.swiper-slider-main .swiper-button-prev {
  color: #fff;
  background: rgba(0,0,0,0.3);
  width: 48px; height: 48px;
  border-radius: 50%;
  transition: background 0.2s;
}
.swiper-slider-main .swiper-button-next:hover,
.swiper-slider-main .swiper-button-prev:hover { background: var(--color-highlight); }
.swiper-slider-main .swiper-button-next::after,
.swiper-slider-main .swiper-button-prev::after { font-size: 1.8rem; }
.swiper-slider-main .swiper-button-next i,
.swiper-slider-main .swiper-button-prev i { font-size: 1.8rem; }
.swiper-slider-main .swiper-pagination-bullet-active { background: var(--color-highlight); }

/* ===== SECTION GENERAL ===== */
.row-custom { width: 100%; }
.row-section {
  border-bottom: 2px solid var(--color-highlight);
  padding-bottom: 12px;
  margin-bottom: 28px;
}

.title-section {
  font-size: 2.8rem;
  color: var(--color-third);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.btn-view-all {
  font-size: 1.4rem;
  color: var(--color-highlight);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.btn-view-all:hover { color: var(--color-third); text-decoration: none; }
.btn-view-all.text-white:hover { color: rgba(255,255,255,0.8) !important; }

/* ===== INTRO SECTION ===== */
.section-intro { border-bottom: 4px solid var(--color-highlight); }
.intro-title-detail {
  font-size: 2.4rem;
  color: var(--color-third);
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 2px solid var(--color-highlight);
  padding-bottom: 12px;
}
.intro-title-detail span {
  color: var(--color-highlight);
  font-size: 2rem;
}
.article-content.text-justify { text-align: justify; }
.article-content p { font-size: 1.45rem; line-height: 1.8; color: #555; }
.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-highlight);
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-readmore:hover { background: var(--color-third); color: #fff; text-decoration: none; }

.stat-box {
  background: #fff;
  border-radius: 8px;
  padding: 20px 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--color-highlight);
  transition: transform 0.3s;
}
.stat-box:hover { transform: translateY(-4px); }
.stat-icon {
  font-size: 2.8rem;
  color: var(--color-highlight);
  margin-bottom: 8px;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-third);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 1.3rem;
  color: var(--color-text);
  font-weight: 600;
}

/* ===== NEWS SECTION ===== */
.section-news { background: #fff; }

/* Tabs */
.block-tab.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: none;
  justify-content: center;
}
.block-tab .nav-item { margin: 0; }
.block-tab .nav-link {
  display: block;
  padding: 8px 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-main);
  border: 1px solid var(--gray);
  border-radius: 25px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.block-tab .nav-link:hover,
.block-tab .nav-link.active {
  background: var(--color-highlight);
  border-color: var(--color-highlight);
  color: #fff;
}

/* Article items */
.article-item { height: 100%; }

/* Big article */
.article_intro_big .inner-image {
  overflow: hidden;
  border-radius: 6px;
}
.article_intro_big .inner-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.article_intro_big:hover .inner-image img { transform: scale(1.05); }

/* Small article - horizontal layout */
.article_intro_small .inner-image {
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}
.article_intro_small .inner-image img {
  width: 90px;
  height: 68px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.article_intro_small:hover .inner-image img { transform: scale(1.08); }

/* Medium article */
.article_intro_medium .inner-image {
  overflow: hidden;
  border-radius: 6px;
}
.article_intro_medium .inner-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.article_intro_medium:hover .inner-image img { transform: scale(1.05); }

/* Intl small */
.article_intro_small2 .inner-image {
  overflow: hidden;
  border-radius: 6px;
}
.article_intro_small2 .inner-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.article_intro_small2:hover .inner-image img { transform: scale(1.05); }

/* Article label (category badge) */
.article-label {
  margin-bottom: 6px;
}
.article-label a {
  display: inline-block;
  background: var(--color-highlight);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.article-label a:hover { background: var(--color-third); color: #fff; }

.article-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-title a {
  color: inherit;
  text-decoration: none;
}
.article-title a:hover { color: var(--color-highlight); }

.article-title-small {
  font-size: 1.4rem;
  -webkit-line-clamp: 2;
}

.article-date {
  font-size: 1.25rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-date i { color: var(--color-highlight); }

.article-desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== FEATURED SECTION ===== */
.section-featured {
  background: var(--color-third);
}
.section-featured .title-section { color: #fff; }
.section-featured .title-section span { color: var(--color-highlight); }

.swiper-featured { overflow: hidden; }
.swiper-featured .article-item { 
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.swiper-featured .article-item:hover { transform: translateY(-4px); }
.swiper-featured .inner-image img {
  height: 200px !important;
}
.swiper-featured .article-title a { color: rgba(255,255,255,0.92); }
.swiper-featured .article-title a:hover { color: var(--color-highlight); }
.swiper-featured .inner-content { padding: 12px; }
.swiper-featured .swiper-button-next,
.swiper-featured .swiper-button-prev {
  color: var(--color-highlight);
  background: rgba(255,255,255,0.15);
  width: 40px; height: 40px;
  border-radius: 50%;
  transition: background 0.2s;
}
.swiper-featured .swiper-button-next:hover,
.swiper-featured .swiper-button-prev:hover { background: var(--color-highlight); color: #fff; }
.swiper-featured .swiper-button-next::after,
.swiper-featured .swiper-button-prev::after { font-size: 1.6rem; }

/* ===== CATEGORIES SECTION ===== */
.section-categories { background: #fff; }
.category-box {
  text-decoration: none;
  color: var(--color-main);
  transition: transform 0.3s;
}
.category-box:hover { transform: translateY(-6px); text-decoration: none; color: var(--color-highlight); }
.category-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  font-size: 3rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s;
}
.category-box:hover .category-icon { box-shadow: 0 10px 28px rgba(0,0,0,0.25); }
.category-name {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

/* ===== INTERNATIONAL SECTION ===== */
.section-international { background: #f9f5e8; }

/* ===== PARTNERS SECTION ===== */
.section-partners { background: #fff; border-top: 1px solid #f0f0f0; }
.swiper-partners .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}
.partner-logo img {
  max-height: 70px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.4);
  opacity: 0.8;
  transition: all 0.3s;
}
.partner-logo img:hover { filter: none; opacity: 1; }

/* ===== FOOTER ===== */
#site-footer { background: var(--color-main); color: rgba(255,255,255,0.82); }
.footer-top { padding: 50px 0 30px; }

.footer-logo .blank-logo-placeholder { width: 160px; height: 50px; }
.footer-logo img { max-height: 55px; }

.footer-desc {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.footer-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-highlight);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(204,166,44,0.3);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.footer-contact li i {
  color: var(--color-highlight);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 1.4rem;
}

.footer-links li { margin-bottom: 8px; }
.footer-links li::before { content: "›"; color: var(--color-highlight); margin-right: 6px; }
.footer-links a {
  color: rgba(255,255,255,0.72);
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--color-highlight); padding-left: 4px; }

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--color-highlight); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 14px 0;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.footer-bottom p { margin: 0; }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--color-highlight);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(204,166,44,0.4);
  text-decoration: none;
}
#back-to-top.show { opacity: 1; visibility: visible; transform: none; }
#back-to-top:hover { background: var(--color-third); color: #fff; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.anim-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.anim-fadeIn { animation: fadeIn 0.5s ease forwards; }

/* ===== PAGE CONTENT (subpages) ===== */
.breadcrumb-section {
  background: #f5f5f5;
  padding: 10px 0;
  font-size: 1.3rem;
  border-bottom: 1px solid #e8e8e8;
}
.breadcrumb-section a { color: var(--color-text); }
.breadcrumb-section a:hover { color: var(--color-highlight); }
.breadcrumb-section .sep { margin: 0 6px; color: #bbb; }

.page-section { padding: 50px 0; }
.page-section h1 {
  font-size: 2.8rem;
  color: var(--color-third);
  margin-bottom: 24px;
  font-weight: 700;
}
.page-section p { font-size: 1.5rem; line-height: 1.8; color: #555; }

/* Contact form */
.contact-form .form-control {
  font-size: 1.4rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px 14px;
  height: auto;
  font-family: var(--font-body);
}
.contact-form .form-control:focus {
  border-color: var(--color-highlight);
  box-shadow: 0 0 0 0.2rem rgba(204,166,44,0.2);
}
.btn-gold {
  background: var(--color-highlight);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.btn-gold:hover { background: var(--color-third); color: #fff; }

/* ===== SWIPER GLOBAL ===== */
.swiper-pagination-bullet-active { background: var(--color-highlight) !important; }

/* ===== STICKY HEADER SHADOW ===== */
#site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE: Tablet ===== */
@media (max-width: 1199px) {
  .navigation__link { padding: 10px 10px; font-size: 1.35rem; }
}

@media (max-width: 991px) {
  .swiper-slider-main .swiper-slide img { height: 400px; }
  .swiper-slide--tile { font-size: 2.6rem; }
  .title-section { font-size: 2.4rem; }
}

/* ===== RESPONSIVE: Mobile ===== */
@media (max-width: 767px) {
  html { font-size: 58%; }

  /* Mobile menu sidebar */
  .btn-menu-mobile { display: block; }

  .menu-section {
    position: fixed;
    top: 0; left: -290px;
    width: 290px;
    height: 100vh;
    background: var(--color-main);
    z-index: 1050;
    overflow-y: auto;
    transition: left 0.32s ease;
    flex-direction: column;
    padding-bottom: 40px;
  }
  .menu-section.open { left: 0; }

  .back-drop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1040;
  }
  .back-drop.show { display: block; }

  .menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .menu-header { color: #fff; font-size: 1.6rem; font-weight: 700; }

  .close-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    text-decoration: none;
  }

  .menu_search {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .menu_search .search_content {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 8px 14px;
    min-width: auto;
  }
  .menu_search .search_input input { color: #fff; font-size: 1.4rem; }
  .menu_search .search_input input::placeholder { color: rgba(255,255,255,0.6); }
  .menu_search .search_button .btn { color: #fff; }

  .menu-main {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }
  .navigation__item { width: 100%; position: relative; }
  .navigation__link {
    color: rgba(255,255,255,0.9);
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-bottom-width: 1px !important;
    border-bottom-style: solid;
    border-radius: 0;
    font-size: 1.5rem;
    justify-content: space-between;
  }
  .navigation__link:hover { color: var(--color-highlight); background: rgba(255,255,255,0.04); }

  .entry-menu.dropdown {
    display: none;
    position: static;
    background: rgba(0,0,0,0.2);
    border: none;
    box-shadow: none;
    min-width: auto;
    padding: 0;
  }
  .entry-menu.dropdown.show { display: block; }
  .entry-menu.dropdown li a {
    color: rgba(255,255,255,0.75);
    padding: 11px 18px 11px 34px;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .entry-menu.dropdown li a:hover { color: var(--color-highlight); background: rgba(255,255,255,0.04); padding-left: 34px; }

  .grower {
    display: flex;
    position: absolute;
    right: 0; top: 0;
    width: 52px; height: 50px;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .grower.open { color: var(--color-highlight); }

  /* Topbar mobile */
  .hd_top .row { flex-direction: column; gap: 6px; }
  .hd_top .header_search { justify-content: flex-start !important; }
  .hd_top .search_content { min-width: 180px; }

  /* Slider mobile */
  .swiper-slider-main .swiper-slide img { height: 220px; }
  .swiper-slide--wrap { padding: 30px 16px 20px; }
  .swiper-slide--tile { font-size: 1.8rem; }

  /* Sections mobile */
  .section-intro, .section-news, .section-featured, 
  .section-categories, .section-international, .section-partners { padding: 32px 0; }
  .title-section { font-size: 2rem; }

  /* Articles mobile */
  .article_intro_big .inner-image img { height: 200px; }
  .article_intro_medium .inner-image img { height: 160px; }

  /* Footer mobile */
  .footer-top { padding: 32px 0 16px; }
  #site-footer .col-md-2, #site-footer .col-md-3 { margin-bottom: 20px; }

  /* Back to top */
  #back-to-top { bottom: 16px; right: 16px; width: 38px; height: 38px; }
}

@media (max-width: 480px) {
  .swiper-slide--tile { font-size: 1.6rem; }
  .category-icon { width: 65px; height: 65px; font-size: 2.4rem; }
  .category-name { font-size: 1.3rem; }
}

/* ===== DESKTOP NAV OVERRIDE ===== */
@media (min-width: 768px) {
  .btn-menu-mobile { display: none !important; }
  .menu-section {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    overflow: visible;
    transition: none;
    left: auto;
    flex-direction: row;
    align-items: center;
  }
  .menu-top { display: none !important; }
  .menu_search { display: none !important; }
  .back-drop { display: none !important; }
  .menu-main { flex-direction: row; align-items: center; }
  .navigation__link { color: var(--color-main); border-bottom: 3px solid transparent; }
  .navigation__link:hover { border-bottom-color: var(--color-highlight); }
}
