/*
Theme Name: RealismThrift Export
Theme URI: https://realismthrift.com
Author: RealismThrift Export Co., Ltd
Author URI: https://realismthrift.com
Description: Professional B2B wholesale second-hand clothes, shoes & bags export website theme. Designed for overseas wholesalers with multi-language support and AI SEO optimization.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: realismthrift
Tags: business, b2b, wholesale, export, multilingual, seo

Design System:
- Primary (Crimson Red): #C0392B
- Secondary (Jet Black): #1A1A1A
- Accent (Gold): #F0B429
- Background: #FFFFFF
- Off-White: #F5F5F0
- Fonts: Montserrat (headings) + Open Sans (body)
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
}

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

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

ul, ol {
  list-style: none;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.rt-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .rt-container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .rt-container { padding: 0 2rem; }
}

.rt-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.rt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rt-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .rt-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .rt-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .rt-grid-2, .rt-grid-3, .rt-grid-4 { grid-template-columns: 1fr; }
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.rt-section-badge {
  display: inline-block;
  background: rgba(192, 57, 43, 0.1);
  color: #F0B429;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rt-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}

.rt-section-divider {
  width: 3rem;
  height: 4px;
  background: #C0392B;
  margin-bottom: 1.5rem;
}

.rt-section-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.rt-btn-primary {
  display: inline-block;
  background: #C0392B;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.rt-btn-primary:hover {
  background: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
  color: #ffffff;
}

.rt-btn-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.rt-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* =============================================
   TOP BAR
   ============================================= */
.rt-topbar {
  background: #1A1A1A;
  color: #ffffff;
  padding: 0.375rem 0;
  font-size: 0.75rem;
  overflow: hidden;
}

.rt-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rt-topbar-brand {
  color: #F0B429;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.rt-topbar-ticker {
  flex: 1;
  overflow: hidden;
  display: none;
}

@media (min-width: 640px) {
  .rt-topbar-ticker { display: block; }
}

.rt-topbar-ticker-text {
  display: inline-block;
  white-space: nowrap;
  color: #cccccc;
  animation: ticker 35s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.rt-topbar-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.rt-topbar-links a {
  color: #cccccc;
  transition: color 0.2s;
  font-size: 0.75rem;
}

.rt-topbar-links a:hover { color: #F0B429; }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.rt-header-logo-bar {
  background: #ffffff;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.rt-header-logo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rt-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.rt-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #C0392B;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.125rem;
}

.rt-logo-text-primary {
  color: #C0392B;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.rt-logo-text-secondary {
  color: #1A1A1A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rt-search-form {
  display: flex;
  align-items: center;
  border: 2px solid #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  transition: border-color 0.2s;
}

.rt-search-form:focus-within {
  border-color: #C0392B;
}

.rt-search-form input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: none;
  outline: none;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

.rt-search-form button {
  background: #C0392B;
  color: #ffffff;
  border: none;
  padding: 0.5rem 0.875rem;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1rem;
}

.rt-search-form button:hover { background: #a93226; }

.rt-inquiry-btn {
  background: #C0392B;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.rt-inquiry-btn:hover {
  background: #a93226;
  color: #ffffff;
}

/* Main Navigation — old .rt-nav (kept for backward compat) */
.rt-nav {
  background: #C0392B;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(192,57,43,0.3);
}

/* =============================================
   NEW MAINNAV — used by header.php v6+
   All rules use !important to beat theme resets
   ============================================= */
.rt-mainnav {
  background: #C0392B !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  box-shadow: 0 2px 8px rgba(192,57,43,.35) !important;
}
.rt-mainnav .rt-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex !important;
  align-items: stretch !important;
  position: relative;
}
/* The <ul> that WordPress or fallback generates */
.rt-nav-list,
ul.rt-nav-list {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
  background: transparent !important;
}
/* Each <li> */
.rt-nav-list > li,
ul.rt-nav-list > li {
  display: flex !important;
  align-items: stretch !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  float: none !important;
}
/* Each <a> */
.rt-nav-list > li > a,
ul.rt-nav-list > li > a {
  display: flex !important;
  align-items: center !important;
  padding: .875rem 1.1rem !important;
  color: #fff !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  letter-spacing: .03em !important;
  white-space: nowrap !important;
  transition: background .2s !important;
  border-bottom: 3px solid transparent !important;
  background: transparent !important;
}
.rt-nav-list > li > a:hover,
.rt-nav-list > li.current-menu-item > a,
.rt-nav-list > li.current_page_item > a,
ul.rt-nav-list > li > a:hover,
ul.rt-nav-list > li.current-menu-item > a {
  background: rgba(0,0,0,.2) !important;
  border-bottom-color: #F0B429 !important;
  color: #fff !important;
}
/* Hide any sub-menus WordPress might inject */
.rt-nav-list .sub-menu,
ul.rt-nav-list .sub-menu {
  display: none !important;
}
/* Hamburger button */
.rt-hamburger {
  display: none !important;
  background: none !important;
  border: none !important;
  color: #fff !important;
  font-size: 1.5rem !important;
  padding: .75rem 1rem !important;
  cursor: pointer !important;
  margin-left: auto !important;
}
@media (max-width: 900px) {
  .rt-hamburger { display: block !important; }
  .rt-nav-list,
  ul.rt-nav-list {
    display: none !important;
    flex-direction: column !important;
    width: 100% !important;
    background: #C0392B !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.3) !important;
  }
  .rt-nav-list.is-open,
  ul.rt-nav-list.is-open {
    display: flex !important;
  }
  .rt-nav-list > li,
  ul.rt-nav-list > li { width: 100% !important; }
  .rt-nav-list > li > a,
  ul.rt-nav-list > li > a {
    padding: .75rem 1.5rem !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
    border-left: 3px solid transparent !important;
  }
  .rt-nav-list > li > a:hover,
  ul.rt-nav-list > li > a:hover {
    border-left-color: #F0B429 !important;
  }
}

.rt-nav-inner {
  display: flex;
  align-items: stretch;
}

/* WordPress wp_nav_menu 生成的 ul 容器 */
ul.rt-nav-menu {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

ul.rt-nav-menu > li.rt-nav-item {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rt-nav-item {
  position: relative;
}

.rt-nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.875rem 1rem;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 0.2s;
}

.rt-nav-link:hover,
.rt-nav-item.current-menu-item > .rt-nav-link,
.rt-nav-item.current-menu-ancestor > .rt-nav-link {
  background: rgba(0,0,0,0.2);
  color: #ffffff;
}

.rt-nav-link .arrow { display: none; }

/* Dropdown — hidden, no longer used */
.rt-dropdown {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-top: 3px solid #C0392B;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 200;
}

.rt-nav-item:hover .rt-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.rt-dropdown a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  color: #444;
  font-family: 'Open Sans', sans-serif;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.15s;
}

.rt-dropdown a:last-child { border-bottom: none; }

.rt-dropdown a:hover {
  background: #fff5f5;
  color: #C0392B;
  padding-left: 1.25rem;
}

/* Mobile Nav Toggle */
.rt-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  margin-left: auto;
}

@media (max-width: 768px) {
  .rt-mobile-toggle { display: block; }
  .rt-nav-inner { display: none; }
  .rt-nav-inner.open { display: flex; flex-direction: column; }
  ul.rt-nav-menu { flex-direction: column; width: 100%; }
  ul.rt-nav-menu > li.rt-nav-item { width: 100%; }
  ul.rt-nav-menu > li.rt-nav-item > .rt-nav-link { width: 100%; justify-content: flex-start; }
  .rt-dropdown { display: none !important; }
  .rt-header-logo-bar-inner { flex-wrap: wrap; }
  .rt-search-form { max-width: 100%; order: 3; width: 100%; }
}

/* =============================================
   HERO BANNER
   ============================================= */
.rt-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  /* 默认深色背景；如果用户在后台设置了背景图，将通过 PHP inline style 覆盖 */
  background-color: #1A1A1A;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.rt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.92) 0%, rgba(26,26,26,0.80) 50%, rgba(61,0,0,0.55) 100%);
}

.rt-hero-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #C0392B;
}

.rt-hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  max-width: 680px;
}

.rt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  color: #F0B429;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.rt-hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C0392B;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.rt-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.rt-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  font-family: 'Open Sans', sans-serif;
}

.rt-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.rt-hero-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-family: 'Open Sans', sans-serif;
}

.rt-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.rt-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  max-width: 600px;
}

.rt-hero-stat {
  background: rgba(0,0,0,0.4);
  padding: 1rem;
  text-align: center;
}

.rt-hero-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #F0B429;
  display: block;
}

.rt-hero-stat-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
  font-family: 'Open Sans', sans-serif;
}

@media (max-width: 640px) {
  .rt-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .rt-hero { background-attachment: scroll; }
}

/* =============================================
   HERO BANNER — 背景图片全屏覆盖
   ============================================= */

/*
 * 重要说明：
 * Hero 背景图是通过 PHP 在 <section> 标签上添加 inline style="background-image: url(...)" 实现的。
 * CSS 中不要对 background-image 使用 !important，否则会覆盖 inline style。
 * background-size/position/repeat 可以保留 !important 确保图片尺寸正确。
 */
.rt-hero {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  /* background-image 不设置，由 PHP inline style 控制 */
}

/* =============================================
   METASLIDER 独立展示区块（Hero 下方）
   ============================================= */
.rt-slider-showcase {
  background: #111;
  padding: 2rem 0;
}

.rt-slider-showcase .metaslider {
  width: 100% !important;
  margin: 0 auto !important;
}

.rt-slider-showcase .metaslider img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
}

.rt-slider-showcase .metaslider .flexslider {
  border: none !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
  margin: 0 !important;
}

/* =============================================
   TRUST BANNER
   ============================================= */
.rt-trust-banner {
  background: #1A1A1A;
  padding: 1rem 0;
}

.rt-trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.rt-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-family: 'Open Sans', sans-serif;
}

.rt-trust-item .icon {
  color: #F0B429;
  font-size: 1rem;
}

/* =============================================
   PRODUCT CATEGORIES
   ============================================= */
.rt-products {
  padding: 5rem 0;
  background: #ffffff;
}

.rt-products-header {
  text-align: center;
  margin-bottom: 2rem;
}

.rt-quality-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.rt-quality-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: #555;
  font-family: 'Open Sans', sans-serif;
}

.rt-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .rt-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .rt-products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

.rt-product-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.rt-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.rt-product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.rt-product-card:hover img { transform: scale(1.05); }

.rt-product-card-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  background: #1A1A1A;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  letter-spacing: 0.08em;
}

.rt-product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(192,57,43,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.rt-product-card:hover .rt-product-card-overlay { opacity: 1; }

.rt-product-card-overlay span {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.rt-product-card-title {
  padding: 0.75rem;
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #1A1A1A;
  text-align: center;
}

.rt-products-cta {
  text-align: center;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.rt-about {
  padding: 5rem 0;
  background: #F5F5F0;
}

.rt-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .rt-about-inner { grid-template-columns: 1fr; }
}

.rt-about-img-wrap {
  position: relative;
}

.rt-about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.rt-about-img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: #C0392B;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 2px;
}

.rt-about-deco-1 {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: #1A1A1A;
  border-radius: 4px;
  z-index: -1;
}

.rt-about-deco-2 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 4rem;
  height: 4rem;
  background: rgba(192,57,43,0.2);
  border-radius: 4px;
  z-index: -1;
}

.rt-about-subtitle {
  color: #F0B429;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.rt-about-text {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-family: 'Open Sans', sans-serif;
}

.rt-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.rt-stat-box {
  background: #ffffff;
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
  border: 1px solid #e5e5e5;
}

.rt-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #F0B429;
  display: block;
}

.rt-stat-label {
  font-size: 0.8125rem;
  color: #777;
  font-family: 'Open Sans', sans-serif;
  margin-top: 0.25rem;
}

/* =============================================
   FEATURES / WHY CHOOSE US
   ============================================= */
.rt-features {
  padding: 5rem 0;
  background: #ffffff;
}

.rt-features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .rt-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .rt-features-grid { grid-template-columns: 1fr; }
}

.rt-feature-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 1.5rem;
  border: 1px solid #eeeeee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s;
}

.rt-feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: rgba(192,57,43,0.3);
  transform: translateY(-2px);
}

.rt-feature-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(192,57,43,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #F0B429;
}

.rt-feature-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

.rt-feature-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}

/* =============================================
   PARTNERS & HOW TO ORDER
   ============================================= */
.rt-partners {
  padding: 5rem 0;
  background: #111111;
  color: #ffffff;
}

.rt-partners-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.rt-partners-header .rt-section-title { color: #ffffff; }

.rt-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .rt-partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .rt-partners-grid { grid-template-columns: 1fr; }
}

.rt-partner-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 1.25rem;
  transition: all 0.2s;
}

.rt-partner-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(240,180,41,0.3);
}

.rt-partner-region {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.rt-partner-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #F0B429;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.rt-partner-countries {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Open Sans', sans-serif;
}

.rt-partners-count {
  text-align: center;
  margin-top: 1.5rem;
}

.rt-partners-count span {
  display: inline-block;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: #F0B429;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
}

/* How To Order */
.rt-order {
  padding: 5rem 0;
  background: #F5F5F0;
}

.rt-order-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rt-order-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

@media (max-width: 768px) {
  .rt-order-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .rt-order-steps { grid-template-columns: 1fr; }
}

.rt-order-step {
  background: #ffffff;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
}

.rt-order-step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(192,57,43,0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.rt-order-step-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.rt-order-step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

.rt-order-step-desc {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.5;
  font-family: 'Open Sans', sans-serif;
}

/* =============================================
   FAQ
   ============================================= */
.rt-faq {
  padding: 5rem 0;
  background: #ffffff;
}

.rt-faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rt-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.rt-faq-item {
  border: 1px solid #eeeeee;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.rt-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1A1A1A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}

.rt-faq-question:hover { background: #fff5f5; }

.rt-faq-question.open {
  background: #C0392B;
  color: #ffffff;
}

.rt-faq-question .faq-arrow {
  flex-shrink: 0;
  transition: transform 0.2s;
  font-size: 0.75rem;
}

.rt-faq-question.open .faq-arrow { transform: rotate(180deg); }

.rt-faq-answer {
  display: none;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.7;
  font-family: 'Open Sans', sans-serif;
  background: #fafafa;
  border-top: 1px solid #eeeeee;
}

.rt-faq-answer.open { display: block; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.rt-contact {
  padding: 5rem 0;
  background: #F5F5F0;
}

.rt-contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rt-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .rt-contact-inner { grid-template-columns: 1fr; }
}

.rt-contact-info {
  background: #1A1A1A;
  border-radius: 4px;
  padding: 2rem;
  color: #ffffff;
}

.rt-contact-info-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #F0B429;
  margin-bottom: 1.5rem;
}

.rt-contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.rt-contact-info-item .icon {
  color: #F0B429;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.rt-contact-info-item .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.rt-contact-info-item a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  display: block;
  transition: color 0.2s;
}

.rt-contact-info-item a:hover { color: #F0B429; }

.rt-contact-form {
  background: #ffffff;
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.rt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
  .rt-form-row { grid-template-columns: 1fr; }
}

.rt-form-group {
  margin-bottom: 1rem;
}

.rt-form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  margin-bottom: 0.375rem;
}

.rt-form-group input,
.rt-form-group select,
.rt-form-group textarea {
  width: 100%;
  border: 2px solid #e5e5e5;
  border-radius: 2px;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.rt-form-group input:focus,
.rt-form-group select:focus,
.rt-form-group textarea:focus {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.rt-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.rt-form-submit {
  width: 100%;
  background: #C0392B;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}

.rt-form-submit:hover {
  background: #a93226;
  transform: translateY(-1px);
}

.rt-form-note {
  text-align: center;
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.75rem;
  font-family: 'Open Sans', sans-serif;
}

/* =============================================
   FOOTER
   ============================================= */
.rt-footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.rt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .rt-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .rt-footer-grid { grid-template-columns: 1fr; }
}

.rt-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.rt-footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  font-family: 'Open Sans', sans-serif;
}

.rt-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}

.rt-footer-contact-item .icon { color: #F0B429; flex-shrink: 0; margin-top: 2px; }

.rt-footer-contact-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.rt-footer-contact-item a:hover { color: #F0B429; }

.rt-footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #C0392B;
  display: inline-block;
}

.rt-footer-links li {
  margin-bottom: 0.5rem;
}

.rt-footer-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  font-family: 'Open Sans', sans-serif;
}

.rt-footer-links a:hover { color: #F0B429; }

.rt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rt-footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Open Sans', sans-serif;
}

.rt-footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.rt-footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.rt-footer-bottom-links a:hover { color: #F0B429; }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.rt-floating {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.rt-whatsapp-btn {
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  color: #ffffff;
  font-size: 1.5rem;
  text-decoration: none;
}

.rt-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  color: #ffffff;
}

.rt-whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.3;
  animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.rt-backtop-btn {
  width: 3rem;
  height: 3rem;
  background: #C0392B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(192,57,43,0.4);
  cursor: pointer;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.rt-backtop-btn:hover {
  background: #a93226;
  transform: translateY(-2px);
}

/* =============================================
   WORDPRESS SPECIFIC
   ============================================= */
.wp-block-image { margin: 1.5rem 0; }
.wp-caption { text-align: center; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }

/* WordPress navigation */
.wp-pagenavi, .navigation { margin: 2rem 0; text-align: center; }

/* Comments */
.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 2px solid #e5e5e5;
  border-radius: 2px;
  padding: 0.625rem 0.875rem;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.rt-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

.rt-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   LANGUAGE SWITCHER (WPML/Polylang)
   ============================================= */
.wpml-ls-legacy-list-horizontal,
.lang-switcher {
  display: flex;
  gap: 0.375rem;
  align-items: center;
}

.wpml-ls-item a,
.lang-switcher a {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  transition: all 0.2s;
}

.wpml-ls-item-active a,
.lang-switcher a:hover {
  background: #C0392B;
  color: #ffffff;
}

/* =============================================
   BLOG / ARCHIVE — 文章列表页完整样式
   用于 archive.php、page-blog.php、home.php
   ============================================= */

/* 主布局：左侧文章列表 + 右侧侧边栏 */
.rt-blog-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 4rem 5rem;
}

@media (max-width: 1100px) {
  .rt-blog-wrap {
    padding: 2.5rem 2rem 4rem;
    gap: 2rem;
    grid-template-columns: 1fr 260px;
  }
}

@media (max-width: 900px) {
  .rt-blog-wrap {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem 3rem;
  }
  /* 手机端侧边栏移到文章列表下方 */
  .rt-blog-sidebar {
    order: 2;
  }
  .rt-blog-wrap > main {
    order: 1;
  }
}

/* 文章卡片网格：PC端3列，平板2列，手机1列 */
.rt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .rt-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 540px) {
  .rt-blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* 单篇文章卡片 */
.rt-blog-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.rt-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

/* 卡片缩略图 */
.rt-blog-card-img {
  overflow: hidden;
  height: 180px;
  flex-shrink: 0;
}

.rt-blog-card-img a {
  display: block;
  height: 100%;
}

.rt-blog-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.rt-blog-card:hover .rt-blog-card-img img {
  transform: scale(1.06);
}

/* 卡片内容区 */
.rt-blog-card-body {
  padding: 1.125rem 1.25rem 1.375rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 分类标签 */
.rt-blog-card-cats {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: .625rem;
}

.rt-blog-card-cat {
  background: #C0392B;
  color: #ffffff;
  font-size: .65rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s;
}

.rt-blog-card-cat:hover {
  background: #a93226;
}

/* 文章标题 */
.rt-blog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  color: #1A1A1A;
  margin: 0 0 .5rem;
  line-height: 1.45;
}

.rt-blog-card-title a {
  color: #1A1A1A;
  text-decoration: none;
  transition: color .2s;
}

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

/* 文章元信息 */
.rt-blog-card-meta {
  font-size: .75rem;
  color: #aaa;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: .625rem;
}

/* 文章摘要 */
.rt-blog-card-excerpt {
  font-size: .8125rem;
  color: #666;
  line-height: 1.75;
  font-family: 'Open Sans', sans-serif;
  flex: 1;
  margin-bottom: 1rem;
}

/* 阅读更多链接 */
.rt-blog-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: #C0392B;
  font-size: .8rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  letter-spacing: .04em;
  border-bottom: 1.5px solid transparent;
  padding-bottom: .1rem;
  transition: border-color .2s;
  align-self: flex-start;
}

.rt-blog-card-read-more:hover {
  border-color: #C0392B;
}

/* 分页 */
.rt-pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap;
}

.rt-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 .625rem;
  border: 2px solid #ddd;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  color: #555;
  text-decoration: none;
  transition: all .2s;
}

.rt-pagination .page-numbers:hover,
.rt-pagination .page-numbers.current {
  background: #C0392B;
  border-color: #C0392B;
  color: #ffffff;
}

/* ---- 侧边栏 ---- */
.rt-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rt-sidebar-widget {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  overflow: hidden;
}

.rt-sidebar-widget-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  color: #ffffff;
  background: #1A1A1A;
  padding: .625rem 1rem;
  letter-spacing: .08em;
  margin: 0;
}

.rt-sidebar-widget-body {
  padding: 1rem;
}

/* 侧边栏最新文章列表 */
.rt-sidebar-recent {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rt-sidebar-recent li {
  padding: .625rem 0;
  border-bottom: 1px solid #f5f5f5;
}

.rt-sidebar-recent li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rt-sidebar-recent a {
  font-family: 'Open Sans', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
  transition: color .2s;
  display: block;
}

.rt-sidebar-recent a:hover {
  color: #C0392B;
}

/* 侧边栏分类列表 */
.rt-sidebar-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rt-sidebar-cats li {
  border-bottom: 1px solid #f5f5f5;
}

.rt-sidebar-cats li:last-child {
  border-bottom: none;
}

.rt-sidebar-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 0;
  font-family: 'Open Sans', sans-serif;
  font-size: .8125rem;
  color: #444;
  text-decoration: none;
  transition: color .2s;
}

.rt-sidebar-cats a:hover {
  color: #C0392B;
}

/* 侧边栏询价 CTA */
.rt-sidebar-inquiry-cta {
  background: linear-gradient(135deg, #1A1A1A 0%, #2d0a07 100%);
  padding: 1.5rem;
  color: #ffffff;
}

.rt-sidebar-inquiry-cta h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #F0B429;
  margin: 0 0 .5rem;
}

.rt-sidebar-inquiry-cta p {
  font-family: 'Open Sans', sans-serif;
  font-size: .8125rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin: 0 0 1rem;
}

/* =============================================
   CONTACT FORM 7 — 完整样式覆盖
   匹配 RealismThrift 主题配色：深红 #C0392B + 黑 #1A1A1A + 金 #F0B429
   ============================================= */

.rt-contact-form .wpcf7,
.rt-contact-form .wpcf7-form { width: 100%; }

.rt-contact-form .wpcf7-form p { margin-bottom: 1rem; }

.rt-contact-form .wpcf7-form input[type="text"],
.rt-contact-form .wpcf7-form input[type="email"],
.rt-contact-form .wpcf7-form input[type="tel"],
.rt-contact-form .wpcf7-form input[type="number"],
.rt-contact-form .wpcf7-form input[type="url"],
.rt-contact-form .wpcf7-form textarea,
.rt-contact-form .wpcf7-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin-bottom: 0;
}

.rt-contact-form .wpcf7-form input::placeholder,
.rt-contact-form .wpcf7-form textarea::placeholder {
  color: rgba(255,255,255,0.38);
}

.rt-contact-form .wpcf7-form input[type="text"]:focus,
.rt-contact-form .wpcf7-form input[type="email"]:focus,
.rt-contact-form .wpcf7-form input[type="tel"]:focus,
.rt-contact-form .wpcf7-form input[type="number"]:focus,
.rt-contact-form .wpcf7-form input[type="url"]:focus,
.rt-contact-form .wpcf7-form textarea:focus,
.rt-contact-form .wpcf7-form select:focus {
  border-color: #C0392B;
  background: rgba(192,57,43,0.1);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.2);
}

.rt-contact-form .wpcf7-form input.wpcf7-not-valid,
.rt-contact-form .wpcf7-form textarea.wpcf7-not-valid,
.rt-contact-form .wpcf7-form select.wpcf7-not-valid {
  border-color: #e74c3c !important;
  background: rgba(231,76,60,0.1) !important;
}

.rt-contact-form .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.rt-contact-form .wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.rt-contact-form .wpcf7-form select option {
  background: #1A1A1A;
  color: #ffffff;
}

.rt-contact-form .wpcf7-form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.rt-contact-form .wpcf7-form input[type="submit"],
.rt-contact-form .wpcf7-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: #C0392B;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
  margin-top: 0.75rem;
  display: block;
}

.rt-contact-form .wpcf7-form input[type="submit"]:hover,
.rt-contact-form .wpcf7-submit:hover {
  background: #a93226;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.45);
}

.rt-contact-form .wpcf7-form input[type="submit"]:active {
  transform: translateY(0);
}

.rt-contact-form .wpcf7-not-valid-tip {
  display: block;
  color: #f1948a;
  font-size: 0.75rem;
  font-family: 'Open Sans', sans-serif;
  margin-top: 0.25rem;
}

.rt-contact-form .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.875rem 1.25rem;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  border: none !important;
}

.rt-contact-form .wpcf7-form.sent .wpcf7-response-output {
  background: rgba(39,174,96,0.15);
  border-left: 4px solid #27ae60 !important;
  color: #a9dfbf;
}

.rt-contact-form .wpcf7-form.invalid .wpcf7-response-output,
.rt-contact-form .wpcf7-form.failed .wpcf7-response-output,
.rt-contact-form .wpcf7-form.spam .wpcf7-response-output {
  background: rgba(192,57,43,0.15);
  border-left: 4px solid #C0392B !important;
  color: #f1948a;
}

.rt-contact-form .wpcf7-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: #F0B429;
  border-radius: 50%;
  animation: rt-cf7-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-left: 0.5rem;
}

@keyframes rt-cf7-spin { to { transform: rotate(360deg); } }

/* =============================================
   CF7 浅色背景版（Contact Us 独立页面）
   ============================================= */
.rt-contact-page-wrap .wpcf7-form input[type="text"],
.rt-contact-page-wrap .wpcf7-form input[type="email"],
.rt-contact-page-wrap .wpcf7-form input[type="tel"],
.rt-contact-page-wrap .wpcf7-form input[type="number"],
.rt-contact-page-wrap .wpcf7-form input[type="url"],
.rt-contact-page-wrap .wpcf7-form textarea,
.rt-contact-page-wrap .wpcf7-form select,
.rt-contact-form-light .wpcf7-form input[type="text"],
.rt-contact-form-light .wpcf7-form input[type="email"],
.rt-contact-form-light .wpcf7-form input[type="tel"],
.rt-contact-form-light .wpcf7-form textarea,
.rt-contact-form-light .wpcf7-form select {
  background: #ffffff;
  border: 1.5px solid #ddd;
  color: #1A1A1A;
}

.rt-contact-page-wrap .wpcf7-form input::placeholder,
.rt-contact-page-wrap .wpcf7-form textarea::placeholder,
.rt-contact-form-light .wpcf7-form input::placeholder,
.rt-contact-form-light .wpcf7-form textarea::placeholder {
  color: #aaa;
}

.rt-contact-page-wrap .wpcf7-form label,
.rt-contact-form-light .wpcf7-form label {
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.rt-contact-page-wrap .wpcf7-form input[type="submit"],
.rt-contact-form-light .wpcf7-form input[type="submit"] {
  background: #C0392B;
  color: #fff;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.75rem;
}

.rt-contact-page-wrap .wpcf7-form input[type="submit"]:hover,
.rt-contact-form-light .wpcf7-form input[type="submit"]:hover {
  background: #a93226;
  transform: translateY(-1px);
}

.rt-contact-page-wrap .wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.rt-contact-page-wrap .wpcf7-form select option,
.rt-contact-form-light .wpcf7-form select option {
  background: #fff;
  color: #1A1A1A;
}

.rt-contact-page-wrap .wpcf7-form.sent .wpcf7-response-output,
.rt-contact-form-light .wpcf7-form.sent .wpcf7-response-output {
  background: #f0fff4;
  border-left: 4px solid #27ae60 !important;
  color: #166534;
  border: none;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin-top: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
}
