/*
 Theme Name:   Porto Child — Padel Tel Aviv
 Theme URI:    https://padeltelaviv.com
 Description:  Porto child theme for padeltelaviv.com ecommerce store
 Author:       Dark WP Team
 Author URI:   https://padeltelaviv.com
 Template:     porto
 Version:      1.0.0
 Text Domain:  porto-child
*/

/* ─── Import parent styles ────────────────────────────── */
@import url("../porto/style.css");

/* ─── Custom styles below ─────────────────────────────── */

/* ==========================================================
   PRODUCT GRID — Premium Performance Minimalist (RTL)
   ========================================================== */

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --ptlv-green: #c8f024;
  --ptlv-green-hover: #b0d81e;
  --ptlv-dark: #0a0a0a;
  --ptlv-text: #1a1a1a;
  --ptlv-muted: #888;
  --ptlv-border: rgba(0, 0, 0, 0.06);
  --ptlv-sale: #c8102e;
  --ptlv-radius: 10px;
  --ptlv-speed: 0.3s;
  --ptlv-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Section RTL Direction ─────────────────────────────── */
.elementor-widget-woocommerce-products,
.elementor-widget-woocommerce-products .woocommerce,
ul.products.elementor-grid {
  direction: rtl !important;
  text-align: right !important;
}

/* ── Grid Layout ───────────────────────────────────────── */
ul.products.elementor-grid {
  gap: 20px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
}

/* ── Product Card ──────────────────────────────────────── */
.product-col .product-inner {
  background: #fff;
  border: 1px solid var(--ptlv-border);
  border-radius: var(--ptlv-radius);
  overflow: hidden;
  transition: transform var(--ptlv-speed) var(--ptlv-ease),
              box-shadow var(--ptlv-speed) var(--ptlv-ease);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-col .product-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ── Product Image ─────────────────────────────────────── */
.product-col .product-image {
  position: relative;
  overflow: hidden;
  background: #fafafa;
  aspect-ratio: 1 / 1;
}

.product-col .product-image .inner {
  width: 100%;
  height: 100%;
}

.product-col .product-image .inner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.5s var(--ptlv-ease);
}

.product-col .product-inner:hover .product-image .inner img {
  transform: scale(1.02);
}

/* ── Gallery Dots ──────────────────────────────────────── */
.ptlv-gallery-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-col .product-inner:hover .ptlv-gallery-dots {
  opacity: 1;
}

.ptlv-gallery-dots .ptlv-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ptlv-gallery-dots .ptlv-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ── Sale Badge ────────────────────────────────────────── */
.product-col .labels .onsale,
.elementor-products-grid ul.products.elementor-grid li.product .onsale {
  display: block !important;
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto !important;
  background: var(--ptlv-sale) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  line-height: 1.4;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(200, 16, 46, 0.2);
  text-transform: uppercase;
}

/* ── Product Content Area ──────────────────────────────── */
.product-col {
  min-width: 0;          /* prevent grid blowout from long content */
  overflow: hidden;      /* clip anything that exceeds card bounds  */
}
.product-col .product-content {
  padding: 14px 14px 12px !important;
  direction: rtl;
  text-align: right;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;      /* contain rating badge / nowrap text     */
}

/* ── Category Labels ───────────────────────────────────── */
.product-col .category-list {
  display: block;
  margin-bottom: 4px;
}

.product-col .category-list a {
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--ptlv-muted) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.product-col .category-list a:hover {
  color: var(--ptlv-green) !important;
}

/* ── Product Title ─────────────────────────────────────── */
.product-col .woocommerce-loop-product__title {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ptlv-text) !important;
  line-height: 1.35 !important;
  margin: 0 0 6px !important;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-col .product-loop-title:hover .woocommerce-loop-product__title {
  color: var(--ptlv-green) !important;
}

/* ── Star Rating ───────────────────────────────────────── */
.product-col .rating-wrap {
  margin-bottom: 6px;
  direction: ltr;
  display: flex;
  justify-content: flex-end;
}

.product-col .star-rating {
  font-size: 11px !important;
  color: #f5a623 !important;
}

/* ── Price ─────────────────────────────────────────────── */
.product-col .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.product-col .price ins {
  text-decoration: none !important;
  background: none !important;
}

.product-col .price ins .woocommerce-Price-amount {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--ptlv-sale) !important;
}

.product-col .price del {
  opacity: 1;
}

.product-col .price del .woocommerce-Price-amount {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #032139 !important;
}

/* Only one price (no sale) */
.product-col .price > .woocommerce-Price-amount {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--ptlv-text) !important;
}

/* ── Action Row ────────────────────────────────────────── */
.product-col .add-links-wrap {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  padding: 0 !important;
  background: none !important;
  opacity: 1 !important;
  transform: none !important;
  z-index: 4;
  direction: rtl;
  margin-top: auto;
}

.product-col .add-links {
  display: flex !important;
  align-items: center;
  direction: rtl;
}

/* ── Hide Wishlist & Quick View ────────────────────────── */
.product-col .yith-wcwl-add-to-wishlist,
.product-col .quickview {
  display: none !important;
}

/* ── Add to Cart CTA ──────────────────────────────────── */
.product-col .add_to_cart_button {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  background: var(--ptlv-green) !important;
  color: var(--ptlv-dark) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  text-transform: none !important;
  padding: 0 16px !important;
  border: none !important;
  border-radius: 6px !important;
  transition: background var(--ptlv-speed) ease,
              transform 0.15s ease !important;
  cursor: pointer;
  white-space: nowrap;
  direction: rtl;
  line-height: 1 !important;
  text-decoration: none !important;
  box-sizing: border-box;
}

.product-col .add_to_cart_button::before {
  content: '\f07a';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', FontAwesome;
  font-weight: 900;
  font-size: 13px;
  color: var(--ptlv-dark);
  line-height: 1;
  flex-shrink: 0;
}

.product-col .add_to_cart_button:hover {
  background: var(--ptlv-green-hover) !important;
  color: var(--ptlv-dark) !important;
  transform: scale(1.02);
}

.product-col .add_to_cart_button:active {
  transform: scale(0.98);
}

/* "Added" state — dark with check */
.product-col .add_to_cart_button.added {
  background: var(--ptlv-dark) !important;
  color: #fff !important;
}

.product-col .add_to_cart_button.added::before {
  content: '\f00c';
  color: var(--ptlv-green);
}

/* ── "voir tout" / Section Header Area ─────────────────── */
.elementor-element-d75690f {
  direction: rtl !important;
  text-align: right !important;
}

.elementor-element-d75690f .e-con-inner {
  direction: rtl !important;
}

.elementor-element-356a465 .elementor-heading-title {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--ptlv-text) !important;
  letter-spacing: -0.3px;
  direction: rtl !important;
  text-align: right !important;
}

.elementor-element-d18a18f .elementor-button {
  background: transparent !important;
  color: var(--ptlv-green) !important;
  border: 1.5px solid var(--ptlv-green) !important;
  border-radius: 6px !important;
  padding: 8px 20px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: background var(--ptlv-speed) ease,
              color var(--ptlv-speed) ease !important;
}

.elementor-element-d18a18f .elementor-button:hover {
  background: var(--ptlv-green) !important;
  color: #fff !important;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* ── Tablet (≤991px) ───────────────────────────────────── */
@media (max-width: 991px) {
  ul.products.elementor-grid {
    gap: 14px !important;
  }

  .product-col .product-content {
    padding: 12px 12px 10px !important;
  }

  .product-col .woocommerce-loop-product__title {
    font-size: 12px !important;
  }

  .product-col .price ins .woocommerce-Price-amount,
  .product-col .price > .woocommerce-Price-amount {
    font-size: 15px !important;
  }

  .product-col .add_to_cart_button {
    height: 38px;
    font-size: 12px !important;
  }

  .elementor-element-356a465 .elementor-heading-title {
    font-size: 22px !important;
  }
}

/* ── Mobile (≤767px) ───────────────────────────────────── */
@media (max-width: 767px) {
  ul.products.elementor-grid {
    gap: 10px !important;
  }

  .product-col .product-inner {
    border-radius: 8px;
  }

  .product-col .product-content {
    padding: 10px 10px 10px !important;
  }

  .product-col .category-list a {
    font-size: 8px !important;
    letter-spacing: 0.6px !important;
  }

  .product-col .woocommerce-loop-product__title {
    font-size: 11px !important;
  }

  .product-col .price {
    margin-bottom: 10px;
  }

  .product-col .price ins .woocommerce-Price-amount,
  .product-col .price > .woocommerce-Price-amount {
    font-size: 14px !important;
  }

  .product-col .labels .onsale {
    font-size: 9px !important;
    padding: 2px 6px !important;
    top: 6px;
    right: 6px;
  }

  .product-col .add_to_cart_button {
    height: 36px;
    font-size: 11px !important;
    padding: 0 10px !important;
    border-radius: 5px !important;
  }

  .product-col .add_to_cart_button::before {
    font-size: 12px;
  }

  .ptlv-gallery-dots {
    bottom: 6px;
    gap: 4px;
  }

  .ptlv-gallery-dots .ptlv-dot {
    width: 4px;
    height: 4px;
  }

  .elementor-element-356a465 .elementor-heading-title {
    font-size: 20px !important;
  }
}

/* ── Small phones (≤480px) ─────────────────────────────── */
@media (max-width: 480px) {
  .product-col .product-content {
    padding: 8px 8px 8px !important;
  }

  .product-col .woocommerce-loop-product__title {
    font-size: 10px !important;
    -webkit-line-clamp: 1;
    margin-bottom: 4px !important;
  }

  .product-col .price {
    margin-bottom: 8px;
  }

  .product-col .price ins .woocommerce-Price-amount,
  .product-col .price > .woocommerce-Price-amount {
    font-size: 13px !important;
  }

  .product-col .add_to_cart_button {
    height: 34px;
    font-size: 10px !important;
    padding: 0 8px !important;
    gap: 4px;
  }

  .product-col .add_to_cart_button::before {
    font-size: 11px;
  }
}

/* ==========================================================
   ORDER TRACKING — Premium Minimalist Trust Section (RTL)
   ========================================================== */

/* ── Page wrapper ──────────────────────────────────────── */
.page-id-327 .main-content {
  padding-top: 0;
  padding-bottom: 0;
}

.page-id-327 #content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - var(--ptlv-header-height, 72px) - 120px);
  padding: 60px 20px;
}

.page-id-327 .entry-title {
  display: none !important;
}

/* ── Form Card ─────────────────────────────────────────── */
.page-id-327 .woocommerce-form-track-order {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 48px 44px 44px;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04),
              0 8px 32px rgba(0, 0, 0, 0.06);
  position: relative;
}

/* ── Icon badge at top ─────────────────────────────────── */
.page-id-327 .woocommerce-form-track-order::before {
  content: "\f0d1"; /* truck icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--ptlv-dark, #0a0a0a);
  color: var(--ptlv-green, #c8f024);
  border-radius: 14px;
  position: absolute;
  top: -28px;
  right: 50%;
  transform: translateX(50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ── Description text ──────────────────────────────────── */
.page-id-327 .woocommerce-form-track-order > p:first-of-type {
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ptlv-muted, #888);
  margin: 16px 0 28px;
  padding: 0 8px;
}

/* ── Form rows ─────────────────────────────────────────── */
.page-id-327 .woocommerce-form-track-order .form-row {
  margin-bottom: 20px;
}

/* ── Labels ────────────────────────────────────────────── */
.page-id-327 .woocommerce-form-track-order label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ptlv-text, #1a1a1a);
  margin-bottom: 8px;
}

/* ── Inputs ────────────────────────────────────────────── */
.page-id-327 .woocommerce-form-track-order .input-text {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ptlv-text, #1a1a1a);
  background: #fafafa;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease,
              background-color 0.2s ease,
              box-shadow 0.2s ease;
  -webkit-appearance: none;
}

.page-id-327 .woocommerce-form-track-order .input-text::placeholder {
  color: #bbb;
  font-size: 13px;
}

.page-id-327 .woocommerce-form-track-order .input-text:focus {
  background: #fff;
  border-color: var(--ptlv-dark, #0a0a0a);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.06);
}

/* ── Submit Button ─────────────────────────────────────── */
.page-id-327 .woocommerce-form-track-order button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  margin-top: 8px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
  color: var(--ptlv-dark, #0a0a0a) !important;
  background: var(--ptlv-green, #c8f024) !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer;
  transition: background 0.2s ease,
              transform 0.15s ease,
              box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(200, 240, 36, 0.3);
}

.page-id-327 .woocommerce-form-track-order button[type="submit"]:hover {
  background: var(--ptlv-green-hover, #b0d81e) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 240, 36, 0.4);
}

.page-id-327 .woocommerce-form-track-order button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(200, 240, 36, 0.2);
}

/* ── Trust indicators ──────────────────────────────────── */
.page-id-327 .woocommerce-form-track-order::after {
  content: "\f023\00a0\00a0 מעקב מאובטח  •  עדכונים בזמן אמת";
  font-family: "Font Awesome 6 Free", "Poppins", sans-serif;
  font-weight: 900;
  font-size: 11px;
  color: #aaa;
  display: block;
  text-align: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  letter-spacing: 0.01em;
}

/* ── Mobile adjustments ────────────────────────────────── */
@media (max-width: 575px) {
  .page-id-327 .woocommerce-form-track-order {
    padding: 40px 24px 32px;
    border-radius: 14px;
  }

  .page-id-327 .woocommerce-form-track-order::before {
    width: 48px;
    height: 48px;
    font-size: 18px;
    border-radius: 12px;
    top: -24px;
  }

  .page-id-327 .woocommerce-form-track-order > p:first-of-type {
    font-size: 12px;
    margin: 12px 0 24px;
  }

  .page-id-327 .woocommerce-form-track-order .input-text {
    height: 44px;
    font-size: 13px;
  }

  .page-id-327 .woocommerce-form-track-order button[type="submit"] {
    height: 46px;
    font-size: 13px;
  }
}

/* ── Hide breadcrumbs on tracking page ─────────────────── */
.page-id-327 .page-top,
.page-id-327 .page-header {
  display: none !important;
}

/* ==========================================================
   ABOUT US — Premium Minimalist (RTL)  page-id-2122
   ========================================================== */

/* ── Page chrome cleanup ───────────────────────────────── */
.page-id-2122 .page-top,
.page-id-2122 .page-header {
  display: none !important;
}

.page-id-2122 .main-content {
  padding: 0 !important;
}

.page-id-2122 .entry-title {
  display: none !important;
}

/* ── Hero section (first: image + "מי אנחנו?") ────────── */
.page-id-2122 .elementor-element-476d6c5 {
  padding: 80px 0 60px !important;
  margin: 0 auto;
  max-width: 1100px;
}

.page-id-2122 .elementor-element-476d6c5 > .e-con-inner {
  gap: 60px !important;
  align-items: center !important;
}

/* Hero image styling */
.page-id-2122 .elementor-element-80d6ba9 {
  flex: 1 1 50% !important;
  min-width: 0;
}

.page-id-2122 .elementor-element-3efaeff img {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04);
  width: 100% !important;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

/* Hero text column */
.page-id-2122 .elementor-element-54ff22a {
  flex: 1 1 45% !important;
  min-width: 0;
  padding: 0 !important;
  direction: rtl !important;
  text-align: right !important;
}

/* "מי אנחנו?" heading */
.page-id-2122 .elementor-element-8863b39 .elementor-heading-title {
  font-family: "Poppins", sans-serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--ptlv-dark, #0a0a0a) !important;
  line-height: 1.25 !important;
  margin-bottom: 20px !important;
  position: relative;
  padding-bottom: 16px;
  direction: rtl !important;
  text-align: right !important;
}

/* Accent underline */
.page-id-2122 .elementor-element-8863b39 .elementor-heading-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 3px;
  background: var(--ptlv-green, #c8f024);
  border-radius: 2px;
}

/* Hero description */
.page-id-2122 .elementor-element-5735b59 .elementor-heading-title {
  font-family: "Poppins", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.85 !important;
  color: #555 !important;
  letter-spacing: 0 !important;
  direction: rtl !important;
  text-align: right !important;
}

/* ── History section (second: text + image) ────────────── */
.page-id-2122 .elementor-element-2eb46ef {
  padding: 60px 0 80px !important;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
}

/* Subtle top divider */
.page-id-2122 .elementor-element-2eb46ef::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(
    to left,
    transparent,
    rgba(0, 0, 0, 0.06) 30%,
    rgba(0, 0, 0, 0.06) 70%,
    transparent
  );
}

.page-id-2122 .elementor-element-2eb46ef > .e-con-inner {
  gap: 60px !important;
  align-items: center !important;
}

/* History text column */
.page-id-2122 .elementor-element-b3e8423 {
  flex: 1 1 50% !important;
  min-width: 0;
  padding: 0 !important;
  direction: rtl !important;
  text-align: right !important;
}

/* "ההיסטוריה שלנו" heading */
.page-id-2122 .elementor-element-753b766 .elementor-heading-title {
  font-family: "Poppins", sans-serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--ptlv-dark, #0a0a0a) !important;
  line-height: 1.25 !important;
  margin-bottom: 20px !important;
  position: relative;
  padding-bottom: 16px;
  direction: rtl !important;
  text-align: right !important;
}

.page-id-2122 .elementor-element-753b766 .elementor-heading-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 3px;
  background: var(--ptlv-green, #c8f024);
  border-radius: 2px;
}

/* History description */
.page-id-2122 .elementor-element-ce41cf9 .elementor-heading-title {
  font-family: "Poppins", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.85 !important;
  color: #555 !important;
  letter-spacing: 0 !important;
  direction: rtl !important;
  text-align: right !important;
}

/* History image column */
.page-id-2122 .elementor-element-4cb6139 {
  flex: 1 1 45% !important;
  min-width: 0;
}

.page-id-2122 .elementor-element-97ccfcf img {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04);
  width: 100% !important;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

/* ── Mobile responsive ─────────────────────────────────── */
@media (max-width: 767px) {
  .page-id-2122 .elementor-element-476d6c5,
  .page-id-2122 .elementor-element-2eb46ef {
    padding: 48px 20px 40px !important;
  }

  .page-id-2122 .elementor-element-476d6c5 > .e-con-inner,
  .page-id-2122 .elementor-element-2eb46ef > .e-con-inner {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .page-id-2122 .elementor-element-80d6ba9,
  .page-id-2122 .elementor-element-54ff22a,
  .page-id-2122 .elementor-element-b3e8423,
  .page-id-2122 .elementor-element-4cb6139 {
    flex: 1 1 100% !important;
    width: 100% !important;
  }

  /* On mobile, image comes first for both sections */
  .page-id-2122 .elementor-element-2eb46ef > .e-con-inner {
    flex-direction: column-reverse !important;
  }

  .page-id-2122 .elementor-element-8863b39 .elementor-heading-title,
  .page-id-2122 .elementor-element-753b766 .elementor-heading-title {
    font-size: 24px !important;
    text-align: center !important;
  }

  .page-id-2122 .elementor-element-8863b39 .elementor-heading-title::after,
  .page-id-2122 .elementor-element-753b766 .elementor-heading-title::after {
    right: 50%;
    transform: translateX(50%);
  }

  .page-id-2122 .elementor-element-5735b59 .elementor-heading-title,
  .page-id-2122 .elementor-element-ce41cf9 .elementor-heading-title {
    font-size: 14px !important;
    text-align: center !important;
  }

  .page-id-2122 .elementor-element-2eb46ef::before {
    right: 5%;
    left: 5%;
  }
}
