:root {
  --primary: #dc2626; /* Safety Red */
  --primary-hover: #b91c1c;
  --secondary: #1f2937; /* Dark Gray */
  --accent: #f59e0b; /* Safety Yellow */
  --bg-color: #f9fafb;
  --card-bg: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  
  --font-family: 'Inter', -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 0.375rem;
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Base Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header — Lotomena-style (utility + main + category row) */
.header.reetal-site-header {
  background: var(--card-bg);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Tier 1: light utility bar */
.reetal-top-bar.top-bar {
  background: #eceff3;
  color: #374151;
  font-size: 0.8125rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.reetal-top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.reetal-top-bar__left .header-top-menu,
.reetal-top-bar__left ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.reetal-top-bar__left a {
  color: #4b5563;
  font-weight: 500;
}

.reetal-top-bar__left a:hover {
  color: var(--primary);
}

.reetal-top-bar__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

.reetal-top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #4b5563;
  font-weight: 600;
  white-space: nowrap;
}

.reetal-top-bar__link i {
  color: var(--primary);
  font-size: 0.85rem;
}

.reetal-top-bar__link:hover {
  color: var(--primary);
}

/* Tier 2: logo + pill search + icon actions + account + cart pill */
.reetal-main-bar {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-color);
}

.reetal-main-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.reetal-main-bar__search {
  flex: 1 1 280px;
  max-width: 640px;
  min-width: 0;
}

.reetal-search-form {
  display: flex;
  width: 100%;
  position: relative;
}

.reetal-search-form__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  z-index: 1;
  pointer-events: none;
}

.reetal-search-form__input,
.reetal-main-bar__search .search-field {
  width: 100%;
  padding: 0.72rem 1rem 0.72rem 2.85rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 0.9375rem;
  outline: none;
  transition: var(--transition);
  background: #f3f4f6;
}

.reetal-search-form__input:focus,
.reetal-main-bar__search .search-field:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.logo img {
  height: 48px;
  width: auto;
}

.reetal-main-bar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.reetal-header-icon-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.reetal-header-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.reetal-header-ico__ring {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.reetal-header-ico__ring i {
  font-size: 1rem;
  color: #1f2937;
}

.reetal-header-ico:hover .reetal-header-ico__ring {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(193, 39, 45, 0.15);
}

.reetal-header-ico:hover .reetal-header-ico__ring i {
  color: var(--primary);
}

.reetal-header-ico__badge {
  position: absolute;
  top: -4px;
  inset-inline-end: -4px;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 4px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.1rem;
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  border: 2px solid #fff;
}

.reetal-header-account {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  padding: 0.35rem 0;
  white-space: nowrap;
}

.reetal-header-account i {
  font-size: 1.1rem;
  color: #111827;
}

.reetal-header-account:hover {
  color: var(--primary);
}

.reetal-header-account:hover i {
  color: var(--primary);
}

.reetal-header-cart {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.15rem;
  min-height: 2.65rem;
  padding: 0.45rem 2.15rem 0.45rem 0.85rem;
  background: #111827;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.reetal-header-cart:hover {
  background: #0f172a;
  color: #fff !important;
}

.reetal-header-cart__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reetal-header-cart__row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.reetal-header-cart__row i {
  font-size: 0.95rem;
  opacity: 0.9;
}

.reetal-header-cart__subtotal {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.reetal-header-cart__badge {
  position: absolute;
  top: -6px;
  inset-inline-end: -2px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 5px;
  font-size: 0.68rem;
  line-height: 1.25rem;
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid #fff;
}

/* Tier 3: light bar + browse + primary nav (overrides main.css dark nav) */
.reetal-sub-nav.nav-bar.header-nav-wrap {
  background: #eceff3 !important;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: none;
}

.reetal-sub-nav__inner {
  display: flex;
  align-items: stretch;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  min-height: 3.25rem;
}

.reetal-cat-dropdown-wrap {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
}

.reetal-browse-cat-btn.browse-categories,
button.browse-categories.reetal-browse-cat-btn {
  background: var(--primary);
  color: #fff;
  padding: 0 1.15rem;
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
  border-radius: 0;
  margin: 0;
}

.reetal-browse-cat-btn:hover {
  background: var(--primary-hover);
  color: #fff;
}

.reetal-browse-cat-btn__chev {
  font-size: 0.65rem;
  margin-inline-start: 0.15rem;
  opacity: 0.9;
}

.reetal-cat-dropdown {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  z-index: 130;
  min-width: min(320px, 92vw);
  max-height: min(70vh, 520px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-lg);
  margin-top: 0;
}

.reetal-cat-dropdown[hidden] {
  display: none !important;
}

.reetal-cat-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.reetal-cat-dropdown__list li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
}

.reetal-cat-dropdown__list li:last-child a {
  border-bottom: none;
}

.reetal-cat-dropdown__list li a i {
  width: 1.25rem;
  text-align: center;
  color: var(--primary);
  font-size: 0.95rem;
}

.reetal-cat-dropdown__list li a:hover {
  background: #fef2f2;
  color: var(--primary);
}

.reetal-sub-nav__inner .menu-toggle {
  align-self: center;
}

.reetal-sub-nav__inner .main-navigation {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}

.reetal-sub-nav__cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: auto;
}

.reetal-sub-nav .main-navigation .nav-menu {
  margin: 0;
  padding: 0;
}

.reetal-sub-nav .main-navigation .nav-menu > li > a {
  color: #374151 !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.85rem 0.35rem;
  border-block-end: 2px solid transparent !important;
}

.reetal-sub-nav .main-navigation .nav-menu > li > a:hover,
.reetal-sub-nav .main-navigation .nav-menu > li.current-menu-item > a {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.reetal-sub-nav .main-nav a::after {
  display: none;
}

/* Legacy action buttons (if used elsewhere) */
.badge {
  position: absolute;
  top: -5px;
  right: 5px;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.1rem 0.35rem;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .reetal-main-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .reetal-main-bar__search {
    max-width: none;
    order: 3;
    flex: 1 1 100%;
  }

  .logo.site-branding {
    order: 1;
  }

  .reetal-main-bar__actions {
    order: 2;
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .reetal-top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .reetal-header-account span {
    display: none;
  }
}

html[dir='rtl'] .reetal-search-form__icon {
  left: auto;
  right: 1rem;
}

html[dir='rtl'] .reetal-search-form__input,
html[dir='rtl'] .reetal-main-bar__search .search-field {
  padding: 0.72rem 1rem 0.72rem 2.85rem;
}

/* Mobile overlay nav: match light Lotomena bar instead of legacy dark sheet */
@media (max-width: 900px) {
  body.nav-open .site-header .header-nav-wrap {
    background: #f8fafc !important;
  }

  body.nav-open .site-header .main-navigation .nav-menu > li > a {
    color: #1f2937 !important;
    border-block-end-color: rgba(15, 23, 42, 0.08) !important;
  }

  body.nav-open .site-header .main-navigation .nav-menu > li > a:hover,
  body.nav-open .site-header .main-navigation .nav-menu > li.current-menu-item > a {
    color: var(--primary) !important;
  }
}

/* In-content titles (blog, search, archives) — compact, not a full-width cover */
#content .page-header {
  background: transparent;
  color: inherit;
  padding: 0 0 1rem;
  text-align: left;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

#content .page-header .page-title {
  font-size: 1.65rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--text-main);
}

#content .breadcrumb {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

#content .breadcrumb a {
  color: var(--primary);
}

#content .breadcrumb a:hover {
  color: var(--primary-hover);
}

/* Shop Layout */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.widget {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 1rem;
  background: var(--primary);
  border-radius: 4px;
}

.cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-weight: 500;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.cat-list a:hover,
.cat-list a.active {
  background: #fef2f2;
  color: var(--primary);
}

/* Price range styling */
.price-range-slider {
  margin-top: 1rem;
}
.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border-color);
  outline: none;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 4px solid white;
  box-shadow: 0 0 0 1px var(--border-color), var(--shadow-sm);
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-bg);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.sort-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  outline: none;
  font-family: inherit;
  color: var(--text-main);
  background: #f9fafb;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  z-index: 2;
}

.product-card__media {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  min-width: 0;
}

.product-image {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  background: white;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* Ensuring the product fits nicely */
  padding: 1.5rem;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05); /* very subtle zoom */
}

.product-actions {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  z-index: 2;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-icon:hover {
  background: var(--primary);
  color: white;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-title:hover {
  color: var(--primary);
}

.product-price {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.price-regular {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.btn-outline {
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-main);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-amazon {
  background: #f59e0b;
  color: white;
}
.btn-amazon:hover {
  background: #d97706;
}
.btn-noon {
  background: #000;
  color: white;
}
.btn-noon:hover {
  background: #333;
}

.add-to-cart {
  width: 100%;
}

/* Pagination */
.pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.page-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-weight: 600;
}

.page-num.active,
.page-num:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ------------------ PRODUCT PAGE ------------------ */

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  padding-top: 2rem;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1; /* Match aspect ratio */
}
.main-image img {
  max-height: 100%;
  object-fit: contain;
}

.thumbnail-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.thumbnail {
  background: white;
  border-radius: var(--radius);
  border: 2px solid transparent;
  padding: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 1;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnail.active,
.thumbnail:hover {
  border-color: var(--primary);
}

.product-info-col {
  display: flex;
  flex-direction: column;
}

.p-cat {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.p-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.p-price-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.p-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.p-price-old {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.p-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.qty-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: white;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 48px;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition);
}
.qty-btn:hover {
  background: #f3f4f6;
  color: var(--primary);
}

.qty-input input {
  width: 50px;
  height: 48px;
  text-align: center;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  outline: none;
  -moz-appearance: textfield;
}

.p-add-to-cart {
  flex: 1;
  height: 48px;
  font-size: 1.1rem;
}

.external-shops {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.external-shops .btn {
  flex: 1;
}

.product-meta {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.meta-item {
  display: flex;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.meta-item:last-child {
  margin-bottom: 0;
}

.meta-label {
  font-weight: 600;
  width: 100px;
  color: var(--text-main);
}

.meta-val {
  color: var(--text-muted);
}
.meta-val a {
  color: var(--primary);
}

/* Tabs Section */
.tabs-section {
  margin-bottom: 5rem;
}

.tabs-nav {
  display: flex;
  gap: 2rem;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 2rem;
}

.tab-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  padding-bottom: 1rem;
  position: relative;
}

.tab-link.active {
  color: var(--text-main);
}
.tab-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.tab-content {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
}

.tab-content h2, .tab-content h3 {
  color: var(--text-main);
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.tab-content h2:first-child {
  margin-top: 0;
}
.tab-content ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

/* Footer — Lotomena-style (light, five columns, sub-bar, back to top) */
.site-footer.reetal-footer {
  background: #f2f2f2 !important;
  color: #374151 !important;
  padding: 0 !important;
  margin-top: 2rem;
  position: relative;
}

.reetal-footer__main {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  padding: 3rem 1.5rem 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .reetal-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reetal-footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .reetal-footer__main {
    grid-template-columns: 1fr;
  }
}

.reetal-footer__heading,
.reetal-footer .footer-widget-title {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1f2937 !important;
  letter-spacing: 0.02em;
}

.reetal-footer__site-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.reetal-footer__site-title a {
  color: #111827 !important;
  text-decoration: none;
}

.reetal-footer__site-title a:hover {
  color: var(--primary) !important;
}

.reetal-footer__logo img {
  max-height: 52px;
  width: auto;
}

.reetal-footer__desc,
.reetal-footer__desc p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #4b5563 !important;
}

.reetal-footer__list,
.reetal-footer .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.reetal-footer__list li,
.reetal-footer .footer-menu li {
  margin-bottom: 0.45rem;
}

.reetal-footer__list a,
.reetal-footer .footer-menu a {
  color: #374151 !important;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.reetal-footer__list a:hover,
.reetal-footer .footer-menu a:hover {
  color: var(--primary) !important;
  text-decoration: underline;
}

.reetal-footer__muted {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}

.reetal-footer__newsletter-lead {
  font-size: 0.8125rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.reetal-footer-newsletter__fields {
  display: flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  max-width: 100%;
}

.reetal-footer-newsletter__fields input[type='email'] {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-right: none;
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  background: #fff176;
  color: #1f2937;
}

.reetal-footer-newsletter__fields input::placeholder {
  color: #4b5563;
}

.reetal-footer-newsletter__submit {
  flex: 0 0 auto;
  border: none;
  background: #c1272d;
  color: #fff !important;
  font-weight: 800;
  font-size: 0.8125rem;
  padding: 0 1.15rem;
  cursor: pointer;
  font-family: inherit;
}

.reetal-footer-newsletter__submit:hover {
  background: #9e1f24;
  color: #fff !important;
}

.reetal-footer__newsletter-widgets .widget {
  margin-bottom: 0;
}

.reetal-footer__newsletter-widgets .footer-widget-title {
  margin-top: 0;
}

.reetal-footer__newsletter-mc4wp form,
.reetal-footer__newsletter-widgets form {
  margin: 0;
}

.reetal-footer__newsletter-mc4wp input[type='email'],
.reetal-footer__newsletter-widgets input[type='email'] {
  border-radius: 6px 0 0 6px;
}

.reetal-footer__sub {
  border-top: 1px solid #e2e8f0;
  background: #eceff3;
  padding: 1rem 0 1.35rem;
}

.reetal-footer__sub-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.reetal-footer__copyright {
  margin: 0;
  font-size: 0.8125rem;
  color: #6b7280 !important;
}

.reetal-footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  font-size: 1.85rem;
  color: #64748b;
}

.reetal-footer__payments .fab {
  opacity: 0.92;
}

.reetal-footer-backtop {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 100120;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s, color 0.15s, border-color 0.15s;
}

.reetal-footer-backtop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reetal-footer-backtop:hover {
  color: var(--primary);
  border-color: #fecaca;
}

html[dir='rtl'] .reetal-footer-backtop {
  right: auto;
  left: 1.25rem;
}


/* Responsive */
@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
}

/* WOOCOMMERCE MAPPINGS TO REDESIGN */

/* Shop Layout mapping — skip main shop/category archive (3-col rules live in woocommerce-overrides) */
body:not(.reetal-shop-archive-layout) ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 2rem !important;
  list-style: none;
  padding: 0;
  margin: 0;
}
body:not(.reetal-shop-archive-layout) ul.products::before,
body:not(.reetal-shop-archive-layout) ul.products::after { display: none; }

li.product {
  background: var(--card-bg);
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm) !important;
  transition: var(--transition) !important;
  position: relative;
  border: 1px solid var(--border-color) !important;
  display: flex !important;
  flex-direction: column;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

li.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover) !important;
  border-color: var(--primary) !important;
}

li.product .woocommerce-loop-product__link { display: block; flex: 1; display: flex; flex-direction: column; }
li.product .woocommerce-loop-product__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 1.5rem 0.5rem;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0;
}
li.product .price {
  margin: 0 1.5rem 1rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
}
li.product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 1.5rem;
  background: white;
}
li.product .button {
  margin: auto 1.5rem 1.5rem;
  background: var(--primary) !important;
  color: white !important;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-weight: 600;
  display: block;
}
li.product .button:hover { background: var(--primary-hover) !important; }

/* Single Product mapping */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  padding-top: 2rem;
}
.woocommerce-product-gallery {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2rem;
}
.summary.entry-summary {
  display: flex;
  flex-direction: column;
}
.product_title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.summary .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.woocommerce-variation-add-to-cart,
form.cart {
  display: flex !important;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
form.cart .quantity input {
  height: 48px;
  width: 60px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}
form.cart .single_add_to_cart_button {
  flex: 1;
  height: 48px;
  background: var(--primary) !important;
  color: white !important;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
form.cart .single_add_to_cart_button:hover {
  background: var(--primary-hover) !important;
}

.woocommerce-tabs {
  margin-bottom: 5rem;
}

/* Sidebar mapping */
#secondary .widget {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}
#secondary .widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f3f4f6;
}

@media (max-width: 992px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
}

/* About / Contact static pages */
.reetal-page-static {
  padding-block: 2rem 3rem;
}

.reetal-page-static .entry-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

/* Any page opened from WP Admin → Pages → View: clear “card” so body is not bare text on white */
.reetal-page-static .entry--page .entry-header {
  margin-bottom: 0.25rem;
}

.reetal-page-static .entry--page .entry-content {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: clamp(1.35rem, 4vw, 2.35rem);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  margin-top: 0.5rem;
}

/* Imported / minimal HTML (no .reetal-page-prose wrapper) still reads like a real page */
.reetal-page-static .entry--page .entry-content > p,
.reetal-page-static .entry--page .entry-content > ul,
.reetal-page-static .entry--page .entry-content > ol {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}

.reetal-page-static .entry--page .entry-content > ul,
.reetal-page-static .entry--page .entry-content > ol {
  margin: 0.5rem 0 1.25rem 1.25rem;
  padding: 0;
}

.reetal-page-static .entry--page .entry-content > ul li,
.reetal-page-static .entry--page .entry-content > ol li {
  margin-bottom: 0.35rem;
}

.reetal-page-static .entry--page .entry-content > h2,
.reetal-page-static .entry--page .entry-content > h3 {
  color: #111827;
  font-weight: 800;
  margin: 1.5rem 0 0.5rem;
  line-height: 1.3;
}

.reetal-page-static .entry--page .entry-content > h2 {
  font-size: 1.2rem;
}

.reetal-page-prose {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #374151;
}

.reetal-page-prose .lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.reetal-page-prose h2 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.75rem;
  color: #111827;
}

.reetal-page-prose ul {
  margin: 0.5rem 0 1.25rem 1.25rem;
  padding: 0;
}

.reetal-page-prose li {
  margin-bottom: 0.35rem;
}

.reetal-contact-notice {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.reetal-contact-notice--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.reetal-contact-notice--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Contact page — Lotomena-style: intro, map band, gray strip, white cards, red icon circles */
.reetal-page-contact .site-main--contact {
  padding-bottom: 2.5rem;
}

.reetal-page-contact__intro .entry--page .entry-content {
  margin-bottom: 0;
}

.reetal-contact-band {
  background: #ececec;
  margin-top: clamp(1rem, 3vw, 1.75rem);
}

.reetal-contact-map {
  width: 100%;
  min-height: 280px;
  max-height: 420px;
  overflow: hidden;
  filter: grayscale(1);
  opacity: 0.95;
}

.reetal-contact-map iframe {
  display: block;
  width: 100%;
  height: min(38vh, 400px);
  min-height: 280px;
  border: 0;
}

.reetal-contact-band__inner {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2.25rem, 5vw, 3.5rem);
}

.reetal-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

@media (max-width: 820px) {
  .reetal-contact-layout {
    grid-template-columns: 1fr;
  }
}

.reetal-contact-aside {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.65rem);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.reetal-contact-aside__title {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: #111827;
  letter-spacing: -0.02em;
}

.reetal-contact-aside__tagline {
  margin: 0 0 1.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}

.reetal-contact-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.reetal-contact-aside__list > li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.reetal-contact-aside__list > li:last-child {
  margin-bottom: 0;
}

.reetal-contact-aside__icon--brand {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff !important;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(193, 39, 45, 0.35);
}

.reetal-contact-aside__list .reetal-contact-aside__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reetal-contact-aside__address {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #374151;
}

.reetal-contact-aside__address p:last-child {
  margin-bottom: 0;
}

.reetal-contact-aside__inline-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #4b5563;
}

.reetal-contact-aside__list a {
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.reetal-contact-aside__list a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.reetal-contact-share {
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.reetal-contact-share__label {
  font-weight: 700;
  font-size: 0.875rem;
  color: #111827;
}

.reetal-contact-share__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.45rem;
}

.reetal-contact-share__link {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 0.88rem;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.reetal-contact-share__link:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

.reetal-contact-share__link--fb {
  background: #1877f2;
}
.reetal-contact-share__link--tw {
  background: #1d9bf0;
}
.reetal-contact-share__link--pt {
  background: #e60023;
}
.reetal-contact-share__link--in {
  background: #0a66c2;
}
.reetal-contact-share__link--ig {
  background: linear-gradient(35deg, #f58529, #dd2a7b, #8134af);
}

.reetal-contact-main {
  min-width: 0;
}

.reetal-contact-main > .reetal-contact-notice {
  margin-bottom: 1rem;
}

.reetal-contact-panel {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.85rem) clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.reetal-contact-panel__title {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: #111827;
  letter-spacing: -0.02em;
}

.reetal-contact-panel__intro {
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #6b7280;
}

.reetal-contact-panel .reetal-contact-form {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  max-width: none;
}

.reetal-contact-form {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  max-width: 36rem;
}

.reetal-contact-form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reetal-contact-form__row {
  margin-bottom: 1.1rem;
}

.reetal-contact-form__row label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: #374151;
}

.reetal-contact-form__row .required {
  color: var(--primary);
}

.reetal-contact-form__row input,
.reetal-contact-form__row textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.72rem 1.1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: #fff;
}

.reetal-contact-panel .reetal-contact-form__row input[type='text'],
.reetal-contact-panel .reetal-contact-form__row input[type='email'],
.reetal-contact-panel .reetal-contact-form__row input[type='tel'] {
  border-radius: 999px;
  min-height: 2.85rem;
}

.reetal-contact-panel .reetal-contact-form__row textarea {
  border-radius: 16px;
  min-height: 9rem;
  resize: vertical;
}

.reetal-contact-form__row textarea {
  resize: vertical;
  min-height: 8rem;
}

.reetal-contact-form__row input:focus,
.reetal-contact-form__row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.12);
}

.reetal-contact-panel .reetal-contact-form__actions {
  margin-top: 0.5rem;
}

.reetal-contact-panel .reetal-contact-form__submit {
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  border-radius: 10px;
}

.reetal-contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  min-width: 8.5rem;
  padding: 0 1.5rem;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.reetal-contact-form__submit:hover {
  background: var(--primary-hover);
  color: #fff !important;
}

/* Long story / blocks below map + form (Lotomena-style body copy under the fold) */
.reetal-contact-below {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 3rem;
  background: #fafafa;
  border-top: 1px solid #e5e7eb;
}

.reetal-contact-below .entry-content--contact-below {
  max-width: min(52rem, 100%);
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
}

.reetal-contact-below .entry-content--contact-below > h2:first-child,
.reetal-contact-below .entry-content--contact-below > h2.wp-block-heading:first-child {
  margin-top: 0;
}

.reetal-contact-below .entry-content--contact-below h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: #111827;
  margin: 2rem 0 0.85rem;
  line-height: 1.25;
}

.reetal-contact-below .entry-content--contact-below p {
  margin: 0 0 1rem;
}

/* About page — Lotomena-style (see lotomena.com/about-us-lotomena/) */
body.reetal-about-page #content.site-content {
  background: #f3f4f6;
}

.reetal-page-about .site-main--about {
  padding-bottom: 2.5rem;
}

/* About — Lotomena hero + goals/mission grid */
.reetal-about-hero-lot {
  background: var(--primary, #dc2626);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  margin-bottom: 0;
}

.reetal-about-hero-lot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 280px);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

@media (max-width: 782px) {
  .reetal-about-hero-lot__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reetal-about-hero-lot__media {
    order: -1;
  }

  .reetal-about-hero-lot__copy {
    text-align: left;
  }
}

.reetal-about-hero-lot__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
}

.reetal-about-hero-lot__title {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: #fff;
}

.reetal-about-hero-lot__lede {
  font-size: clamp(0.95rem, 1.6vw, 1.0625rem);
  line-height: 1.65;
}

.reetal-about-hero-lot__lede p,
.reetal-about-hero-lot__vision-body p {
  color: rgba(255, 255, 255, 0.95);
}

.reetal-about-hero-lot__lede .lead {
  font-size: 1.05em;
  font-weight: 600;
  color: #fff;
}

.reetal-about-hero-lot__lede p:last-child {
  margin-bottom: 0;
}

.reetal-about-hero-lot__vision {
  margin-top: 1.35rem;
  padding: 1.2rem 1.35rem;
  background: rgba(0, 0, 0, 0.16);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.reetal-about-hero-lot__vision-title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
  color: #fff;
}

.reetal-about-hero-lot__vision-body {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.reetal-about-hero-lot__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reetal-about-hero-lot__logo .custom-logo-link {
  display: block;
}

.reetal-about-hero-lot__logo img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin-inline: auto;
  border-radius: 14px;
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.28);
}

.reetal-about-hero-lot__logo-fallback {
  width: min(100%, 240px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: clamp(2.75rem, 10vw, 4rem);
  font-weight: 800;
  color: #fff;
}

.reetal-about-dual {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}

.reetal-about-dual__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.65rem);
}

@media (max-width: 782px) {
  .reetal-about-dual__grid {
    grid-template-columns: 1fr;
  }
}

.reetal-about-dual__card {
  background: #fff;
  border-radius: 16px;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 28px rgba(15, 23, 42, 0.07);
}

.reetal-about-dual__title {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 800;
  margin: 0 0 0.85rem;
  color: #111827;
  letter-spacing: -0.02em;
}

.reetal-about-dual__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
}

.reetal-about-dual__body .reetal-about-goals,
.reetal-about-dual__body .reetal-about-mission {
  margin: 0;
  padding-left: 1.2rem;
}

.reetal-about-dual__body li {
  margin-bottom: 0.5rem;
}

.reetal-about-fallback-band {
  background: linear-gradient(180deg, #f8f9fb 0%, #eceff3 100%);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid #e2e8f0;
}

.reetal-about-fallback__title {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
  margin: 0 0 1.25rem;
  text-align: center;
}

.reetal-about-band {
  background: linear-gradient(180deg, #f8f9fb 0%, #eceff3 100%);
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(1.75rem, 4vw, 2.75rem);
  border-bottom: 1px solid #e2e8f0;
}

.reetal-about-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  border-top: 4px solid var(--primary);
  padding: clamp(1.5rem, 3vw, 2.35rem) clamp(1.35rem, 3vw, 2.15rem);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  max-width: min(52rem, 100%);
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
}

.reetal-about-panel .lead {
  font-size: 1.08rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.55;
}

.reetal-about-panel h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin: 1.75rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--primary);
  letter-spacing: 0.02em;
}

.reetal-about-panel ul {
  list-style-type: disc;
  list-style-position: outside;
  margin: 0.65rem 0 1.25rem;
  padding-left: 1.35rem;
}

.reetal-about-panel ol {
  list-style-type: decimal;
  list-style-position: outside;
  margin: 0.65rem 0 1.25rem;
  padding-left: 1.35rem;
}

.reetal-about-panel li {
  margin-bottom: 0.5rem;
}

.reetal-about-panel .reetal-about-goals li,
.reetal-about-panel .reetal-about-mission li {
  margin-bottom: 0.65rem;
}

.reetal-about-special {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.reetal-about-special__title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 0.5rem;
  color: #111827;
  letter-spacing: -0.02em;
}

.reetal-about-special__intro {
  text-align: center;
  color: #6b7280;
  font-size: 0.95rem;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
}

.reetal-about-special ul.products {
  margin: 0;
  gap: 1.25rem;
}

.reetal-about-special__empty {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}

.reetal-about-special__empty p {
  margin: 0 0 1.25rem;
}

.reetal-about-special__shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
}

.reetal-about-special__shop-btn:hover {
  background: var(--primary-hover);
  color: #fff !important;
}

.reetal-about-below {
  padding: clamp(2rem, 4vw, 3rem) 0 2rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.reetal-about-below .entry-content--about-below {
  max-width: min(52rem, 100%);
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
}

.reetal-about-below .entry-content--about-below > h2:first-child {
  margin-top: 0;
}
