/*!
 * Foxiz Theme - Main CSS (Reconstructed)
 * Built from HTML analysis of favtr.com archived pages
 * Foxiz by themeruby.com
 */

/* ============================================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================================ */
:root {
  /* Color palette */
  --g-color: #e23636;
  --g-color-rgb: 226, 54, 54;
  --link-color: #e23636;
  --text-color: #1a1a1a;
  --text-light: #6b6b6b;
  --text-meta: #888;
  --border-color: #e8e8e8;
  --bg-light: #f7f7f7;
  --bg-white: #ffffff;
  --nav-bg: #ffffff;
  --nav-bg-from: #ffffff;
  --nav-bg-to: #ffffff;
  --footer-bg: #1a1a1a;
  --footer-text: #ccc;
  --heading-font: 'Encode Sans Condensed', 'Oxygen', sans-serif;
  --body-font: 'Oxygen', sans-serif;
  --max-width: 1240px;
  --max-width-wo-sb: 860px;
  --top-site-bg: #0e0f12;
  --hyperlink-line-color: var(--g-color);
  /* Spacing */
  --edge-padding: 20px;
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
}

/* Dark mode variables */
[data-theme="dark"] {
  --text-color: #e0e0e0;
  --text-light: #aaa;
  --text-meta: #888;
  --border-color: #2d2d2d;
  --bg-light: #1a1a1a;
  --bg-white: #121212;
  --nav-bg: #191c20;
  --footer-bg: #0e0f12;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--g-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1em;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  line-height: 1.3;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--text-color);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 0.95rem; }
h6 { font-size: 0.85rem; }

.h1 { font-size: 2rem; font-weight: 700; font-family: var(--heading-font); }
.h2 { font-size: 1.6rem; font-weight: 700; font-family: var(--heading-font); }
.h3 { font-size: 1.3rem; font-weight: 700; font-family: var(--heading-font); }
.h4 { font-size: 1.1rem; font-weight: 700; font-family: var(--heading-font); }
.h5 { font-size: 0.95rem; font-weight: 700; font-family: var(--heading-font); }
.h6 { font-size: 0.8rem; font-weight: 600; font-family: var(--heading-font); text-transform: uppercase; letter-spacing: 0.04em; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.hidden { display: none !important; }
.mobile-hide { display: block; }
.tablet-hide { display: block; }
.spacing { height: 8px; }

.rb-loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-top-color: var(--g-color);
  border-radius: 50%;
  animation: rbspin 0.7s linear infinite;
}

@keyframes rbspin {
  to { transform: rotate(360deg); }
}

.elementor-invisible {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   LAYOUT - SITE OUTER & WRAP
   ============================================================ */
.site-outer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
}

.site-wrap {
  flex: 1;
  width: 100%;
}

.rb-container,
.edge-padding {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--edge-padding);
  padding-right: var(--edge-padding);
}

/* ============================================================
   ELEMENTOR BASE
   ============================================================ */
.elementor {
  width: 100%;
}

.elementor-section {
  width: 100%;
  position: relative;
}

.elementor-section-boxed > .elementor-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--edge-padding);
}

.elementor-section-full_width > .elementor-container {
  max-width: 100%;
  padding: 0;
}

.elementor-top-section {
  padding: 0;
}

.elementor-inner-section {
  padding: 0;
}

.elementor-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.elementor-column-gap-no > .elementor-container,
.elementor-column-gap-no.elementor-container {
  gap: 0;
}

.elementor-column-gap-custom > .elementor-container,
.elementor-column-gap-custom.elementor-container {
  gap: 30px;
}

.elementor-widget-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.elementor-widget-wrap.elementor-element-populated {
  padding: 10px;
}

.elementor-column {
  flex: 1;
  min-width: 0;
}

.elementor-col-100 { flex: 0 0 100%; max-width: 100%; }
.elementor-col-66 { flex: 0 0 66.666%; max-width: 66.666%; }
.elementor-col-50 { flex: 0 0 50%; max-width: 50%; }
.elementor-col-33 { flex: 0 0 33.333%; max-width: 33.333%; }
.elementor-col-25 { flex: 0 0 25%; max-width: 25%; }

.elementor-background-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ============================================================
   PRIVACY BAR
   ============================================================ */
#rb-privacy {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background: var(--top-site-bg);
  color: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  max-width: 360px;
  font-size: 13px;
  box-shadow: var(--shadow-md);
}

.privacy-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-content a {
  color: var(--g-color);
}

.privacy-dismiss-btn {
  display: inline-block;
  background: var(--g-color);
  color: #fff !important;
  padding: 7px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
}

.privacy-dismiss-btn:hover {
  background: #c41e1e;
  color: #fff !important;
}

/* ============================================================
   HEADER
   ============================================================ */
.header-wrap {
  position: relative;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-color);
}

.header-wrapper.style-shadow {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

#navbar-outer {
  width: 100%;
}

.sticky-holder {
  width: 100%;
}

/* Smart sticky behavior */
.is-smart-sticky .sticky-holder {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--nav-bg);
}

.navbar-wrap {
  width: 100%;
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 20px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   LOGO
   ============================================================ */
.logo-wrap,
.mobile-logo-wrap {
  flex-shrink: 0;
}

.logo {
  display: block;
  text-decoration: none;
}

.logo img {
  max-height: 50px;
  width: auto;
  display: block;
}

.logo-default,
.logo-dark {
  max-height: 50px;
  width: auto;
}

[data-theme="dark"] .logo-default { display: none; }
[data-theme="dark"] .logo-dark { display: block; }
[data-theme="default"] .logo-dark { display: none; }
[data-theme="default"] .logo-default { display: block; }

.logo-title { display: none; }
.site-description { display: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-menu-wrap {
  flex: 1;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu > .menu-item {
  position: relative;
}

.main-menu > .menu-item > a {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.main-menu > .menu-item:hover > a,
.main-menu > .menu-item.current-menu-item > a {
  color: var(--g-color);
  border-bottom-color: var(--g-color);
}

/* Dropdown */
.main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-top: 3px solid var(--g-color);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.main-menu .menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu .sub-menu .menu-item a {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s, background 0.2s;
}

.main-menu .sub-menu .menu-item:last-child a {
  border-bottom: none;
}

.main-menu .sub-menu .menu-item a:hover {
  color: var(--g-color);
  background: var(--bg-light);
}

/* ============================================================
   MORE SECTION (DOTS MENU)
   ============================================================ */
.more-section-outer {
  position: relative;
}

.more-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--text-color);
}

.dots-icon {
  display: flex;
  gap: 3px;
  align-items: center;
}

.dots-icon span {
  width: 4px;
  height: 4px;
  background: var(--text-color);
  border-radius: 50%;
  display: block;
}

.more-section {
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  min-width: 260px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 16px;
  display: none;
  z-index: 200;
}

.more-section-outer:hover .more-section {
  display: block;
}

.collapse-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  margin-top: 12px;
}

.collapse-footer-menu-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.collapse-footer-menu-inner a {
  font-size: 12px;
  color: var(--text-light);
}

.collapse-copyright {
  font-size: 11px;
  color: var(--text-meta);
}

/* ============================================================
   HEADER RIGHT WIDGETS
   ============================================================ */
.wnav-holder {
  position: relative;
}

.header-element {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.login-toggle {
  background: var(--g-color);
  color: #fff !important;
  border-radius: 4px;
}

.login-toggle:hover {
  background: #c41e1e;
}

.is-btn {
  display: inline-flex;
  align-items: center;
}

/* Icon buttons */
.icon-holder,
.search-btn,
.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  color: var(--text-color);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.icon-holder:hover,
.search-btn:hover,
.dropdown-trigger:hover {
  background: var(--bg-light);
  color: var(--g-color);
}

.wnav-icon {
  font-size: 18px;
}

/* Notification dropdown */
.header-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  min-width: 300px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  z-index: 200;
  overflow: hidden;
  display: none;
}

.wnav-holder:hover .header-dropdown {
  display: block;
}

.notification-popup {
  max-height: 400px;
  overflow-y: auto;
}

.notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
}

.notification-header .h4 {
  font-size: 14px;
  font-weight: 700;
}

.notification-url {
  font-size: 12px;
  color: var(--g-color);
  display: flex;
  align-items: center;
  gap: 4px;
}

.notification-content {
  padding: 8px 0;
}

.scroll-holder {
  overflow-y: auto;
}

.notification-latest {
  padding: 0 8px;
}

.notification-content-title {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 8px 4px;
  font-size: 11px;
  color: var(--text-meta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Search dropdown */
.header-search-form {
  padding: 16px;
}

.rb-search-form .search-form-inner {
  display: flex;
  align-items: center;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

.rb-search-form .search-icon {
  padding: 0 10px;
  color: var(--text-meta);
}

.rb-search-form .search-text {
  flex: 1;
}

.rb-search-form .field {
  width: 100%;
  border: none;
  padding: 10px 0;
  font-size: 14px;
  outline: none;
  background: transparent;
  color: var(--text-color);
}

.rb-search-form .rb-search-submit input {
  border: none;
  background: var(--g-color);
  color: #fff;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

/* Dark mode toggle */
.dark-mode-toggle-wrap {
  position: relative;
}

.dark-mode-toggle {
  display: flex;
  align-items: center;
}

.dark-mode-slide {
  display: flex;
  gap: 4px;
  cursor: pointer;
}

.dark-mode-slide-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background 0.2s;
}

.dark-mode-slide-btn:hover {
  background: var(--bg-light);
}

.dark-mode-slide-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   MOBILE HEADER
   ============================================================ */
#header-mobile {
  display: none;
  border-top: 1px solid var(--border-color);
}

.header-mobile-wrap {
  width: 100%;
}

.mbnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.mobile-toggle-wrap {
  display: flex;
  align-items: center;
}

.mobile-menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--text-color);
}

.burger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.burger-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-logo-wrap img {
  max-height: 36px;
  width: auto;
}

/* Mobile quick view nav */
.mobile-qview {
  overflow-x: auto;
  border-top: 1px solid var(--border-color);
  -webkit-overflow-scrolling: touch;
}

.mobile-qview-inner {
  display: flex;
  list-style: none;
  padding: 0 var(--edge-padding);
  margin: 0;
  white-space: nowrap;
}

.mobile-qview-inner .menu-item a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
}

.mobile-qview-inner .menu-item a:hover {
  color: var(--g-color);
  border-bottom-color: var(--g-color);
}

/* Mobile collapse menu */
.mobile-collapse {
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  display: none;
}

.mobile-collapse.is-open {
  display: block;
}

.mobile-collapse-holder {
  padding: var(--edge-padding);
}

.mobile-collapse-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-search-form .h5 {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu-wrap {
  padding: 0;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu .menu-item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu .menu-item:last-child {
  border-bottom: none;
}

.mobile-menu .menu-item a {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

.mobile-menu .menu-item a:hover {
  color: var(--g-color);
}

.mobile-collapse-sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-login {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-login-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-meta);
}

.mobile-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mobile-social-list-title {
  width: 100%;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-meta);
}

.social-link-facebook, .social-link-twitter, .social-link-youtube,
.social-link-pinterest, .social-link-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-color);
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.social-link-facebook:hover { background: #3b5998; color: #fff; }
.social-link-twitter:hover { background: #1da1f2; color: #fff; }
.social-link-youtube:hover { background: #cd201f; color: #fff; }
.social-link-pinterest:hover { background: #bd081c; color: #fff; }
.social-link-instagram:hover { background: #e1306c; color: #fff; }

/* ============================================================
   BREAKING NEWS BAR
   ============================================================ */
.block-breaking-news {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  overflow: hidden;
  padding: 6px 0;
}

.breaking-news-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--g-color);
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 4px 0 0 4px;
}

.breaking-news-heading svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.breaking-news-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
  border-radius: 0 4px 4px 0;
  padding: 8px 50px 8px 14px;
  min-height: 36px;
}

.breaking-news-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}

.breaking-news-slider .swiper-slide {
  width: 100%;
  flex-shrink: 0;
}

.breaking-news-title {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breaking-news-title a {
  color: var(--text-color);
}

.breaking-news-title a:hover {
  color: var(--g-color);
}

.breaking-news-nav {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.breaking-news-prev,
.breaking-news-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 100%;
  cursor: pointer;
  color: var(--text-meta);
  font-size: 12px;
  transition: color 0.2s;
}

.breaking-news-prev:hover,
.breaking-news-next:hover {
  color: var(--g-color);
}

/* ============================================================
   BLOCK HEADINGS
   ============================================================ */
.block-h {
  position: relative;
  margin-bottom: 16px;
}

.heading-layout-1 .heading-inner {
  border-bottom: 3px solid var(--g-color);
  padding-bottom: 8px;
}

.heading-title {
  font-size: 16px;
  font-weight: 800;
  font-family: var(--heading-font);
  color: var(--text-color);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.heading-title span {
  position: relative;
}

.heading-title span::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--g-color);
}

.light-scheme .heading-title span::after {
  background: var(--g-color);
}

/* ============================================================
   BLOCK OVERLAY (Hero slider)
   ============================================================ */
.block-overlay {
  position: relative;
  overflow: hidden;
}

.overlay-1 {
  border-radius: 4px;
  overflow: hidden;
}

.overlay-1 .post-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.overlay-1 .swiper-container {
  width: 100%;
}

.overlay-1 .swiper-wrapper {
  display: flex;
}

.overlay-1 .swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.p-overlay-1 {
  position: relative;
}

.overlay-holder {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.p-featured {
  position: relative;
  overflow: hidden;
}

.p-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.overlay-holder:hover .p-featured img {
  transform: scale(1.03);
}

/* Overlay text */
.overlay-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.overlay-text .overlay-inner {
  padding: 20px;
}

.overlay-inner.p-gradient {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.overlay-inner .entry-title {
  margin: 0 0 8px;
}

.overlay-inner .entry-title a {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.35;
}

.overlay-inner .entry-title a:hover {
  color: rgba(255,255,255,0.85);
}

.overlay-inner .entry-summary {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Big overlay slider */
.overlay-1.ecat-size-big .p-featured img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Overlay grid */
.block-overlay-2 .overlay-holder {
  border-radius: 4px;
  margin-bottom: 8px;
}

.block-overlay-2 .p-featured img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.block-overlay-2 .overlay-inner .entry-title a {
  font-size: 0.95rem;
}

/* Slider pagination */
.slider-pagination {
  text-align: center;
  padding: 8px 0;
}

.slider-pagination-top {
  position: absolute;
  bottom: 8px;
  right: 12px;
  z-index: 10;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  margin: 0 3px;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.swiper-pagination-bullet-active {
  background: #fff;
  width: 20px;
  border-radius: 4px;
}

/* ============================================================
   BLOCK LIST - Article lists
   ============================================================ */
.block-wrap {
  position: relative;
  margin-bottom: 24px;
}

.block-inner {
  display: flex;
  flex-direction: column;
}

.block-big.block-list .block-inner {
  gap: 20px;
}

/* p-list items */
.p-list {
  display: flex;
  gap: 0;
}

.p-list-1 {
  flex-direction: column;
}

.list-holder {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-feat-holder {
  position: relative;
  width: 100%;
}

.feat-holder {
  position: relative;
}

.list-feat-holder .feat-holder {
  border-radius: 4px;
  overflow: hidden;
}

.list-feat-holder .p-featured img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Categories badge on image */
.p-categories {
  position: absolute;
  z-index: 5;
}

.p-top {
  top: 10px;
  left: 10px;
}

.p-category {
  display: inline-block;
  background: var(--g-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.p-category:hover {
  background: #c41e1e;
  color: #fff;
}

/* p-content */
.p-content {
  flex: 1;
}

.p-list-1 .p-content .entry-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.p-content .entry-title a {
  color: var(--text-color);
  transition: color 0.2s;
}

.p-content .entry-title a:hover {
  color: var(--g-color);
}

.entry-summary {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ============================================================
   BLOCK GRID
   ============================================================ */
.block-grid .block-inner {
  display: grid;
  gap: 20px;
}

/* Grid column variants */
.rb-col-1 { --rb-cols: 1; }
.rb-col-2 { --rb-cols: 2; }
.rb-col-3 { --rb-cols: 3; }
.rb-col-4 { --rb-cols: 4; }
.rb-col-5 { --rb-cols: 5; }
.rb-col-6 { --rb-cols: 6; }

.rb-columns.rb-col-2 > .block-inner,
.rb-columns.rb-col-2 .block-inner:not(.no-grid) {
  grid-template-columns: repeat(2, 1fr);
}

.rb-columns.rb-col-3 > .block-inner,
.rb-columns.rb-col-3 .block-inner:not(.no-grid) {
  grid-template-columns: repeat(3, 1fr);
}

.rb-columns.rb-col-4 > .block-inner,
.rb-columns.rb-col-4 .block-inner:not(.no-grid) {
  grid-template-columns: repeat(4, 1fr);
}

/* Gap variants */
.is-gap-7 { --block-gap: 7px; }
.is-gap-10 { --block-gap: 10px; }
.is-gap-15 { --block-gap: 15px; }
.is-gap-custom { --block-gap: 20px; }

.rb-columns .block-inner {
  gap: var(--block-gap, 20px);
}

.block-grid .block-inner {
  display: grid;
}

.block-grid.rb-col-2 .block-inner { grid-template-columns: repeat(2, 1fr); }
.block-grid.rb-col-3 .block-inner { grid-template-columns: repeat(3, 1fr); }
.block-grid.rb-col-4 .block-inner { grid-template-columns: repeat(4, 1fr); }

/* block-grid-small-1: 3 col */
.block-grid-small-1 .block-inner {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* p-grid small */
.p-grid {
  display: flex;
  flex-direction: column;
}

.p-grid-small-1 {
  gap: 8px;
}

.p-grid-small-1 .p-featured img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 4px;
}

.p-grid-small-1 .p-content {
  padding-top: 8px;
}

.p-grid-small-1 .entry-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
}

/* ============================================================
   BLOCK SMALL LIST (Notification/sidebar lists)
   ============================================================ */
.block-list-small-2 .block-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-list-small-2 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.p-list-small-2:last-child {
  border-bottom: none;
}

.p-list-small-2 .feat-holder {
  flex-shrink: 0;
  width: 80px;
}

.p-list-small-2 .p-featured {
  border-radius: 4px;
  overflow: hidden;
}

.p-list-small-2 .p-featured img {
  width: 80px;
  height: 60px;
  object-fit: cover;
}

.p-list-small-2 .ratio-v1 img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.p-list-small-2 .entry-title {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 4px;
}

/* p-middle alignment */
.p-middle .p-list-small-2 {
  align-items: center;
}

/* ============================================================
   POST META
   ============================================================ */
.p-meta {
  margin-top: 8px;
}

.meta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.is-meta .meta-el {
  font-size: 12px;
  color: var(--text-meta);
  display: flex;
  align-items: center;
  gap: 4px;
}

.meta-el a {
  color: var(--text-meta);
  transition: color 0.2s;
}

.meta-el a:hover {
  color: var(--g-color);
}

.meta-category a {
  color: var(--g-color) !important;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.meta-bold a {
  font-weight: 700;
}

.meta-author a {
  font-weight: 600;
  color: var(--text-color) !important;
}

.meta-author a:hover {
  color: var(--g-color) !important;
}

.meta-avatar {
  flex-shrink: 0;
}

.meta-avatar img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================================
   BOOKMARK
   ============================================================ */
.rb-bookmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  font-size: 13px;
  color: var(--text-meta);
  transition: background 0.2s, color 0.2s;
  margin-left: auto;
}

.rb-bookmark:hover {
  background: var(--g-color);
  color: #fff;
}

.bookmarked-icon {
  display: none;
  color: var(--g-color);
}

.is-bookmarked .bookmarked-icon {
  display: block;
}

.is-bookmarked .rbi-bookmark {
  display: none;
}

.has-bookmark .meta-inner {
  align-items: center;
}

/* Bookmark info bar */
.bookmark-info {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--top-site-bg);
  color: #fff;
  border-radius: 8px;
  padding: 14px 20px;
  z-index: 9998;
  transition: bottom 0.3s ease;
  max-width: 400px;
  width: calc(100% - 40px);
}

.bookmark-info.is-active {
  bottom: 20px;
}

.bookmark-holder {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bookmark-featured {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
}

.bookmark-inner {
  flex: 1;
}

.bookmark-title {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.bookmark-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.bookmark-undo {
  color: var(--g-color);
  font-weight: 700;
  cursor: pointer;
}

/* ============================================================
   QUICK LINKS (qlinks)
   ============================================================ */
.block-qlinks {
  background: var(--bg-light);
  border-radius: 6px;
  padding: 16px;
}

.block-qlinks-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qlinks-header .qlinks-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-meta);
}

.qlinks-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qlink {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
}

.qlink:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qlink a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  transition: color 0.2s;
}

.qlink a:hover {
  color: var(--g-color);
}

/* qlinks-layout-2 */
.qlinks-layout-2 {
  border: 1px solid var(--border-color);
}

/* qlinks-underline */
.qlinks-underline .qlink {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   CATEGORIES BLOCK
   ============================================================ */
.block-categories .block-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cbox {
  background: var(--bg-light);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cbox:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cbox-inner {
  position: relative;
}

.cbox-featured {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.cbox-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.cbox:hover .cbox-featured img {
  transform: scale(1.05);
}

.cbox-body {
  padding: 12px;
}

.cbox-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 4px;
}

.cbox-content {
  font-size: 12px;
  color: var(--text-light);
}

.cbox-count {
  font-size: 11px;
  color: var(--text-meta);
  display: flex;
  align-items: center;
  gap: 4px;
}

.is-cbox-30 { border-top: 3px solid #e23636; }
.is-cbox-32 { border-top: 3px solid #3b82f6; }
.is-cbox-54 { border-top: 3px solid #10b981; }
.is-cbox-55 { border-top: 3px solid #f59e0b; }

/* ============================================================
   BLOCK LIST 2 (Sidebar-style list)
   ============================================================ */
.block-list-2.featured-left .block-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-list-2 {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.p-list-2:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-list-2:first-child {
  flex-direction: column;
}

.p-list-2:first-child .feat-holder {
  width: 100%;
}

.p-list-2:first-child .p-featured img {
  width: 100%;
  aspect-ratio: 16/9;
}

.p-list-2 .feat-holder {
  flex-shrink: 0;
  width: 100px;
  border-radius: 4px;
  overflow: hidden;
}

.p-list-2 .p-featured img {
  width: 100px;
  height: 75px;
  object-fit: cover;
}

.p-list-2 .entry-title {
  font-size: 14px;
  line-height: 1.4;
}

/* ============================================================
   SIDEBAR (is-sidebar)
   ============================================================ */
.is-sidebar {
  border-left: 1px solid var(--border-color);
  padding-left: 24px;
}

.is-sidebar .elementor-widget-wrap.elementor-element-populated {
  padding: 0 0 0 20px;
}

/* Weather widget */
.rb-weather-wrap {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.rb-w-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-meta);
  margin-bottom: 12px;
}

.rb-w-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.rb-w-big-icon {
  width: 60px;
  height: 60px;
}

.rb-w-big-icon svg {
  width: 100%;
  height: 100%;
}

.rb-w-units {
  text-align: right;
}

.rb-w-units span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1;
}

.ruby-degrees {
  font-size: 1rem !important;
  vertical-align: top;
}

.rb-w-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.rb-header-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-color);
}

.rb-w-desc {
  font-size: 12px;
  color: var(--text-light);
}

.rb-weather-highlow {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

.rb-w-humidity {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
}

.ruby-weather-wind {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
}

.col-left, .col-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.icon-hight, .icon-low, .icon-humidity, .icon-windy {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.icon-hight svg, .icon-low svg, .icon-humidity svg, .icon-windy svg {
  width: 16px;
  height: 16px;
}

.w-forecast-wrap {
  display: flex;
  gap: 8px;
}

.forecast-day-5 {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.w-forecast-icon {
  width: 28px;
  height: 28px;
}

.w-forecast-icon svg {
  width: 100%;
  height: 100%;
}

.w-forecast-temp {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-wrap {
  text-align: center;
  padding: 20px 0;
}

.pagination-infinite .infinite-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.short-pagination .pagination-wrap {
  padding: 10px 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-wrap {
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: 40px;
  position: relative;
}

.footer-inner {
  padding: 0;
}

.footer-inner.has-border {
  border-top: 3px solid var(--g-color);
}

.footer-copyright {
  padding: 24px 0;
}

.copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright p {
  margin: 0;
  font-size: 13px;
  color: var(--footer-text);
}

.copyright-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.copyright-menu .menu-item a {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.copyright-menu .menu-item a:hover {
  color: #fff;
}

/* Left dot decoration */
.left-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--g-color);
}

/* ============================================================
   ICON FONT (rbi = Ruby Block Icons)
   Fallback for custom icon font — use Unicode/pseudo
   ============================================================ */
[class^="rbi-"],
[class*=" rbi-"] {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rbi-search::before { content: "🔍"; font-size: 0.85em; }
.rbi-notification::before { content: "🔔"; font-size: 0.85em; }
.rbi-bookmark::before { content: "🔖"; font-size: 0.85em; }
.rbi-bookmark-fill::before { content: "🔖"; font-size: 0.85em; }
.rbi-facebook::before { content: "f"; font-weight: 700; }
.rbi-twitter::before { content: "t"; font-weight: 700; }
.rbi-youtube::before { content: "▶"; }
.rbi-pinterest::before { content: "p"; font-weight: 700; }
.rbi-instagram::before { content: "i"; font-weight: 700; }
.rbi-clock::before { content: "🕐"; font-size: 0.85em; }
.rbi-cright::before { content: "›"; font-size: 1.2em; font-weight: 700; }
.rbi-prev::before { content: "‹"; font-size: 1.4em; font-weight: 700; }
.rbi-next::before { content: "›"; font-size: 1.4em; font-weight: 700; }

/* ============================================================
   USER POPUP / LOGIN FORM
   ============================================================ */
#rb-user-popup-form {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
}

#rb-user-popup-form.mfp-hide {
  display: none;
}

.rb-user-popup-form.mfp-animation {
  animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.logo-popup-outer {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.logo-popup {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-popup-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.logo-popup-logo img {
  max-height: 50px;
  width: auto;
}

.logo-popup-heading {
  font-size: 1.5rem;
}

.logo-popup-description {
  font-size: 14px;
  color: var(--text-meta);
  margin: 0;
}

.user-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.user-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.user-form .input {
  width: 100%;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.user-form .input:focus {
  border-color: var(--g-color);
}

.login-remember label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.button.button-primary {
  width: 100%;
  background: var(--g-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.button.button-primary:hover {
  background: #c41e1e;
}

.user-form-footer {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.user-form-footer a {
  color: var(--g-color);
}

/* ============================================================
   SWIPER (Static fallback — JS-powered normally)
   ============================================================ */
.swiper-container {
  overflow: hidden;
  position: relative;
}

.pre-load .swiper-wrapper {
  /* Pre-load state: show all slides stacked */
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.4s ease;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

/* ============================================================
   SINGLE POST LAYOUT
   ============================================================ */
.single-post .site-wrap {
  padding: 30px 0;
}

.single-content-wrap {
  max-width: var(--max-width-wo-sb);
  margin: 0 auto;
  padding: 0 var(--edge-padding);
}

.entry-header {
  margin-bottom: 20px;
}

.entry-header .entry-title {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}

.entry-content h2 { font-size: 1.5rem; margin: 1.5em 0 0.75em; }
.entry-content h3 { font-size: 1.25rem; margin: 1.25em 0 0.5em; }
.entry-content p { margin-bottom: 1.2em; }
.entry-content img { border-radius: 6px; margin: 1em 0; }
.entry-content a { color: var(--g-color); text-decoration: underline; text-underline-offset: 2px; }

.featured-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* ============================================================
   CATEGORY / ARCHIVE PAGE
   ============================================================ */
.category-header {
  padding: 30px 0 20px;
  border-bottom: 3px solid var(--g-color);
  margin-bottom: 30px;
}

.archive-title {
  font-size: 1.8rem;
  font-weight: 800;
}

/* ============================================================
   COUNTER / STATS
   ============================================================ */
.counter-el {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
}

.counter-el .count {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--g-color);
}

.counter-el .label {
  font-size: 13px;
  color: var(--text-meta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#rb-back-top,
.back-top-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--g-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 999;
  font-size: 16px;
  box-shadow: var(--shadow-md);
}

.is-backtop #rb-back-top {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   LIGHT SCHEME VARIANT
   ============================================================ */
.light-scheme {
  background: var(--bg-light);
  border-radius: 6px;
  padding: 20px;
}

.light-scheme .heading-title {
  color: var(--text-color);
}

/* ============================================================
   RB SECTION
   ============================================================ */
.rb-section {
  padding: 0;
}

/* ============================================================
   SEARCH HEADER
   ============================================================ */
.search-header {
  position: relative;
  padding: 60px 0;
  background: var(--top-site-bg);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.search-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.search-header > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   MENU ANIMATION
   ============================================================ */
.menu-ani-1 .main-menu > .menu-item > a {
  transition: color 0.25s ease, border-color 0.25s ease;
}

/* ============================================================
   HOVER ANIMATION
   ============================================================ */
.hover-ani-1 .p-featured img {
  transition: transform 0.35s ease;
}

.hover-ani-1 .p-wrap:hover .p-featured img {
  transform: scale(1.04);
}

/* ============================================================
   TOP SITE AD AREA
   ============================================================ */
.top-site-ad {
  background: var(--top-site-bg);
  padding: 10px 0;
  text-align: center;
}

/* ============================================================
   DARK OPACITY OVERLAY
   ============================================================ */
.dark-opacity .p-gradient {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}

/* ============================================================
   WP CLASSES
   ============================================================ */
.wp-post-image {
  max-width: 100%;
  height: auto;
}

.attachment-foxiz_crop_g1 {
  object-fit: cover;
}

/* ============================================================
   CONTACT FORM 7
   ============================================================ */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wpcf7-form-control {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.wpcf7-form-control:focus {
  border-color: var(--g-color);
}

.wpcf7-submit {
  background: var(--g-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.wpcf7-submit:hover {
  background: #c41e1e;
}

/* ============================================================
   ANONYMOUS POST FORM (Favori Gönder)
   ============================================================ */
.ap-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 10px;
}

/* ============================================================
   SECTION SPACING
   ============================================================ */
.elementor-section-boxed {
  padding-top: 30px;
  padding-bottom: 30px;
}

.elementor-section-boxed:first-child {
  padding-top: 20px;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --max-width: 100%;
  }

  .elementor-col-66 { flex: 0 0 60%; max-width: 60%; }
  .elementor-col-33 { flex: 0 0 40%; max-width: 40%; }

  .main-menu > .menu-item > a {
    padding: 0 10px;
    font-size: 13px;
  }

  .block-grid-small-1 .block-inner,
  .rb-columns.rb-col-3 .block-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .block-categories .block-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .elementor-hidden-tablet {
    display: none !important;
  }

  /* rb-tcol */
  .rb-tcol-2 .block-inner { grid-template-columns: repeat(2, 1fr); }
  .rb-tcol-1 .block-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 767px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --edge-padding: 16px;
  }

  body {
    font-size: 16px;
  }

  /* Hide desktop nav, show mobile */
  #navbar-outer .navbar-wrap .navbar-inner {
    display: none;
  }

  #header-mobile {
    display: block;
  }

  .elementor-hidden-mobile {
    display: none !important;
  }

  /* Stack all columns */
  .elementor-col-66,
  .elementor-col-33,
  .elementor-col-50,
  .elementor-col-25 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .elementor-container {
    flex-direction: column;
  }

  .is-sidebar {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding-left: 0;
    padding-top: 24px;
    margin-top: 24px;
  }

  .is-sidebar .elementor-widget-wrap.elementor-element-populated {
    padding: 0;
  }

  /* Grids → single column */
  .block-grid-small-1 .block-inner,
  .rb-columns.rb-col-3 .block-inner,
  .rb-columns.rb-col-2 .block-inner,
  .rb-columns.rb-col-4 .block-inner {
    grid-template-columns: 1fr;
  }

  .rb-mcol-1 .block-inner { grid-template-columns: 1fr; }
  .rb-mcol-2 .block-inner { grid-template-columns: repeat(2, 1fr); }

  .block-categories .block-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Breaking news */
  .block-breaking-news {
    flex-wrap: wrap;
  }

  .breaking-news-heading {
    border-radius: 4px;
    margin-bottom: 4px;
  }

  .breaking-news-slider {
    border-radius: 4px;
    width: 100%;
  }

  /* Overlay text */
  .overlay-inner .entry-title a {
    font-size: 1rem;
  }

  /* Footer */
  .copyright-inner {
    flex-direction: column;
    text-align: center;
  }

  .copyright-menu {
    justify-content: center;
  }

  /* Overlay */
  .overlay-1.ecat-size-big .p-featured img {
    aspect-ratio: 4/3;
  }

  /* Mobile hide */
  .mobile-hide { display: none !important; }
  .tablet-hide { display: none !important; }

  /* Header */
  .header-wrap {
    border-bottom: 1px solid var(--border-color);
  }

  .mbnav {
    padding: 0 var(--edge-padding);
  }

  /* Logo on mobile */
  .mobile-logo-wrap img {
    max-height: 32px;
  }

  /* Privacy bar */
  #rb-privacy {
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
  }

  /* Popup */
  .logo-popup-outer {
    margin: 16px;
    padding: 24px;
  }

  /* Weather */
  .rb-weather-wrap {
    padding: 12px;
  }

  .rb-w-units span {
    font-size: 2rem;
  }

  /* Single post */
  .entry-header .entry-title {
    font-size: 1.5rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .block-categories .block-inner {
    grid-template-columns: 1fr;
  }

  .copyright-menu {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================================
   SPECIAL PAGE BODY CLASSES
   ============================================================ */
/* Home page */
body.home .site-wrap {
  padding-top: 0;
}

/* Single post body class */
body.single-post .site-wrap {
  padding: 20px 0;
}

/* ============================================================
   IS-HD HEADER VARIANTS
   ============================================================ */
.is-hd-1 .navbar-wrap {
  border-bottom: 1px solid var(--border-color);
}

/* ============================================================
   SYNC BOOKMARKS
   ============================================================ */
.sync-bookmarks .rb-bookmark {
  display: flex;
}

/* ============================================================
   WC-RES-LIST (WooCommerce response list)
   ============================================================ */
.wc-res-list {
  /* list display class */
}

/* ============================================================
   ELEMENTOR PAGE TEMPLATE
   ============================================================ */
.elementor-page {
  min-height: calc(100vh - 71px - 100px);
}

/* ============================================================
   BACK-TOP
   ============================================================ */
body.is-backtop #rb-back-top {
  display: flex;
}

/* ============================================================
   FEATURED IMAGE RATIO VARIANTS
   ============================================================ */
.ratio-v1 img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
}

/* ============================================================
   P-HIGHLIGHT (Hero post)
   ============================================================ */
.p-highlight.p-overlay-1 .overlay-holder {
  min-height: 320px;
  border-radius: 6px;
}

.p-highlight.p-overlay-1 .p-featured {
  height: 100%;
  min-height: 320px;
}

.p-highlight.p-overlay-1 .p-featured img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* ============================================================
   P-WRAP hover effect wrapper
   ============================================================ */
.p-wrap {
  position: relative;
  overflow: hidden;
}

/* ============================================================
   P-FLINK (featured link overlay)
   ============================================================ */
.p-flink {
  display: block;
  position: relative;
}

/* ============================================================
   AVATAR (Post author avatar)
   ============================================================ */
.avatar {
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================================
   NOTIFICATION ICON DOT
   ============================================================ */
.notification-info {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: var(--g-color);
  border-radius: 50%;
  border: 2px solid #fff;
}

.notification-icon-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   ECAT BACKGROUND VARIANTS
   ============================================================ */
.ecat-bg-1 {
  /* Category color: primary */
}

/* ============================================================
   FEATURED-LEFT layout variant
   ============================================================ */
.featured-left .list-holder {
  flex-direction: row;
  gap: 16px;
}

.featured-left .list-feat-holder {
  flex: 0 0 45%;
}

.featured-left .p-content {
  flex: 1;
}

.featured-left .p-content .entry-title {
  font-size: 1.1rem;
}

/* ============================================================
   LIGHT SCHEME block adjustments
   ============================================================ */
.block-grid-1.light-scheme .block-inner {
  background: var(--bg-light);
  border-radius: 6px;
  padding: 20px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ============================================================
   SOCIAL ICONS (Elementor)
   ============================================================ */
.elementor-social-icons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.elementor-grid-item {
  display: flex;
}

/* ============================================================
   GENERAL SMOOTH HOVER TRANSITIONS
   ============================================================ */
a, button, input[type="submit"] {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

/* ============================================================
   PRINT RESET
   ============================================================ */
@media print {
  .header-wrap,
  .footer-wrap,
  #rb-privacy,
  .bookmark-info,
  .dark-mode-toggle,
  #rb-back-top {
    display: none !important;
  }
}
