@import url('https://cdn.jsdelivr.net/npm/@mdi/font@7.2.96/css/materialdesignicons.min.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Rubik:wght@300;400;500;600;700&display=swap');

/* ============================================================
   Aromatic — Default Page Styles (shop, cart, checkout)
   Loaded before theme CSS so theme overrides take precedence.
   ============================================================ */

/* Shop page layout compatibility */
.shop-area { padding-top: 60px; padding-bottom: 60px; }
.shop-contents-wrapper { display: flex; gap: 24px; }
.shop-sidebar { min-width: 260px; }
.product-grid-wrapper { flex: 1; }

/* Cart & Checkout */
.cart-area { padding-top: 60px; padding-bottom: 60px; }
.checkout-area { padding-top: 60px; padding-bottom: 60px; }

/* Product single */
.single-product-details-area { padding-top: 60px; padding-bottom: 60px; }

/* Rating stars */
.rating-star .las.la-star,
.rating-star .las.la-star-half-alt { color: #f59e0b; }
.rating-star .lar.la-star { color: #d1d5db; }

/* ============================================================
   Aromatic ar- CSS Design System
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --ar-red:        #F83A26;
  --ar-red-d:      #D62D1B;
  --ar-red-light:  rgba(248,58,38,.08);
  --ar-gold:       #FFBA00;
  --ar-cream:      #F9F5F0;
  --ar-dark:       #1A1A1A;
  --ar-text:       #333333;
  --ar-muted:      #6B6B6B;
  --ar-border:     #E5E0D8;
  --ar-surface:    #FFFFFF;
  --ar-radius:     8px;
  --ar-radius-lg:  16px;
  --ar-shadow:     0 4px 20px rgba(0,0,0,0.08);
  --ar-shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --ar-font-head:  'Playfair Display', Georgia, serif;
  --ar-font-body:  'Rubik', -apple-system, sans-serif;
}

/* ── Page Banner / Breadcrumb ─────────────────────────────── */
.ar-page-banner {
  background: linear-gradient(135deg, var(--ar-dark) 0%, #2a1a1a 100%);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ar-page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(248,58,38,.15) 0%, transparent 60%);
  pointer-events: none;
}
.ar-page-banner .container { position: relative; z-index: 1; }
.ar-page-banner h1 {
  font-family: var(--ar-font-head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--ar-surface);
  margin-bottom: 14px;
  letter-spacing: -.3px;
}
.ar-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.ar-breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
.ar-breadcrumb a:hover { color: var(--ar-gold); }
.ar-breadcrumb span { color: rgba(255,255,255,.5); }

/* ── Buttons ──────────────────────────────────────────────── */
.ar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--ar-radius);
  font-family: var(--ar-font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all .22s ease;
  line-height: 1;
  white-space: nowrap;
}
.ar-btn-red {
  background: var(--ar-red);
  color: #fff;
  border-color: var(--ar-red);
}
.ar-btn-red:hover {
  background: var(--ar-red-d);
  border-color: var(--ar-red-d);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(248,58,38,.35);
}
.ar-btn-gold {
  background: var(--ar-gold);
  color: var(--ar-dark);
  border-color: var(--ar-gold);
}
.ar-btn-gold:hover {
  background: #e5a700;
  border-color: #e5a700;
  color: var(--ar-dark);
  transform: translateY(-1px);
}
.ar-btn-outline {
  background: transparent;
  color: var(--ar-red);
  border-color: var(--ar-red);
}
.ar-btn-outline:hover {
  background: var(--ar-red);
  color: #fff;
  transform: translateY(-1px);
}
.ar-btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

/* ── Sidebar Cards ────────────────────────────────────────── */
.ar-sidebar-card {
  background: var(--ar-surface);
  border: 1px solid var(--ar-border);
  border-radius: var(--ar-radius);
  padding: 20px;
  margin-bottom: 20px;
}
.ar-sidebar-title {
  font-family: var(--ar-font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--ar-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ar-red);
  letter-spacing: .3px;
}

/* ── Filter Items ─────────────────────────────────────────── */
.ar-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--ar-border);
  cursor: pointer;
  transition: color .2s;
  font-size: 13px;
  color: var(--ar-text);
}
.ar-filter-item:last-child { border-bottom: none; }
.ar-filter-item:hover { color: var(--ar-red); }
.ar-filter-count {
  background: var(--ar-cream);
  color: var(--ar-muted);
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  padding: 2px 8px;
  min-width: 24px;
  text-align: center;
}
.ar-filter-cursor { cursor: pointer; margin-bottom: 0; }
.ar-clear-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--ar-muted);
  text-decoration: none;
  transition: color .2s;
}
.ar-clear-link:hover { color: var(--ar-red); }

/* ── Price Inputs ─────────────────────────────────────────── */
.ar-price-inputs {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ar-price-input {
  flex: 1;
  border: 1.5px solid var(--ar-border);
  border-radius: var(--ar-radius);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--ar-dark);
  font-family: var(--ar-font-body);
  background: var(--ar-surface);
  transition: border-color .2s;
  width: 100%;
}
.ar-price-input:focus {
  outline: none;
  border-color: var(--ar-red);
}

/* ── Rating Filter ────────────────────────────────────────── */
.ar-rating-filter { cursor: pointer; }
.ar-star-active { color: var(--ar-gold); font-size: 14px; }
.ar-star-empty  { color: var(--ar-border); font-size: 14px; }

/* ── Shop Topbar / Sort Bar ───────────────────────────────── */
.ar-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 18px;
  background: var(--ar-cream);
  border-radius: var(--ar-radius);
  margin-bottom: 24px;
}
.ar-topbar-count {
  font-size: 13px;
  color: var(--ar-muted);
}
.ar-topbar-count strong { color: var(--ar-dark); font-weight: 700; }
.ar-sort-select {
  border: 1.5px solid var(--ar-border);
  border-radius: var(--ar-radius);
  padding: 8px 14px;
  font-size: 13px;
  font-family: var(--ar-font-body);
  color: var(--ar-dark);
  background: var(--ar-surface);
  cursor: pointer;
  transition: border-color .2s;
}
.ar-sort-select:focus { outline: none; border-color: var(--ar-red); }

/* ── Search Bar ───────────────────────────────────────────── */
.ar-search {
  display: flex;
  gap: 8px;
}
.ar-search input {
  flex: 1;
  border: 1.5px solid var(--ar-border);
  border-radius: var(--ar-radius);
  padding: 9px 14px;
  font-size: 13px;
  font-family: var(--ar-font-body);
  color: var(--ar-dark);
  background: var(--ar-surface);
  transition: border-color .2s;
}
.ar-search input:focus { outline: none; border-color: var(--ar-red); }
.ar-search button {
  background: var(--ar-red);
  color: #fff;
  border: none;
  border-radius: var(--ar-radius);
  padding: 9px 14px;
  cursor: pointer;
  font-size: 16px;
  transition: background .2s;
}
.ar-search button:hover { background: var(--ar-red-d); }

/* ── Product Card ─────────────────────────────────────────── */
.ar-card {
  background: var(--ar-surface);
  border-radius: var(--ar-radius-lg);
  border: 1px solid var(--ar-border);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ar-card:hover {
  box-shadow: var(--ar-shadow-lg);
  transform: translateY(-3px);
}
.ar-card-img {
  position: relative;
  overflow: hidden;
  background: var(--ar-cream);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ar-card:hover .ar-card-img img { transform: scale(1.06); }
.ar-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ar-muted);
  font-size: 48px;
}
.ar-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ar-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
  text-transform: uppercase;
  z-index: 2;
}
.ar-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: var(--ar-surface);
  border: 1px solid var(--ar-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
  color: var(--ar-muted);
  font-size: 16px;
}
.ar-card-wishlist:hover {
  background: var(--ar-red);
  border-color: var(--ar-red);
  color: #fff;
}
.ar-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ar-card-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--ar-red);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 6px;
}
.ar-card-name {
  font-family: var(--ar-font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--ar-dark);
  line-height: 1.4;
  margin-bottom: 6px;
  flex: 1;
}
.ar-card-name a { color: inherit; text-decoration: none; }
.ar-card-name a:hover { color: var(--ar-red); }
.ar-stars { margin-bottom: 10px; font-size: 12px; color: var(--ar-gold); }
.ar-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.ar-price-sale {
  font-size: 16px;
  font-weight: 700;
  color: var(--ar-red);
  font-family: var(--ar-font-head);
}
.ar-price-orig {
  font-size: 13px;
  color: var(--ar-muted);
  text-decoration: line-through;
}
.ar-card-atc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 16px;
  background: var(--ar-red);
  color: #fff;
  border: none;
  border-radius: var(--ar-radius);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ar-font-body);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.ar-card-atc:hover {
  background: var(--ar-red-d);
  color: #fff;
  transform: translateY(-1px);
}
/* Legacy cart buttons */
.add-to-cart-btn {
  background: var(--ar-red);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--ar-radius);
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
}
.add-to-cart-btn:hover { opacity: .85; }

/* ── Pagination ───────────────────────────────────────────── */
.ar-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
  padding: 20px 0;
}
.ar-page-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ar-border);
  border-radius: var(--ar-radius);
  background: var(--ar-surface);
  color: var(--ar-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--ar-font-body);
}
.ar-page-btn:hover, .ar-page-btn.active {
  background: var(--ar-red);
  border-color: var(--ar-red);
  color: #fff;
}

/* ── Shop wrap ────────────────────────────────────────────── */
.ar-shop-wrap { padding: 60px 0; }

/* ── Showing results ──────────────────────────────────────── */
.showing-results {
  font-size: 13px;
  color: var(--ar-muted);
}
.showing-results strong { color: var(--ar-dark); font-weight: 700; }

/* ── Auth Pages ───────────────────────────────────────────── */
.ar-auth-wrap { padding: 60px 0; }
.ar-auth-card {
  background: var(--ar-surface);
  border: 1px solid var(--ar-border);
  border-radius: var(--ar-radius-lg);
  padding: 40px;
  box-shadow: var(--ar-shadow);
}
.ar-auth-centered { text-align: center; margin-bottom: 28px; }
.ar-auth-logo { max-height: 50px; width: auto; margin-bottom: 16px; }
.ar-auth-title {
  font-family: var(--ar-font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--ar-dark);
  margin-bottom: 6px;
}
.ar-auth-logo-top { margin-top: 12px; }
.ar-auth-sub { font-size: 14px; color: var(--ar-muted); margin-bottom: 0; }
.ar-auth-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ar-dark);
  margin-bottom: 6px;
}
.ar-required { color: var(--ar-red); }
.ar-auth-input,
.ar-input,
.ar-select {
  display: block;
  width: 100%;
  border: 1.5px solid var(--ar-border);
  border-radius: var(--ar-radius);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--ar-font-body);
  color: var(--ar-dark);
  background: var(--ar-surface);
  transition: border-color .2s, box-shadow .2s;
}
.ar-auth-input:focus, .ar-input:focus, .ar-select:focus {
  outline: none;
  border-color: var(--ar-red);
  box-shadow: 0 0 0 3px rgba(248,58,38,.1);
}
.ar-input-wrap { position: relative; }
.ar-input-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ar-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  line-height: 1;
}
.ar-input-eye:hover { color: var(--ar-red); }
.ar-auth-btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.ar-remember-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 13px;
}
.ar-remember-label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.ar-auth-forgot { color: var(--ar-red); text-decoration: none; font-size: 13px; }
.ar-auth-forgot:hover { text-decoration: underline; }
.ar-auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ar-muted);
}
.ar-auth-switch a { color: var(--ar-red); text-decoration: none; font-weight: 600; }
.ar-terms-check { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--ar-muted); margin-bottom: 18px; }
.ar-terms-check a { color: var(--ar-red); }
.ar-generate-pwd { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ar-muted); text-decoration: none; margin-bottom: 18px; cursor: pointer; }
.ar-generate-pwd:hover { color: var(--ar-red); }
.ar-auth-max-wrap { max-width: 540px; margin: 0 auto; }
.ar-textarea {
  display: block;
  width: 100%;
  border: 1.5px solid var(--ar-border);
  border-radius: var(--ar-radius);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--ar-font-body);
  color: var(--ar-dark);
  background: var(--ar-surface);
  resize: vertical;
  transition: border-color .2s;
}
.ar-textarea:focus { outline: none; border-color: var(--ar-red); box-shadow: 0 0 0 3px rgba(248,58,38,.1); }

/* form--control override (checkout/existing forms) */
.form--control {
  border: 1.5px solid var(--ar-border) !important;
  border-radius: var(--ar-radius) !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-family: var(--ar-font-body) !important;
  color: var(--ar-dark) !important;
  transition: border-color .2s !important;
}
.form--control:focus {
  outline: none !important;
  border-color: var(--ar-red) !important;
  box-shadow: 0 0 0 3px rgba(248,58,38,.1) !important;
}

/* Live dropdown (state/city) */
.live-dropdown {
  position: absolute;
  background: var(--ar-surface);
  border: 1.5px solid var(--ar-border);
  border-radius: var(--ar-radius);
  width: 100%;
  z-index: 9999;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  box-shadow: var(--ar-shadow);
  top: 100%;
  left: 0;
}
.live-dropdown div {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  color: var(--ar-dark);
  transition: background .15s;
}
.live-dropdown div:hover { background: var(--ar-cream); color: var(--ar-red); }
.ar-auth-state-wrap, .ar-auth-city-wrap { position: relative; }
.ar-auth-state-dropdown, .ar-auth-city-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--ar-surface);
  border: 1.5px solid var(--ar-border);
  border-radius: var(--ar-radius);
  z-index: 9999;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: var(--ar-shadow);
}
.ar-auth-state-dropdown .list-group-item,
.ar-auth-city-dropdown .list-group-item {
  padding: 9px 14px;
  cursor: pointer;
  font-size: 13px;
  border: none;
  border-bottom: 1px solid var(--ar-border);
}
.ar-auth-state-dropdown .list-group-item:hover,
.ar-auth-city-dropdown .list-group-item:hover {
  background: var(--ar-cream);
  color: var(--ar-red);
}

/* ── User Dashboard ───────────────────────────────────────── */
.ar-dash-section { padding: 48px 0; }
.ar-dash-mobile-toggle {
  display: none;
  width: 100%;
  padding: 12px 18px;
  background: var(--ar-dark);
  color: #fff;
  border: none;
  border-radius: var(--ar-radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
  align-items: center;
  gap: 8px;
  font-family: var(--ar-font-body);
}
@media (max-width: 991px) {
  .ar-dash-mobile-toggle { display: flex; }
}
.ar-dash-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 991px) {
  .ar-dash-wrap { grid-template-columns: 1fr; }
}
.ar-dash-sidebar {
  background: var(--ar-dark);
  border-radius: var(--ar-radius-lg);
  overflow: hidden;
  position: sticky;
  top: 24px;
}
@media (max-width: 991px) {
  .ar-dash-sidebar { display: none; position: relative; top: auto; }
  .ar-dash-sidebar.open { display: block; }
}
.ar-dash-user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ar-dash-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ar-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ar-font-head);
  flex-shrink: 0;
}
.ar-dash-user-info { min-width: 0; }
.ar-dash-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ar-dash-email {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ar-dash-nav { list-style: none; margin: 0; padding: 10px 0; }
.ar-dash-nav li { position: relative; }
.ar-dash-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
  font-family: var(--ar-font-body);
}
.ar-dash-nav li a:hover { color: #fff; background: rgba(255,255,255,.06); }
.ar-dash-nav li a i { font-size: 18px; flex-shrink: 0; }
.ar-dash-nav li.active > a {
  color: #fff;
  background: rgba(248,58,38,.15);
  border-left: 3px solid var(--ar-gold);
}
.ar-dash-nav li.ar-dash-logout > a { color: rgba(248,58,38,.8); }
.ar-dash-nav li.ar-dash-logout > a:hover { color: var(--ar-red); background: rgba(248,58,38,.1); }
.ar-dash-content {
  background: var(--ar-surface);
  border: 1px solid var(--ar-border);
  border-radius: var(--ar-radius-lg);
  padding: 28px;
  min-height: 400px;
}
.ar-dash-section-title {
  font-family: var(--ar-font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ar-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ar-dash-box {
  background: var(--ar-surface);
  border: 1px solid var(--ar-border);
  border-radius: var(--ar-radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.ar-dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.ar-dash-table th {
  background: var(--ar-cream);
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--ar-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1.5px solid var(--ar-border);
}
.ar-dash-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ar-border);
  color: var(--ar-text);
  vertical-align: middle;
}
.ar-dash-table tr:last-child td { border-bottom: none; }
.ar-dash-table tr:hover td { background: var(--ar-cream); }
.ar-stat-card {
  background: var(--ar-surface);
  border: 1px solid var(--ar-border);
  border-radius: var(--ar-radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow .2s;
}
.ar-stat-card:hover { box-shadow: var(--ar-shadow); }
.ar-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--ar-radius);
  background: var(--ar-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ar-red);
  flex-shrink: 0;
}
.ar-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--ar-dark);
  font-family: var(--ar-font-head);
  line-height: 1.2;
}
.ar-stat-label { font-size: 12px; color: var(--ar-muted); margin-top: 2px; }
.ar-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
}
.ar-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--ar-border);
  font-size: 13px;
  color: var(--ar-muted);
}
.ar-summary-row.total {
  font-weight: 800;
  font-size: 15px;
  color: var(--ar-dark);
  border-bottom: none;
  padding-top: 12px;
}
.ar-summary-price { color: var(--ar-red); font-family: var(--ar-font-head); }
.ar-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--ar-radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--ar-border);
  background: var(--ar-surface);
  color: var(--ar-muted);
  transition: all .2s;
  font-family: var(--ar-font-body);
}
.ar-tab-btn.active, .ar-tab-btn:hover {
  background: var(--ar-red);
  border-color: var(--ar-red);
  color: #fff;
}

/* ── Blog Cards ───────────────────────────────────────────── */
.ar-blog-section { padding: 60px 0; }
.ar-blog-card {
  background: var(--ar-surface);
  border: 1px solid var(--ar-border);
  border-radius: var(--ar-radius-lg);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ar-blog-card:hover { box-shadow: var(--ar-shadow-lg); transform: translateY(-3px); }
.ar-blog-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--ar-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.ar-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ar-blog-card:hover .ar-blog-img img { transform: scale(1.05); }
.ar-blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ar-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.ar-blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.ar-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--ar-muted);
}
.ar-blog-meta a { color: inherit; text-decoration: none; }
.ar-blog-title {
  font-family: var(--ar-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ar-dark);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.ar-blog-title a { color: inherit; text-decoration: none; }
.ar-blog-title a:hover { color: var(--ar-red); }
.ar-blog-excerpt { font-size: 13px; color: var(--ar-muted); margin-bottom: 14px; line-height: 1.6; }
/* Blog sidebar */
.ar-sb-card {
  background: var(--ar-surface);
  border: 1px solid var(--ar-border);
  border-radius: var(--ar-radius);
  padding: 20px;
  margin-bottom: 20px;
}
.ar-sb-title {
  font-family: var(--ar-font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--ar-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ar-red);
}
.ar-sb-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--ar-border);
  font-size: 13px;
}
.ar-sb-cat-row:last-child { border-bottom: none; }
.ar-sb-cat-link { color: var(--ar-text); text-decoration: none; transition: color .2s; }
.ar-sb-cat-link:hover { color: var(--ar-red); }
.ar-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: var(--ar-cream);
  border: 1px solid var(--ar-border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--ar-dark);
  text-decoration: none;
  transition: all .2s;
}
.ar-tag-pill:hover { background: var(--ar-red); border-color: var(--ar-red); color: #fff; }
.ar-sidebar-search { display: flex; gap: 8px; }
.ar-sidebar-search input {
  flex: 1;
  border: 1.5px solid var(--ar-border);
  border-radius: var(--ar-radius);
  padding: 9px 12px;
  font-size: 13px;
  color: var(--ar-dark);
  font-family: var(--ar-font-body);
}
.ar-sidebar-search input:focus { outline: none; border-color: var(--ar-red); }
.ar-sidebar-search button {
  background: var(--ar-red);
  color: #fff;
  border: none;
  border-radius: var(--ar-radius);
  padding: 9px 14px;
  cursor: pointer;
  font-size: 16px;
}
.ar-recent-post {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ar-border);
}
.ar-recent-post:last-child { border-bottom: none; }
.ar-recent-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--ar-radius);
  overflow: hidden;
  flex-shrink: 0;
}
.ar-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ar-recent-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ar-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  line-height: 1.4;
}
.ar-recent-title:hover { color: var(--ar-red); }
.ar-recent-date { font-size: 11px; color: var(--ar-muted); display: flex; align-items: center; gap: 4px; }

/* ── Digital Product Card ─────────────────────────────────── */
.ar-dp-card {
  background: var(--ar-surface);
  border: 1px solid var(--ar-border);
  border-radius: var(--ar-radius-lg);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ar-dp-card:hover { box-shadow: var(--ar-shadow-lg); transform: translateY(-3px); }
.ar-dp-img {
  position: relative;
  overflow: hidden;
  background: var(--ar-cream);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ar-dp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ar-dp-card:hover .ar-dp-img img { transform: scale(1.05); }
.ar-dp-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.ar-dp-cat { font-size: 11px; font-weight: 700; color: var(--ar-red); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 6px; }
.ar-dp-name { font-family: var(--ar-font-head); font-size: 14px; font-weight: 700; color: var(--ar-dark); margin-bottom: 10px; flex: 1; line-height: 1.4; }
.ar-dp-name a { color: inherit; text-decoration: none; }
.ar-dp-name a:hover { color: var(--ar-red); }
.ar-dp-price { font-size: 16px; font-weight: 800; color: var(--ar-red); font-family: var(--ar-font-head); margin-bottom: 12px; }

/* ── Hero Widget ──────────────────────────────────────────── */
.ar-hero-widget {
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ar-hero-widget::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  pointer-events: none;
}
.ar-hero-content { position: relative; z-index: 1; }
.ar-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,186,0,.15);
  color: var(--ar-gold);
  border: 1px solid rgba(255,186,0,.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ar-hero-title {
  font-family: var(--ar-font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.ar-hero-title em { color: var(--ar-red); font-style: normal; }
.ar-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.ar-hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.ar-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--ar-radius-lg);
  object-fit: cover;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.4));
}
.ar-hero-placeholder {
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: rgba(255,255,255,.2);
}

/* ── Promo Widget ─────────────────────────────────────────── */
.ar-promo-widget {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
    background:var(--ar-bg);
}
.ar-promo-widget::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.ar-promo-title {
  font-family: var(--ar-font-head);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
}
.ar-promo-title strong { color: var(--ar-gold); }
.ar-promo-sub { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.ar-promo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,.2);
  height: 100%;
  min-height: 160px;
}

/* ── Payment Gateway (cart/checkout compat) ───────────────── */
.payment-gateway-wrapper ul {
  flex-wrap: wrap;
  display: flex;
  padding: 0;
  list-style: none;
  gap: 8px;
}
.payment-gateway-wrapper ul li {
  max-width: 100px;
  cursor: pointer;
  box-sizing: border-box;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--ar-border);
  border-radius: var(--ar-radius);
  padding: 4px;
  transition: border-color .2s;
}
.payment-gateway-wrapper ul li.selected {
  border-color: var(--ar-red);
}
.payment-gateway-wrapper ul li.selected::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 18px; height: 18px;
  background: var(--ar-red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
  border-radius: 0 0 0 var(--ar-radius);
}

/* ── Coupon radio (checkout) ──────────────────────────────── */
.coupon-radio-item { display: flex; align-items: baseline; gap: 5px; }
.coupon-radio-item input {
  appearance: none;
  background-color: #fff;
  margin: 0;
  width: 16px; height: 16px;
  border: 1px solid var(--ar-border);
  border-radius: 50%;
  position: relative;
  transition: all .2s;
  cursor: pointer;
}
.coupon-radio-item input:before {
  content: "";
  position: absolute;
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  top: 3px; left: 3px;
  background-color: var(--ar-red);
  transform: scale(0);
  border-radius: 50%;
  transition: all .2s;
}
.coupon-radio-item input:checked::before { transform: scale(1); }
.coupon-radio-item input:checked { border-color: var(--ar-red); }
