/*
Theme Name: AbdouMahmoud
Theme URI: https://abdoumahmoud.ma
Author: AbdouMahmoud Store
Author URI: https://abdoumahmoud.ma
Description: قالب متجر أواني منزلية فاخر — أسود وذهبي — متجاوب 100% — مُحسَّن للتحويل والمبيعات عبر WooCommerce
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: abdoumahmoud
Tags: e-commerce, rtl-language, custom-logo, full-width-template, woocommerce, dark, gold, luxury
WC requires at least: 7.0
WC tested up to: 8.5
*/

/* =============================================
   ABDOUMAHMOUD THEME — MAIN STYLESHEET
   ============================================= */

:root {
  --noir:       #080808;
  --noir-soft:  #101010;
  --noir-mid:   #181818;
  --noir-card:  #141414;
  --or:         #C9A84C;
  --or-light:   #DFC078;
  --or-pale:    #F4E8C1;
  --or-dim:     rgba(201,168,76,0.15);
  --blanc:      #FAFAF8;
  --gris:       #888888;
  --gris-light: #CCCCCC;
  --danger:     #C0392B;
  --success:    #27AE60;
  --radius-sm:  2px;
  --radius:     4px;
  --radius-lg:  8px;
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.18);
  --shadow-dark: 0 12px 48px rgba(0,0,0,0.4);
  --ease:       cubic-bezier(0.25,0.46,0.45,0.94);
  --transition: 0.4s var(--ease);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Tajawal', 'Noto Sans Arabic', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--blanc);
  color: var(--noir);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.dark-page { background: var(--noir); color: var(--blanc); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }
input, textarea, select { font-family: var(--font-body); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--or); border-radius: 2px; }
::selection { background: var(--or); color: var(--noir); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
}
.display-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--or); }
.section-title.on-dark { color: var(--blanc); }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { font-size: 15px; color: var(--gris); margin-top: 12px; max-width: 500px; margin-inline: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}
.btn-gold {
  background: var(--or);
  color: var(--noir);
}
.btn-gold:hover {
  background: var(--or-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--blanc);
}
.btn-outline:hover { border-color: var(--or); color: var(--or); }
.btn-outline-dark {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--noir);
}
.btn-outline-dark:hover { border-color: var(--or); color: var(--or); }
.btn-full { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* ── ANNOUNCEMENT BAR ── */
.am-announce {
  background: var(--or);
  color: var(--noir);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  z-index: 100;
}
.am-announce::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  animation: am-shimmer 3s infinite;
}
@keyframes am-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.am-announce a { color: var(--noir); font-weight: 700; text-decoration: underline; }

/* ── HEADER ── */
.am-header {
  background: var(--noir);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s;
}
.am-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.am-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.am-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.am-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.3));
  transition: filter 0.3s;
}
.am-logo img:hover {
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.6));
}
.am-logo-text {
  font-family: var(--font-display);
  color: var(--blanc);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-right: 10px;
}
.am-logo-text span { color: var(--or); }

/* Main Nav */
.am-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.am-nav a {
  color: var(--gris-light);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.8px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
  white-space: nowrap;
}
.am-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 1px;
  background: var(--or);
  transition: width 0.3s var(--ease);
}
.am-nav a:hover,
.am-nav a.current-menu-item { color: var(--or); }
.am-nav a:hover::after,
.am-nav a.current-menu-item::after { width: 100%; }

/* Header Actions */
.am-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.am-search-btn, .am-wishlist-btn {
  background: none;
  color: var(--gris-light);
  font-size: 18px;
  padding: 6px;
  transition: color 0.3s;
  border: none;
  cursor: pointer;
}
.am-search-btn:hover, .am-wishlist-btn:hover { color: var(--or); }
.am-cart-btn {
  background: var(--or);
  color: var(--noir);
  border: none;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.am-cart-btn:hover { background: var(--or-light); }
.am-cart-count {
  background: var(--noir);
  color: var(--or);
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.am-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--blanc);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ── MOBILE DRAWER ── */
.am-mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.am-mobile-drawer.open { transform: translateX(0); }
.am-drawer-close {
  position: absolute;
  top: 20px; left: 20px;
  background: none;
  border: none;
  color: var(--or);
  font-size: 28px;
  cursor: pointer;
}
.am-mobile-drawer a {
  font-family: var(--font-display);
  color: var(--blanc);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.am-mobile-drawer a:hover { color: var(--or); }
.am-drawer-logo {
  position: absolute;
  top: 16px; right: 20px;
}
.am-drawer-logo img { height: 44px; filter: drop-shadow(0 0 12px rgba(201,168,76,0.4)); }

/* ── HERO ── */
.am-hero {
  background: var(--noir);
  min-height: calc(100vh - 32px); /* 32px = WordPress admin bar */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
.logged-in .am-hero {
  min-height: calc(100vh - 32px);
}
body:not(.logged-in) .am-hero {
  min-height: 92vh;
}
.am-hero-particles {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 85% 20%, rgba(201,168,76,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 90%, rgba(201,168,76,0.03) 0%, transparent 60%);
}
.am-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.am-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  width: 100%;
}
.am-hero-content { animation: am-fadeUp 0.9s ease both; }
@keyframes am-fadeUp {
  from { opacity:0; transform: translateY(32px); }
  to   { opacity:1; transform: translateY(0); }
}
.am-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 40px;
  padding: 7px 16px;
  color: var(--or);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.am-hero-badge::before {
  content:'';
  width:6px; height:6px;
  background: var(--or);
  border-radius: 50%;
  animation: am-pulse 2s infinite;
}
@keyframes am-pulse { 0%,100%{opacity:1} 50%{opacity:0.2} }
.am-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 300;
  color: var(--blanc);
  line-height: 1.08;
  margin-bottom: 20px;
}
.am-hero h1 em { font-style: italic; color: var(--or); display: block; }
.am-hero-desc {
  color: var(--gris);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}
.am-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.am-hero-visual { animation: am-fadeUp 0.9s 0.2s ease both; }

/* Hero product card */
.am-hero-card {
  background: linear-gradient(135deg, #1c1c1c 0%, #111 100%);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-hero-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  width: 100%;
}
.am-hero-card-inner img {
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(201,168,76,0.25));
  transition: transform 0.6s var(--ease);
}
.am-hero-card:hover .am-hero-card-inner img { transform: scale(1.05) translateY(-8px); }
.am-hero-card-label {
  font-family: var(--font-display);
  color: var(--gris);
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 300;
}
.am-hero-badge-top {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--or);
  color: var(--noir);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 2px;
}
.am-hero-price-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(8,8,8,0.9);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 10px 16px;
  color: var(--blanc);
  font-size: 13px;
}
.am-hero-price-tag strong { color: var(--or); font-size: 22px; display: block; margin-top: 2px; }
.am-hero-float {
  position: absolute;
  top: -14px; left: -14px;
  width: 70px; height: 70px;
  background: var(--noir);
  border: 2px solid var(--or);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* ── TRUST BAR ── */
.am-trust {
  background: var(--noir-soft);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 20px 0;
}
.am-trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.am-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gris-light);
  font-size: 13px;
}
.am-trust-item > div {
  display: flex;
  flex-direction: column;
}
.am-trust-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--blanc);
}
.am-trust-item small {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.am-trust-icon { font-size: 20px; color: var(--or); flex-shrink: 0; }

/* ── PRODUCT CARD ── */
.am-product-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.am-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: rgba(201,168,76,0.25);
}
.am-product-thumb {
  aspect-ratio: 1;
  background: #f5f5f3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.am-product-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.am-product-card:hover .am-product-thumb img { transform: scale(1.07); }
.am-product-thumb .am-placeholder { font-size: 72px; }
.am-product-badges {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.am-badge {
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 2px;
  display: inline-block;
}
.am-badge-hot   { background: var(--danger); color: #fff; }
.am-badge-new   { background: var(--noir); color: var(--or); }
.am-badge-sale  { background: var(--or); color: var(--noir); }
.am-badge-promo { background: #8e44ad; color: #fff; }
.am-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.am-product-card:hover .am-product-overlay { opacity: 1; }
.am-quick-buy {
  background: var(--or);
  color: var(--noir);
  border: none;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--font-body);
  transform: translateY(10px);
  transition: transform 0.3s;
}
.am-product-card:hover .am-quick-buy { transform: translateY(0); }
.am-product-info { padding: 16px; }
.am-product-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 3px;
  line-height: 1.3;
}
.am-product-cat { font-size: 11px; color: var(--gris); letter-spacing: 0.5px; margin-bottom: 10px; }
.am-product-foot { display: flex; align-items: center; justify-content: space-between; }
.am-product-price { font-size: 17px; font-weight: 700; color: var(--noir); }
.am-product-price span { font-size: 12px; font-weight: 400; color: var(--gris); }
.am-product-old { font-size: 13px; color: var(--gris); text-decoration: line-through; }
.am-product-stars { color: var(--or); font-size: 12px; letter-spacing: 1px; }

/* ── GRID ── */
.am-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.am-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── PACKS ── */
.am-pack-card {
  background: var(--noir-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.am-pack-card::before {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.am-pack-card:hover { transform: translateY(-5px); border-color: var(--or); }
.am-pack-card:hover::before { opacity: 1; }
.am-pack-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1e1e1e 0%, #161616 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  gap: 12px;
  position: relative;
}
.am-pack-img img { object-fit: cover; width: 100%; height: 100%; }
.am-pack-qty {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--or);
  color: var(--noir);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 1px;
}
.am-pack-body { padding: 22px; }
.am-pack-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blanc);
  margin-bottom: 6px;
}
.am-pack-desc { font-size: 13px; color: var(--gris); margin-bottom: 18px; line-height: 1.6; }
.am-pack-pricing { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.am-pack-price { font-size: 26px; font-weight: 700; color: var(--or); }
.am-pack-old { font-size: 13px; color: var(--gris); text-decoration: line-through; }
.am-pack-saving {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--or);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 700;
}

/* ── OFFER / COUNTDOWN ── */
.am-offer-section {
  background: var(--noir);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  position: relative;
  overflow: hidden;
}
.am-offer-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.am-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.am-countdown { display: flex; gap: 12px; margin: 24px 0; }
.am-cd-item {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  min-width: 76px;
}
.am-cd-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--or);
  display: block;
  line-height: 1;
}
.am-cd-lbl { font-size: 10px; color: var(--gris); margin-top: 5px; letter-spacing: 1px; }
.am-stock-wrap { margin-bottom: 28px; }
.am-stock-txt {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gris-light);
  margin-bottom: 8px;
}
.am-stock-txt strong { color: var(--or); }
.am-stock-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; }
.am-stock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--or), var(--or-light));
  border-radius: 2px;
  width: 73%;
  animation: am-fill 2s ease 0.5s both;
}
@keyframes am-fill { from{width:0} to{width:73%} }
.am-offer-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-offer-product {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  position: relative;
  overflow: hidden;
}
.am-offer-product img { max-width: 80%; max-height: 80%; object-fit: contain; }
.am-offer-spin {
  position: absolute;
  top: -14px; left: -14px;
  width: 80px; height: 80px;
  background: var(--danger);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  border: 3px solid var(--blanc);
  animation: am-rot 10s linear infinite;
  line-height: 1.3;
}
@keyframes am-rot { to{transform:rotate(360deg)} }
.am-offer-price {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--or);
  color: var(--noir);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 20px;
}
.am-offer-price del { font-size: 13px; font-weight: 400; opacity: 0.7; }

/* ── REVIEWS ── */
.am-review-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.am-review-card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.am-review-stars { color: var(--or); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.am-review-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.am-review-footer { display: flex; align-items: center; gap: 12px; }
.am-review-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--or), var(--or-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--noir);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.am-review-name { font-weight: 700; font-size: 14px; }
.am-review-loc { font-size: 12px; color: var(--gris); }
.am-review-verified { font-size: 11px; color: var(--success); font-weight: 600; margin-top: 10px; }

/* ── STATS ── */
.am-stats { background: var(--noir); padding: 56px 0; }
.am-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.am-stat {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(201,168,76,0.08);
}
.am-stat:first-child { border-right: none; border-left: 1px solid rgba(201,168,76,0.08); }
.am-stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--or);
  display: block;
  line-height: 1;
}
.am-stat-lbl { font-size: 12px; color: var(--gris); margin-top: 8px; letter-spacing: 1px; }

/* ── NEWSLETTER ── */
.am-newsletter { background: var(--or); padding: 56px 0; text-align: center; }
.am-newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--noir);
  margin-bottom: 8px;
}
.am-newsletter p { color: rgba(0,0,0,0.65); font-size: 15px; margin-bottom: 28px; }
.am-nl-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.am-nl-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(0,0,0,0.2);
  background: transparent;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  border-radius: var(--radius-sm);
  transition: border-color 0.3s;
  direction: rtl;
}
.am-nl-input:focus { border-color: var(--noir); }
.am-nl-input::placeholder { color: rgba(0,0,0,0.45); }

/* ── FOOTER ── */
.am-footer {
  background: var(--noir);
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 64px 0 24px;
}
.am-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.am-footer-brand {}
.am-footer-logo { margin-bottom: 16px; }
.am-footer-logo img { height: 52px; filter: drop-shadow(0 0 10px rgba(201,168,76,0.3)); }
.am-footer-desc { font-size: 13px; color: var(--gris); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
.am-socials { display: flex; gap: 10px; }
.am-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gris);
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}
.am-social:hover { border-color: var(--or); color: var(--or); }
.am-footer-col h4 {
  color: var(--or);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.am-footer-col ul li { margin-bottom: 10px; }
.am-footer-col ul li a { color: var(--gris); font-size: 13px; transition: color 0.3s; }
.am-footer-col ul li a:hover { color: var(--or); }
.am-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.am-footer-bottom p { font-size: 12px; color: var(--gris); }
.am-payment { display: flex; gap: 8px; }
.am-payment-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--gris-light);
}

/* ── WA FLOAT ── */
.am-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.am-wa-label {
  background: var(--noir);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--blanc);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.am-wa-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  text-decoration: none;
  font-size: 24px;
  animation: am-float 3s ease-in-out infinite;
  transition: var(--transition);
}
.am-wa-btn:hover { transform: scale(1.12); animation: none; }
@keyframes am-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ── WOOCOMMERCE OVERRIDES ── */
.woocommerce-page { direction: rtl; }
.woocommerce ul.products li.product { text-align: right; }
.woocommerce ul.products li.product .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  background: var(--or) !important;
  color: var(--noir) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm) !important;
  letter-spacing: 0.5px !important;
  transition: var(--transition) !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
  background: var(--or-light) !important;
  color: var(--noir) !important;
}
.woocommerce ul.products li.product .price { color: var(--noir) !important; font-weight: 700 !important; }
.woocommerce ul.products li.product .onsale {
  background: var(--or) !important;
  color: var(--noir) !important;
  border-radius: 2px !important;
}
.woocommerce form .form-row label { color: var(--noir); font-weight: 600; font-size: 13px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
  border: 1px solid #ddd !important;
  border-radius: var(--radius) !important;
  padding: 12px 14px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  transition: border-color 0.3s !important;
  direction: rtl !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--or) !important;
  outline: none !important;
}
#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  border: 1px solid #ddd !important;
}
.woocommerce-cart h1,
.woocommerce-checkout h1,
.woocommerce-account h1 {
  font-family: var(--font-display) !important;
  font-weight: 300 !important;
  color: var(--noir) !important;
}
.woocommerce .woocommerce-breadcrumb { color: var(--gris); font-size: 13px; }
.woocommerce .woocommerce-breadcrumb a { color: var(--or); }
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--noir) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
}
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--or) !important;
  color: var(--noir) !important;
  font-weight: 700 !important;
}
.woocommerce-message { border-top-color: var(--or) !important; }
.woocommerce-message a.button { background: var(--or) !important; color: var(--noir) !important; }
.star-rating span::before { color: var(--or) !important; }
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  background: var(--or) !important;
  color: var(--noir) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 18px 32px !important;
  border-radius: var(--radius-sm) !important;
}

/* ── PAGE / SINGLE PRODUCT ── */
.am-page-hero {
  background: var(--noir);
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.am-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--blanc);
  font-weight: 300;
}
.am-page-hero h1 span { color: var(--or); }
.am-breadcrumb { color: var(--gris); font-size: 12px; margin-top: 10px; }
.am-breadcrumb a { color: var(--or); }

/* ── TOAST ── */
.am-toast {
  position: fixed;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--noir);
  color: var(--blanc);
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--or);
  font-size: 14px;
  opacity: 0;
  transition: all 0.4s;
  z-index: 99999;
  white-space: nowrap;
  box-shadow: var(--shadow-dark);
}
.am-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── SEARCH OVERLAY ── */
.am-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.95);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.am-search-overlay.open { opacity: 1; visibility: visible; }
.am-search-overlay input {
  background: none;
  border: none;
  border-bottom: 2px solid var(--or);
  color: var(--blanc);
  font-size: clamp(24px, 4vw, 48px);
  font-family: var(--font-display);
  font-weight: 300;
  text-align: center;
  padding: 16px 32px;
  outline: none;
  width: 80%;
  max-width: 640px;
  direction: rtl;
}
.am-search-overlay input::placeholder { color: rgba(255,255,255,0.25); }
.am-search-close {
  position: absolute;
  top: 24px; left: 24px;
  background: none;
  border: none;
  color: var(--or);
  font-size: 30px;
  cursor: pointer;
}
.am-search-hint { color: var(--gris); font-size: 13px; margin-top: 20px; letter-spacing: 1px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .am-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .am-footer-grid { grid-template-columns: 1fr 1fr; }
  .am-nav { gap: 20px; }
}

@media (max-width: 860px) {
  .am-nav { display: none; }
  .am-menu-toggle { display: block; }
  .am-hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .am-hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .am-hero h1 { font-size: 42px; }
  .am-offer-grid { grid-template-columns: 1fr; gap: 40px; }
  .am-offer-visual { order: -1; max-width: 260px; margin: 0 auto; }
  .am-grid-3 { grid-template-columns: 1fr 1fr; }
  .am-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .am-stat:nth-child(1),
  .am-stat:nth-child(2) { border-bottom: 1px solid rgba(201,168,76,0.08); }
}

@media (max-width: 540px) {
  .am-grid-3 { grid-template-columns: 1fr; }
  .am-grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .am-hero-actions { flex-direction: column; }
  .am-hero-actions .btn { width: 100%; }
  .am-trust-inner { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 8px; gap: 24px; }
  .am-countdown { gap: 8px; }
  .am-cd-item { min-width: 58px; padding: 10px 10px; }
  .am-cd-num { font-size: 28px; }
  .am-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .am-footer-bottom { flex-direction: column; text-align: center; }
  .am-nl-form { flex-direction: column; }
  .am-nl-form .btn { width: 100%; }
  .section-pad { padding: 56px 0; }
}

/* =============================================
   ABDOUMAHMOUD THEME v2.0 — ADDITIONS
   ============================================= */

/* ── HERO STATS ROW ── */
.am-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.am-hero-stat { text-align: center; }
.am-hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--or);
  font-weight: 400;
}
.am-hero-stat span {
  font-size: 11px;
  color: var(--gris);
  letter-spacing: 1px;
}
.am-hero-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(201,168,76,0.2);
}

/* ── HERO STATS DIVIDER ── */

/* ── WHY US SECTION ── */
.am-why-us { background: var(--blanc); }
.am-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.am-why-item {
  background: #fff;
  border: 1px solid #f0ede6;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.am-why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--or-pale);
}
.am-why-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.am-why-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 10px;
}
.am-why-item p {
  font-size: 13px;
  color: var(--gris);
  line-height: 1.7;
}

/* ── FAQ SECTION ── */
.am-faq-section { background: var(--blanc); }
.am-faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.am-faq-item {
  border: 1px solid #eee;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.3s;
}
.am-faq-item:hover { border-color: var(--or-pale); }
.am-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--noir);
  cursor: pointer;
  text-align: right;
  gap: 12px;
  transition: color 0.3s;
}
.am-faq-q:hover { color: var(--or); }
.am-faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--or-dim);
  color: var(--or);
  font-size: 18px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.am-faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  padding: 0 24px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* ── FINAL CTA ── */
.am-final-cta {
  background: var(--noir);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.am-final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.am-final-cta-inner {
  position: relative;
  z-index: 1;
}

/* ── CHECKOUT TRUST BADGES ── */
.am-checkout-trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px;
  background: #f8f7f4;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

/* ── PRODUCT PAGE: SHIPPING INFO ── */
.am-shipping-info {
  background: #f8f7f4;
  border-radius: 6px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 13px;
}
.am-shipping-info h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--noir);
}
.am-shipping-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  color: #555;
}
.am-shipping-row:last-child { border-bottom: none; }

/* ── RETURN POLICY BOX ── */
.am-return-box {
  border: 1px solid var(--or-pale);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 12px 0;
}
.am-return-box .icon { font-size: 20px; flex-shrink: 0; }

/* ── SECTION HEADER P ── */
.section-header p {
  font-size: 14px;
  color: var(--gris);
  margin-top: 10px;
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── RESPONSIVE: WHY GRID ── */
@media (max-width: 992px) {
  .am-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .am-why-grid { grid-template-columns: 1fr; gap: 16px; }
  .am-hero-stats { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .am-faq-q { font-size: 14px; }
  .am-final-cta { padding: 56px 0; }
}

/* ── ANNOUNCE CLOSE BUTTON ── */
.am-announce-close {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--noir);
  font-size: 16px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 4px;
}
.am-announce-close:hover { opacity: 1; }

/* ── DRAWER NAV LINKS ── */
.am-mobile-drawer > a:hover,
.am-mobile-drawer > a.current-menu-item { color: var(--or); }

/* ── WOO WRAPPER ── */
.am-woo-wrapper { padding-top: 0; }

/* ── WOO PAGE HERO ── */
.am-woo-page .am-page-hero { margin-bottom: 0; }

/* ── CHECKOUT PAGE SPECIFIC ── */
.woocommerce-checkout h3 {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 300 !important;
  margin-bottom: 16px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid #eee !important;
  color: var(--noir) !important;
}
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 24px;
}
.woocommerce #payment {
  background: #fff !important;
  border-radius: 6px !important;
  border: 1px solid #eee !important;
}
.woocommerce #payment div.payment_box { background: #f8f7f4 !important; }
.woocommerce #payment ul.payment_methods li label { font-size: 14px !important; }

/* ── COD highlight ── */
.payment_method_cod label::before {
  color: var(--or) !important;
}

/* ── ORDER RECEIVED ── */
.woocommerce-order-received .woocommerce-thankyou-order-received {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--success);
  text-align: center;
  margin-bottom: 24px;
}

/* ── MY ACCOUNT ── */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--noir) !important;
  border-radius: 6px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  color: var(--gris-light) !important;
  padding: 12px 20px !important;
  display: block !important;
  font-size: 13px !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  transition: color 0.3s !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--or) !important;
}

/* ── PRODUCT CATEGORY SUBCATS ── */
.am-subcats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.am-subcat-card {
  background: #f8f7f4;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 14px 20px;
  text-align: center;
  transition: all 0.3s;
  flex: 1;
  min-width: 130px;
}
.am-subcat-card:hover {
  border-color: var(--or);
  background: var(--or-pale);
  transform: translateY(-3px);
}
.am-subcat-card .icon { font-size: 32px; margin-bottom: 8px; display: block; }
.am-subcat-card span { font-size: 13px; font-weight: 600; color: var(--noir); }

/* ── SEO PAGES (static pages for SEO categories) ── */
.am-seo-page-intro {
  background: var(--blanc);
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.am-seo-page-intro h1 { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 300; }
.am-seo-page-intro p  { font-size: 15px; color: var(--gris); max-width: 540px; margin: 14px auto 0; line-height: 1.7; }

/* ── LOADING SPINNER ── */
.am-spinner {
  width: 24px; height: 24px;
  border: 2px solid rgba(201,168,76,0.2);
  border-top-color: var(--or);
  border-radius: 50%;
  animation: am-spin 0.7s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes am-spin { to { transform: rotate(360deg); } }

/* ── PRINT STYLES ── */
@media print {
  .am-header, .am-announce, .am-wa, .am-newsletter,
  .am-footer, .am-search-overlay, .am-mobile-drawer { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .am-product-price { color: #000 !important; }
}

/* ── HIGH CONTRAST / ACCESSIBILITY ── */
:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── RTL fixes for WC ── */
.woocommerce-page .woocommerce { direction: rtl; text-align: right; }
.woocommerce-page form.checkout { direction: rtl; }
.woocommerce-page .woocommerce-message,
.woocommerce-page .woocommerce-error,
.woocommerce-page .woocommerce-info { direction: rtl; text-align: right; }

/* =============================================
   FLOATING ELEMENTS (WhatsApp, Toast, Drawer,
   Search overlay, Drawer overlay)
   - position: fixed + extreme z-index to escape
     any ancestor stacking context created by
     transform/filter (common with Elementor).
   - Elements are also re-parented to <body> via
     JS (see main.js) for full safety.
   ============================================= */
.am-wa,
.am-toast,
.am-search-overlay,
.am-mobile-drawer {
  position: fixed !important;
  z-index: 2147483000 !important;
}
.am-wa { bottom: 24px !important; left: 24px !important; top: auto !important; right: auto !important; }

.am-drawer-overlay {
  position: fixed !important;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2147482999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.am-mobile-drawer.open ~ .am-drawer-overlay {
  opacity: 1;
  visibility: visible;
}

/* Ensure no theme wrapper creates a transform context */
.am-woo-wrapper, .elementor, .elementor-section, .elementor-widget-wrap {
  transform: none !important;
}

/* =============================================
   STATIC PAGE / BLOG POST CONTENT
   (used by page.php and single.php)
   ============================================= */
.am-page-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.85;
  color: #333;
}
.am-page-content h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  margin: 32px 0 14px;
  color: var(--noir);
}
.am-page-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 24px 0 10px;
  color: var(--noir);
}
.am-page-content p  { margin-bottom: 16px; }
.am-page-content ul { list-style: disc; padding-right: 24px; margin-bottom: 16px; }
.am-page-content ul li { margin-bottom: 6px; }
.am-page-content a  { color: var(--or); text-decoration: underline; }
.am-page-content img { border-radius: 6px; }
.am-page-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.am-page-content table td,
.am-page-content table th { border: 1px solid #eee; padding: 10px 14px; font-size: 14px; }
.am-page-content table th { background: #f8f7f4; font-weight: 700; }
.am-page-content blockquote {
  border-right: 3px solid var(--or);
  padding: 12px 20px;
  background: #f8f7f4;
  font-style: italic;
  color: #555;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}
