/* =========================================================
   AM05 STORE - PREMIUM REDESIGN
   Noir / Bleu / Cyan / Gold
========================================================= */

:root {
  --primary: #2563eb;
  --primary-light: #38bdf8;
  --primary-dark: #1e40af;

  --gold: #f59e0b;
  --green: #22c55e;
  --red: #ef4444;

  --bg: #020617;
  --bg-soft: #05070d;
  --card: #0b1220;
  --card2: #111827;

  --text: #f8fafc;
  --white: #ffffff;
  --muted: #a1a1aa;

  --border: rgba(255,255,255,.12);
  --border-blue: rgba(56,189,248,.22);

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;

  --shadow: 0 24px 70px rgba(0,0,0,.38);
  --shadow-blue: 0 0 35px rgba(37,99,235,.24);

  --transition: .25s ease;
}

/* =========================================================
   BASE
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.18), transparent 32%),
    radial-gradient(circle at top right, rgba(56,189,248,.10), transparent 36%),
    linear-gradient(180deg, #020617 0%, #05070d 55%, #020617 100%);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 72px 0;
}

small {
  color: var(--muted);
}

hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-primary,
.btn-outline,
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 12px 32px rgba(37,99,235,.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(37,99,235,.38);
}

.btn-outline {
  color: var(--primary-light);
  background: rgba(56,189,248,.06);
  border: 1px solid rgba(56,189,248,.36);
}

.btn-outline:hover {
  color: #fff;
  background: rgba(56,189,248,.16);
  transform: translateY(-2px);
}

.btn-danger,
.btn-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  color: var(--red);
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.34);
  transition: var(--transition);
}

.btn-danger:hover,
.btn-remove:hover {
  color: #fff;
  background: rgba(239,68,68,.24);
  transform: translateY(-2px);
}

/* =========================================================
   COMMON CARDS
========================================================= */

.card,
.product-card,
.admin-panel,
.checkout-box,
.summary-box,
.stat-card,
.category-card,
.offer-form-box,
.offer-trust-box {
  background: linear-gradient(145deg, rgba(15,23,42,.96), rgba(2,6,23,.96));
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.category-card {
  padding: 28px;
}

.card p,
.category-card p {
  color: var(--muted);
}

/* =========================================================
   HEADER / NAVBAR
========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(2,6,23,.92);
  border-bottom: 1px solid rgba(56,189,248,.22);
  backdrop-filter: blur(16px);
}

.nav-container,
.header-content {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 999px;
  filter: drop-shadow(0 0 14px rgba(56,189,248,.3));
}

.logo-text {
  color: #fff;
  font-weight: 900;
}

.nav-links,
.navbar {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 900;
}

.nav-links a,
.navbar a {
  color: #e5e7eb;
  transition: var(--transition);
}

.nav-links a:hover,
.navbar a:hover {
  color: var(--primary-light);
}

.nav-actions,
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-whatsapp {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(34,197,94,.12);
  color: #86efac;
  border: 1px solid rgba(34,197,94,.3);
}

.cart-link {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 12px 30px rgba(37,99,235,.24);
}

.cart-link span,
.cart-count,
#cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #000;
  font-size: 12px;
  font-weight: 900;
}

.mobile-menu-btn,
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* =========================================================
   LANGUAGE SWITCHER
========================================================= */

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}

.lang-switcher a {
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}

.lang-switcher a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
}

/* =========================================================
   HERO / PAGE HERO
========================================================= */

.hero,
.page-hero,
.home-hero {
  padding: 76px 0;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(56,189,248,.12), transparent 40%);
}

.page-hero {
  text-align: center;
}

.hero-content,
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,.10);
  color: var(--primary-light);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px;
  border: 1px solid rgba(56,189,248,.34);
}

.hero h1,
.page-hero h1,
.home-hero-content h1 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  margin-bottom: 20px;
  color: #fff;
}

.hero p,
.page-hero p,
.home-hero-content p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero-buttons,
.home-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image,
.home-hero-card,
.hero-offer-card {
  background: linear-gradient(145deg, rgba(15,23,42,.96), rgba(2,6,23,.96));
  border: 1px solid rgba(56,189,248,.22);
  padding: 18px;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.hero-image img {
  height: 470px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.home-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.home-hero-features div,
.feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 16px;
}

.home-hero-features strong,
.feature-icon {
  font-size: 28px;
}

.home-hero-features span,
.feature-card h3 {
  color: #fff;
  font-weight: 900;
}

.hero-offer-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-offer-card span {
  color: var(--gold);
  font-weight: 900;
}

.hero-offer-card h2 {
  color: #fff;
  font-size: 34px;
  margin: 12px 0;
}

.hero-offer-card p,
.feature-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================================
   SECTIONS / FEATURES
========================================================= */

.section-header,
.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.section-header h2,
.section-title h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  margin: 12px 0;
}

.section-header p,
.section-title p {
  color: var(--muted);
}

.features-grid,
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  text-align: center;
}

/* =========================================================
   PRODUCTS / BOUTIQUE
========================================================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
  border-color: rgba(56,189,248,.38);
}

.product-image {
  height: 270px;
  position: relative;
  background: #05070d;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge,
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), #fde68a);
  color: #000;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.product-content {
  padding: 18px;
}

.product-category {
  display: inline-flex;
  color: var(--primary-light);
  background: rgba(56,189,248,.09);
  border: 1px solid rgba(56,189,248,.22);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.product-content h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.product-content p {
  color: var(--muted);
}

.product-rating,
.stars,
.review-stars {
  color: var(--gold);
  margin: 8px 0;
}

.product-price,
.price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.product-price strong,
.price,
.details-price {
  color: var(--primary-light);
  font-size: 24px;
  font-weight: 900;
}

.product-price span,
.old-price,
.details-old-price {
  color: #71717a;
  text-decoration: line-through;
}

.product-actions,
.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-actions .btn-primary,
.product-actions .btn-outline {
  min-height: 44px;
  padding: 0 14px;
}

.product-stock {
  margin: 10px 0;
  font-size: 13px;
  font-weight: 900;
}

.stock-ok,
.stock-available {
  color: var(--green);
}

.stock-out,
.stock-empty {
  color: var(--red);
}

/* Boutique filters */

.shop-toolbar,
.shop-filter-panel {
  background: linear-gradient(145deg, rgba(15,23,42,.96), rgba(2,6,23,.96));
  border: 1px solid rgba(56,189,248,.18);
  border-radius: 26px;
  padding: 22px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.category-filters,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filters a,
.filter-btn {
  color: var(--muted);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  transition: var(--transition);
}

.category-filters a:hover,
.category-filters a.active,
.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
}

/* =========================================================
   FORMS
========================================================= */

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
  color: #fff;
}

.form-group input,
.form-group textarea,
.form-group select,
.shop-controls input,
.admin-tools input,
.admin-tools select,
.order-actions select,
.checkout-box select {
  width: 100%;
  background: #05070d;
  color: #fff;
  border: 1px solid rgba(56,189,248,.18);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  font-weight: 700;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.admin-tools input:focus,
.admin-tools select:focus {
  border-color: rgba(56,189,248,.65);
  box-shadow: 0 0 0 3px rgba(56,189,248,.12);
}

/* =========================================================
   CART / CHECKOUT
========================================================= */

.cart-layout,
.checkout-layout,
.cart-page-layout,
.admin-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.checkout-box,
.summary-box,
.admin-panel,
.cart-box {
  padding: 26px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.total-line strong {
  color: var(--gold);
  font-size: 22px;
}

.cart-item,
.checkout-item,
.cart-page-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.cart-item img,
.checkout-item img,
.cart-page-item img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
  background: #111827;
}

.payment-box,
.success-card {
  background: #05070d;
  border: 1px solid rgba(56,189,248,.28);
  border-radius: 18px;
  padding: 18px;
  margin-top: 20px;
}

.loyalty-info-box {
  background: rgba(245,158,11,.08);
  border-color: rgba(245,158,11,.25);
}

.loyalty-info-box h3 {
  color: var(--gold);
}

/* Cart page */

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 16px;
}

.cart-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 5px;
}

.cart-qty-control button {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.cart-qty-control span {
  min-width: 28px;
  text-align: center;
  color: #fff;
  font-weight: 900;
}

/* =========================================================
   PRODUCT DETAILS
========================================================= */

.product-details-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.product-gallery-box,
.product-info-box,
.product-details-image,
.product-details-info {
  background: linear-gradient(145deg, rgba(15,23,42,.96), rgba(2,6,23,.96));
  border: 1px solid rgba(56,189,248,.18);
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.main-product-image,
.product-details-image {
  position: relative;
}

.main-product-image img,
.product-details-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  background: #05070d;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.product-thumbnails button,
.thumbnail-btn {
  width: 82px;
  height: 82px;
  border: 2px solid transparent;
  background: #05070d;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.product-thumbnails button.active,
.thumbnail-btn.active,
.thumbnail-btn:hover {
  border-color: var(--primary-light);
}

.product-thumbnails img,
.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-box h2,
.product-details-info h2 {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  margin: 14px 0;
}

.product-description,
.details-info-box div,
.share-box {
  background: #05070d;
  border: 1px solid rgba(56,189,248,.14);
  border-radius: 18px;
  padding: 18px;
  margin-top: 22px;
}

.product-description p,
.details-description,
.details-info-box p,
.share-box p {
  color: var(--muted);
}

.product-detail-actions,
.details-actions,
.share-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.product-trust-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.product-trust-box div {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 14px;
}

/* =========================================================
   OFFER / LANDING PAGE
========================================================= */

.offer-hero {
  padding: 70px 0 40px;
  background:
    radial-gradient(circle at top left, rgba(245,158,11,.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(56,189,248,.14), transparent 40%);
}

.offer-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.offer-image-box {
  position: relative;
  background: linear-gradient(145deg, rgba(15,23,42,.96), rgba(2,6,23,.96));
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.offer-image-box img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  background: #05070d;
}

.offer-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #ef4444, var(--gold));
}

.offer-content h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  margin: 16px 0;
}

.offer-description {
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
  margin-bottom: 20px;
}

.offer-price-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.offer-price-box strong {
  color: var(--gold);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 900;
}

.offer-price-box span {
  color: #71717a;
  font-size: 24px;
  text-decoration: line-through;
}

.offer-delivery {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.26);
  color: #bbf7d0;
  font-weight: 900;
  margin-bottom: 18px;
}

.offer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
}

.offer-features div {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 12px;
  color: #fff;
  font-weight: 800;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.offer-order-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.offer-form-box h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 8px;
}

.offer-form-box > p {
  color: var(--muted);
  margin-bottom: 18px;
}

.offer-summary-mini {
  background: #05070d;
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.offer-summary-mini div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.offer-summary-mini strong {
  color: #fff;
}

.offer-summary-total {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 10px;
  font-size: 18px;
}

.offer-summary-total strong {
  color: var(--gold);
}

.offer-trust-box {
  position: sticky;
  top: 100px;
}

.offer-trust-box h3 {
  margin-bottom: 14px;
}

.offer-trust-box div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  background: #05070d;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
}

/* Offers admin */

.offers-admin-list {
  display: grid;
  gap: 18px;
}

.offer-admin-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  background: #05070d;
  border: 1px solid rgba(245,158,11,.22);
  border-radius: 22px;
  padding: 14px;
}

.offer-admin-disabled {
  opacity: .62;
}

.offer-admin-card > img {
  width: 130px;
  height: 130px;
  border-radius: 18px;
  object-fit: cover;
  background: #111827;
}

.offer-admin-info p {
  color: var(--muted);
  margin-bottom: 7px;
}

.offer-link-box input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--primary-light);
  border-radius: 12px;
  padding: 10px;
  font-weight: 800;
}

.offer-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.offer-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.offer-stats-grid div {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 10px;
}

.offer-stats-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}

/* =========================================================
   CONFIRMATION / LOYALTY
========================================================= */

.confirmation-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}

.confirmation-card {
  background: linear-gradient(145deg, rgba(15,23,42,.96), rgba(2,6,23,.96));
  border: 1px solid rgba(34,197,94,.24);
  border-radius: 28px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.confirmation-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.35);
  font-size: 34px;
}

.confirmation-number {
  background: #05070d;
  border: 1px solid rgba(56,189,248,.14);
  border-radius: 18px;
  padding: 18px;
  margin: 22px 0;
}

.confirmation-number strong {
  color: var(--primary-light);
  font-size: 24px;
}

.confirmation-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.confirmation-product {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
  background: #05070d;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 10px;
}

.confirmation-product img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}

.loyalty-card-box,
.loyalty-admin-card {
  background: linear-gradient(135deg, rgba(245,158,11,.12), rgba(59,130,246,.08)), #05070d;
  border: 1px solid rgba(245,158,11,.32);
  border-radius: 22px;
  padding: 18px;
}

.loyalty-card-complete,
.loyalty-admin-complete {
  border-color: rgba(34,197,94,.4);
  background: linear-gradient(135deg, rgba(34,197,94,.14), rgba(245,158,11,.1)), #05070d;
}

.loyalty-card-header,
.loyalty-admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.loyalty-card-header span,
.loyalty-admin-top span {
  display: block;
  color: var(--gold);
  font-weight: 900;
}

.loyalty-card-header h3,
.loyalty-admin-top h3 {
  color: #fff;
  font-size: 24px;
}

.loyalty-card-header strong,
.loyalty-admin-badge {
  min-width: 76px;
  height: 76px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #ef4444);
  font-size: 18px;
  font-weight: 900;
}

.loyalty-card-complete .loyalty-card-header strong,
.loyalty-admin-complete .loyalty-admin-badge {
  background: linear-gradient(135deg, var(--green), #16a34a);
}

.loyalty-progress-bar,
.loyalty-admin-progress {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  margin: 16px 0;
}

.loyalty-progress-bar div,
.loyalty-admin-progress div {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #ef4444);
}

.loyalty-card-complete .loyalty-progress-bar div,
.loyalty-admin-complete .loyalty-admin-progress div {
  background: linear-gradient(135deg, var(--green), #16a34a);
}

.loyalty-admin-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.loyalty-admin-client {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.loyalty-admin-client p {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 10px;
}

.loyalty-admin-client span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 5px;
}

.loyalty-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================================================
   ADMIN
========================================================= */

.admin-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.admin-tab {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(56,189,248,.18);
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: var(--transition);
}

.admin-tab:hover,
.admin-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-color: transparent;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.stat-card {
  padding: 24px;
}

.stat-card span {
  color: var(--muted);
}

.stat-card strong {
  display: block;
  color: var(--primary-light);
  font-size: 34px;
  margin-top: 6px;
}

.admin-panel-header,
.order-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-search-tools {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto auto auto;
  gap: 10px;
  width: 100%;
  margin-top: 18px;
}

.order-card {
  background: #05070d;
  border: 1px solid rgba(56,189,248,.15);
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 16px;
}

.order-status {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
}

.status-new {
  background: rgba(56,189,248,.14);
  color: var(--primary-light);
}

.status-confirmed {
  background: rgba(245,158,11,.14);
  color: var(--gold);
}

.status-delivered {
  background: rgba(34,197,94,.14);
  color: var(--green);
}

.status-cancelled {
  background: rgba(239,68,68,.14);
  color: var(--red);
}

.order-client {
  color: var(--muted);
  margin-bottom: 16px;
}

.order-items {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 0;
  margin-bottom: 14px;
}

.order-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
}

.order-item img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.order-actions,
.admin-tools {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Product admin */

.product-admin-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.product-admin-item img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
}

.product-admin-info p {
  color: var(--muted);
}

.product-admin-info strong {
  color: var(--primary-light);
  font-size: 20px;
}

.product-admin-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-hidden-admin {
  opacity: .65;
}

.product-status-active,
.product-status-hidden,
.coupon-active,
.coupon-inactive {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.product-status-active,
.coupon-active {
  color: var(--green);
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
}

.product-status-hidden,
.coupon-inactive {
  color: var(--red);
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.25);
}

/* Dashboard charts */

.dashboard-charts {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  margin-top: 28px;
}

.chart-box {
  position: relative;
  height: 320px;
  background: #05070d;
  border: 1px solid rgba(56,189,248,.12);
  border-radius: 18px;
  padding: 18px;
}

/* Lists */

.profit-list,
.returns-city-list,
.returns-list,
.returns-tips,
.low-stock-list,
.top-products-list,
.report-list,
.expenses-list {
  display: grid;
  gap: 14px;
}

.profit-item,
.returns-city-item,
.low-stock-item,
.top-product-item,
.report-list-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  background: #05070d;
  border: 1px solid rgba(56,189,248,.14);
  border-radius: 18px;
  padding: 14px;
}

.profit-rank,
.returns-rank,
.top-rank,
.report-rank {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.returns-rank {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.return-card {
  background: #05070d;
  border: 1px solid rgba(239,68,68,.22);
  border-radius: 22px;
  padding: 18px;
}

.return-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 14px 0;
}

.return-grid div {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 12px;
}

.return-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Pagination */

.pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}

.page-link {
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #05070d;
  color: #fff;
  border: 1px solid rgba(56,189,248,.18);
  font-weight: 900;
}

.page-link:hover,
.page-link.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
}

/* =========================================================
   REVIEWS
========================================================= */

.reviews-layout,
.product-reviews-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.reviews-list,
.admin-reviews-list {
  display: grid;
  gap: 14px;
}

.review-card,
.admin-review-card {
  background: #05070d;
  border: 1px solid rgba(56,189,248,.16);
  border-radius: 18px;
  padding: 18px;
}

.review-header,
.admin-review-header,
.review-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.review-card p,
.admin-review-card p {
  color: var(--muted);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #020617;
  border-top: 1px solid rgba(56,189,248,.18);
  padding-top: 55px;
  margin-top: 40px;
}

.footer-grid,
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 14px;
}

.footer a,
.footer p {
  color: #d7d7d7;
  display: block;
  margin-bottom: 8px;
}

.footer a:hover {
  color: var(--primary-light);
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  margin-top: 35px;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* =========================================================
   FLOATING / TOAST / CHATBOT BASIC
========================================================= */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 28px;
  z-index: 2500;
  box-shadow: 0 12px 35px rgba(37,211,102,.35);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 13px 22px;
  border-radius: 999px;
  opacity: 0;
  transition: .3s;
  z-index: 9999;
  font-weight: 900;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Admin notification */

.admin-new-order-alert {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 24px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(34,197,94,.16), rgba(15,23,42,.95));
  border: 1px solid rgba(34,197,94,.35);
}

.admin-new-order-alert.active {
  display: flex;
}

/* =========================================================
   RTL ARABIC SUPPORT
========================================================= */

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .nav-container,
html[dir="rtl"] .nav-links,
html[dir="rtl"] .nav-actions,
html[dir="rtl"] .checkout-layout,
html[dir="rtl"] .summary-line,
html[dir="rtl"] .order-actions,
html[dir="rtl"] .forcelog-actions,
html[dir="rtl"] .offer-layout,
html[dir="rtl"] .offer-order-layout,
html[dir="rtl"] .product-details-layout,
html[dir="rtl"] .confirmation-layout,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .products-grid {
  direction: rtl;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .product-badge,
html[dir="rtl"] .badge {
  left: auto;
  right: 14px;
}

html[dir="rtl"] .offer-badge {
  right: auto;
  left: 28px;
}

html[dir="rtl"] .cart-link span,
html[dir="rtl"] .cart-count,
html[dir="rtl"] #cart-count {
  right: auto;
  left: -7px;
}

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

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

  .admin-search-tools {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 950px) {
  .mobile-menu-btn,
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links,
  .navbar {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: rgba(2,6,23,.98);
    border-bottom: 1px solid rgba(56,189,248,.18);
    padding: 18px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.active,
  .navbar.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .navbar a {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
  }

  .hero-content,
  .home-hero-grid,
  .offer-layout,
  .offer-order-layout,
  .cart-layout,
  .checkout-layout,
  .cart-page-layout,
  .admin-layout,
  .product-details-layout,
  .confirmation-layout,
  .reviews-layout,
  .product-reviews-layout,
  .dashboard-charts {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .features-grid,
  .footer-grid,
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .kpi-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-trust-box {
    position: static;
  }

  .product-trust-box {
    grid-template-columns: 1fr;
  }

  .loyalty-admin-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .admin-panel-header,
  .order-card-header,
  .cart-header,
  .review-header,
  .admin-review-header,
  .admin-new-order-alert {
    flex-direction: column;
  }

  .return-grid,
  .loyalty-admin-client,
  .offer-stats-grid {
    grid-template-columns: 1fr;
  }

  .offer-features,
  .footer-grid,
  .footer-content,
  .grid-3,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .offer-admin-card {
    grid-template-columns: 1fr;
  }

  .offer-admin-card > img {
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 50px 0;
  }

  .hero,
  .page-hero,
  .home-hero,
  .offer-hero {
    padding: 52px 0 34px;
  }

  .products-grid,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .hero-image img,
  .offer-image-box img,
  .main-product-image img,
  .product-details-image img {
    height: 330px;
  }

  .product-actions,
  .product-card-actions {
    grid-template-columns: 1fr;
  }

  .cart-item,
  .checkout-item,
  .cart-page-item,
  .product-admin-item {
    grid-template-columns: 76px 1fr;
  }

  .cart-page-total,
  .btn-remove,
  .product-admin-actions,
  .confirmation-product b {
    grid-column: 1 / -1;
  }

  .admin-search-tools {
    grid-template-columns: 1fr;
  }

  .admin-search-tools .btn-primary,
  .admin-search-tools .btn-outline,
  .offer-actions .btn-primary,
  .offer-actions .btn-outline,
  .confirmation-actions .btn-primary,
  .confirmation-actions .btn-outline,
  .product-detail-actions .btn-primary,
  .product-detail-actions .btn-outline {
    width: 100%;
  }

  .loyalty-card-header,
  .loyalty-admin-top {
    flex-direction: column;
    align-items: stretch;
  }

  .loyalty-card-header strong,
  .loyalty-admin-badge {
    width: 100%;
    height: 54px;
    border-radius: 16px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

/* =========================================================
   PRINT
========================================================= */

@media print {
  .header,
  .footer,
  .invoice-actions,
  .whatsapp-float,
  .am05-chatbot,
  .mobile-bottom-nav {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  .card,
  .admin-panel,
  .invoice-box {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}
/* =========================================================
   AM05 TECH - DARK NEON PREMIUM STYLE
   Style inspiré de l'image fournie
========================================================= */

:root {
  --am05-bg: #030711;
  --am05-bg2: #07111f;
  --am05-card: rgba(10, 18, 32, .72);
  --am05-card2: rgba(15, 23, 42, .86);
  --am05-blue: #0b7cff;
  --am05-blue2: #38bdf8;
  --am05-glow: rgba(37, 99, 235, .55);
  --am05-text: #f8fafc;
  --am05-muted: #94a3b8;
  --am05-border: rgba(96, 165, 250, .28);
  --am05-gold: #facc15;
}

/* Global background */
body {
  background:
    radial-gradient(circle at 70% 10%, rgba(37,99,235,.20), transparent 30%),
    radial-gradient(circle at 10% 20%, rgba(14,165,233,.12), transparent 32%),
    linear-gradient(180deg, #020617 0%, #030711 45%, #020617 100%) !important;
  color: var(--am05-text);
}

/* Header like the image */
.header {
  background: rgba(3, 7, 18, .78) !important;
  border-bottom: 1px solid rgba(59,130,246,.18) !important;
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.nav-container,
.header-content {
  height: 92px !important;
}

.logo img {
  width: 88px !important;
  height: 62px !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 0 10px rgba(59,130,246,.7))
    drop-shadow(0 0 24px rgba(59,130,246,.35));
}

.logo-text {
  letter-spacing: 3px;
  color: #dbeafe;
  text-shadow: 0 0 18px rgba(59,130,246,.55);
}

.nav-links a,
.navbar a {
  position: relative;
  color: rgba(226,232,240,.72) !important;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: .25s ease;
}

.nav-links a:hover,
.navbar a:hover {
  color: #fff !important;
  text-shadow: 0 0 16px rgba(59,130,246,.8);
}

.nav-links a::after,
.navbar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--am05-blue), var(--am05-blue2), transparent);
  transform: translateX(-50%);
  transition: .25s ease;
  box-shadow: 0 0 16px rgba(59,130,246,.8);
}

.nav-links a:hover::after,
.navbar a:hover::after {
  width: 100%;
}

/* Cart circle */
.cart-link {
  background: rgba(15,23,42,.75) !important;
  border: 1px solid rgba(96,165,250,.25);
  box-shadow:
    inset 0 0 20px rgba(255,255,255,.04),
    0 0 22px rgba(59,130,246,.25) !important;
}

.cart-link span,
#cart-count,
.cart-count {
  background: #0b7cff !important;
  color: #fff !important;
  box-shadow: 0 0 18px rgba(59,130,246,.9);
}

/* Hero premium */
.home-hero,
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(2,6,23,.96) 0%, rgba(2,6,23,.78) 45%, rgba(2,6,23,.45) 100%),
    radial-gradient(circle at 75% 45%, rgba(37,99,235,.28), transparent 30%),
    linear-gradient(180deg, #020617, #030711) !important;
}

.home-hero::before,
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(59,130,246,.06) 45%, transparent 55%),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.025) 0px,
      rgba(255,255,255,.025) 1px,
      transparent 1px,
      transparent 18px
    );
  pointer-events: none;
}

.home-hero::after,
.hero::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 16%;
  width: 520px;
  height: 380px;
  background:
    radial-gradient(circle, rgba(59,130,246,.28), transparent 58%);
  filter: blur(20px);
  pointer-events: none;
}

.home-hero-content,
.hero-content {
  position: relative;
  z-index: 2;
}

.home-hero-content h1,
.hero h1,
.page-hero h1 {
  max-width: 640px;
  font-size: clamp(44px, 7vw, 82px) !important;
  line-height: .98 !important;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(248,250,252,.86) !important;
  text-shadow:
    0 0 20px rgba(59,130,246,.18),
    0 8px 40px rgba(0,0,0,.75);
}

.home-hero-content p,
.hero p,
.page-hero p {
  max-width: 520px;
  color: rgba(203,213,225,.72) !important;
  font-size: 18px !important;
}

.hero-badge {
  background: rgba(15,23,42,.66) !important;
  color: #93c5fd !important;
  border: 1px solid rgba(96,165,250,.28) !important;
  box-shadow:
    inset 0 0 18px rgba(255,255,255,.04),
    0 0 24px rgba(59,130,246,.15);
}

/* Buttons like neon */
.btn-primary {
  background:
    linear-gradient(135deg, rgba(14,165,233,.95), rgba(37,99,235,.95)) !important;
  border: 1px solid rgba(147,197,253,.4) !important;
  box-shadow:
    0 0 24px rgba(37,99,235,.38),
    inset 0 0 14px rgba(255,255,255,.08) !important;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 36px rgba(37,99,235,.6),
    inset 0 0 16px rgba(255,255,255,.12) !important;
}

.btn-outline {
  background: rgba(15,23,42,.58) !important;
  color: #93c5fd !important;
  border: 1px solid rgba(96,165,250,.35) !important;
  box-shadow: inset 0 0 16px rgba(255,255,255,.035);
}

.btn-outline:hover {
  background: rgba(37,99,235,.18) !important;
  color: #fff !important;
}

/* Bottom hero features */
.home-hero-features {
  margin-top: 36px !important;
  padding: 18px;
  background: rgba(2,6,23,.54);
  border: 1px solid rgba(96,165,250,.16);
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

.home-hero-features div {
  background: rgba(15,23,42,.42) !important;
  border: 1px solid rgba(96,165,250,.16) !important;
  box-shadow: inset 0 0 18px rgba(255,255,255,.025);
}

.home-hero-features strong {
  color: #38bdf8;
  filter: drop-shadow(0 0 10px rgba(56,189,248,.55));
}

/* Product cards like blurred dark cards */
.product-card {
  background: rgba(15,23,42,.58) !important;
  border: 1px solid rgba(96,165,250,.16) !important;
  backdrop-filter: blur(16px);
  box-shadow:
    0 22px 60px rgba(0,0,0,.40),
    inset 0 0 20px rgba(255,255,255,.025) !important;
  transition: .3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(96,165,250,.42) !important;
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 28px rgba(37,99,235,.26) !important;
}

.product-image {
  background: #020617 !important;
}

.product-image img {
  filter: contrast(1.04) saturate(1.05);
}

.product-content h3 {
  color: #f8fafc !important;
}

.product-price strong,
.price,
.details-price {
  color: #93c5fd !important;
  text-shadow: 0 0 14px rgba(59,130,246,.35);
}

.product-rating,
.stars {
  color: var(--am05-gold) !important;
}

/* Cards / panels */
.card,
.admin-panel,
.checkout-box,
.summary-box,
.offer-form-box,
.offer-trust-box,
.stat-card,
.cart-box {
  background:
    linear-gradient(145deg, rgba(15,23,42,.72), rgba(2,6,23,.92)) !important;
  border: 1px solid rgba(96,165,250,.18) !important;
  backdrop-filter: blur(18px);
  box-shadow:
    0 26px 70px rgba(0,0,0,.45),
    inset 0 0 20px rgba(255,255,255,.025) !important;
}

/* Forms */
.form-group input,
.form-group textarea,
.form-group select,
.admin-tools input,
.admin-tools select {
  background: rgba(2,6,23,.78) !important;
  border: 1px solid rgba(96,165,250,.18) !important;
  color: #fff !important;
  box-shadow: inset 0 0 14px rgba(255,255,255,.025);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(59,130,246,.75) !important;
  box-shadow:
    0 0 0 3px rgba(59,130,246,.14),
    0 0 22px rgba(59,130,246,.20) !important;
}

/* Landing offer */
.offer-image-box {
  background:
    linear-gradient(145deg, rgba(15,23,42,.64), rgba(2,6,23,.96)) !important;
  border: 1px solid rgba(96,165,250,.32) !important;
  box-shadow:
    0 30px 90px rgba(0,0,0,.55),
    0 0 44px rgba(37,99,235,.22) !important;
}

.offer-price-box strong {
  color: #38bdf8 !important;
  text-shadow: 0 0 22px rgba(56,189,248,.4);
}

.offer-badge {
  background: linear-gradient(135deg, #0b7cff, #38bdf8) !important;
  box-shadow: 0 0 24px rgba(59,130,246,.55);
}

/* WhatsApp floating button more premium */
.whatsapp-float {
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(145deg, #22c55e, #16a34a) !important;
  border: 1px solid rgba(187,247,208,.5);
  box-shadow:
    0 0 0 5px rgba(34,197,94,.12),
    0 0 30px rgba(34,197,94,.55) !important;
}

/* =========================================================
   CHATBOT STYLE LIKE IMAGE
========================================================= */

.am05-chatbot {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 9999;
}

.am05-chat-toggle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(147,197,253,.75);
  background:
    radial-gradient(circle at 32% 20%, rgba(255,255,255,.20), transparent 30%),
    linear-gradient(145deg, #111827, #020617);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow:
    0 0 0 5px rgba(37,99,235,.14),
    0 0 44px rgba(37,99,235,.75),
    inset 0 0 18px rgba(255,255,255,.08);
  transition: .3s ease;
  overflow: hidden;
}

.am05-chat-toggle:hover {
  transform: translateY(-5px) scale(1.04);
}

.am05-chat-toggle img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(59,130,246,.8));
}

.chat-pulse {
  position: absolute;
  right: 7px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 16px #3b82f6;
}

.chat-pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(59,130,246,.65);
  border-radius: 50%;
  animation: chatPulse 1.6s infinite;
}

@keyframes chatPulse {
  0% {
    transform: scale(.6);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.am05-chat-panel {
  position: absolute;
  right: 0;
  bottom: 96px;
  width: 430px;
  max-width: calc(100vw - 30px);
  height: 640px;
  max-height: calc(100vh - 130px);
  border-radius: 34px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(15,23,42,.88), rgba(2,6,23,.96)),
    radial-gradient(circle at top right, rgba(37,99,235,.28), transparent 42%);
  border: 1px solid rgba(147,197,253,.62);
  box-shadow:
    0 30px 100px rgba(0,0,0,.75),
    0 0 55px rgba(37,99,235,.40),
    inset 0 0 24px rgba(255,255,255,.05);
  backdrop-filter: blur(22px);
}

.am05-chat-panel.active {
  display: flex;
  animation: chatOpen .28s ease;
}

@keyframes chatOpen {
  from {
    transform: translateY(18px) scale(.96);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.am05-chat-header {
  padding: 22px 20px;
  background:
    linear-gradient(135deg, rgba(15,23,42,.96), rgba(2,6,23,.98)),
    radial-gradient(circle at top left, rgba(96,165,250,.24), transparent 45%);
  border-bottom: 1px solid rgba(147,197,253,.20);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.chat-brand img {
  width: 90px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(59,130,246,.55));
}

.chat-brand h3 {
  color: #f8fafc;
  font-size: 20px;
  font-weight: 900;
  margin: 0;
}

.chat-brand p {
  color: #93c5fd;
  font-size: 13px;
  margin-top: 3px;
}

.chat-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: #e5e7eb;
  font-size: 28px;
  cursor: pointer;
}

.am05-chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top, rgba(59,130,246,.12), transparent 36%),
    linear-gradient(180deg, rgba(15,23,42,.40), rgba(2,6,23,.90));
}

.bot-message,
.user-message {
  display: flex;
  margin-bottom: 14px;
}

.bot-message {
  align-items: flex-start;
  gap: 10px;
}

.user-message {
  justify-content: flex-end;
}

.bot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #dbeafe;
  font-weight: 900;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.22), transparent 30%),
    linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(96,165,250,.55);
  box-shadow: 0 0 18px rgba(37,99,235,.40);
  flex: 0 0 auto;
}

.message-bubble {
  max-width: 78%;
  border-radius: 18px;
  padding: 12px 14px;
  line-height: 1.55;
}

.message-bubble p {
  margin: 0;
  font-size: 14px;
}

.message-bubble strong {
  color: #60a5fa;
}

.message-bubble span {
  display: block;
  font-size: 10px;
  color: #94a3b8;
  margin-top: 6px;
  text-align: right;
}

.message-bubble.bot {
  background: linear-gradient(145deg, rgba(30,41,59,.96), rgba(15,23,42,.96));
  border: 1px solid rgba(148,163,184,.18);
  color: #f8fafc;
  box-shadow: inset 0 0 12px rgba(255,255,255,.03);
}

.message-bubble.user {
  background: linear-gradient(145deg, #1d4ed8, #0f3a8a);
  border: 1px solid rgba(147,197,253,.35);
  color: #fff;
  box-shadow: 0 0 18px rgba(37,99,235,.32);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 16px 48px;
}

.quick-actions button {
  border: 1px solid rgba(96,165,250,.42);
  color: #e0f2fe;
  background: linear-gradient(145deg, rgba(15,23,42,.88), rgba(2,6,23,.88));
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  cursor: pointer;
}

.quick-actions button:hover {
  background: linear-gradient(145deg, rgba(37,99,235,.65), rgba(29,78,216,.65));
  color: #fff;
  box-shadow: 0 0 16px rgba(59,130,246,.35);
}

.am05-chat-footer {
  padding: 14px;
  display: flex;
  gap: 10px;
  background: rgba(2,6,23,.98);
  border-top: 1px solid rgba(147,197,253,.16);
}

.am05-chat-footer input {
  flex: 1;
  border: 1px solid rgba(147,197,253,.20);
  background: rgba(15,23,42,.90);
  color: #fff;
  border-radius: 999px;
  padding: 13px 16px;
  outline: none;
  font-weight: 700;
}

.am05-chat-footer button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-size: 19px;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(37,99,235,.5);
}

/* Mobile */
@media (max-width: 560px) {
  .am05-chatbot {
    right: 14px;
    bottom: 14px;
  }

  .am05-chat-toggle {
    width: 66px;
    height: 66px;
  }

  .am05-chat-toggle img {
    width: 52px;
    height: 52px;
  }

  .am05-chat-panel {
    right: -4px;
    bottom: 82px;
    width: calc(100vw - 24px);
    height: 76vh;
    border-radius: 24px;
  }

  .message-bubble {
    max-width: 84%;
  }

  .quick-actions {
    margin-left: 0;
  }
}
/* =========================================================
   Home + Shop translation pages
========================================================= */

.home-hero {
  padding: 80px 0 50px;
  background:
    radial-gradient(circle at top left, rgba(0, 195, 255, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.14), transparent 40%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.home-hero-content h1 {
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  margin: 18px 0;
  color: #fff;
}

.home-hero-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
  max-width: 680px;
}

.home-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.home-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.home-hero-features div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.home-hero-features strong {
  font-size: 24px;
}

.home-hero-features span {
  color: #fff;
  font-weight: 800;
}

.home-hero-card {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.hero-offer-card {
  width: 100%;
  min-height: 330px;
  border-radius: 32px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(0, 195, 255, 0.14), rgba(168, 85, 247, 0.12)),
    #05070d;
  border: 1px solid rgba(0, 195, 255, 0.20);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-offer-card span {
  color: var(--gold);
  font-weight: 900;
}

.hero-offer-card h2 {
  color: #fff;
  font-size: 32px;
  margin: 12px 0;
}

.hero-offer-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.section-header h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  margin: 12px 0;
}

.section-header p {
  color: var(--muted);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: linear-gradient(145deg, var(--card), var(--card2));
  border: 1px solid rgba(0, 195, 255, 0.14);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
}

.feature-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.feature-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.7;
}

.shop-toolbar {
  background: linear-gradient(145deg, var(--card), var(--card2));
  border: 1px solid rgba(0, 195, 255, 0.14);
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 26px;
  display: grid;
  gap: 18px;
}

.shop-toolbar h2 {
  color: #fff;
  margin-bottom: 6px;
}

.shop-toolbar p {
  color: var(--muted);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filters a {
  text-decoration: none;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s;
}

.category-filters a:hover,
.category-filters a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
}

.product-stock {
  margin: 10px 0;
  font-size: 13px;
  font-weight: 900;
}

.stock-ok {
  color: #22c55e;
}

.stock-out {
  color: #ef4444;
}

/* RTL Arabic */
html[dir="rtl"] .home-hero-grid,
html[dir="rtl"] .products-grid,
html[dir="rtl"] .features-grid {
  direction: rtl;
}

html[dir="rtl"] .section-header {
  text-align: center;
}

html[dir="rtl"] .product-actions,
html[dir="rtl"] .category-filters,
html[dir="rtl"] .home-hero-actions {
  direction: rtl;
}

/* Responsive */
@media (max-width: 900px) {
  .home-hero-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-card {
    min-height: auto;
  }

  .home-hero-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-hero {
    padding: 48px 0 32px;
  }

  .hero-offer-card {
    min-height: auto;
  }

  .home-hero-actions .btn-primary,
  .home-hero-actions .btn-outline,
  .category-filters a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
/* =========================================================
   AM05 Catalogue Page
========================================================= */

.catalogue-hero {
  padding: 95px 0 55px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(37,99,235,.24), transparent 36%),
    linear-gradient(180deg, #020617, #030711);
  border-bottom: 1px solid rgba(96,165,250,.18);
}

.catalogue-hero h1 {
  color: #fff;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 16px 0;
  text-shadow: 0 0 24px rgba(59,130,246,.35);
}

.catalogue-hero p {
  color: var(--muted);
  max-width: 720px;
  margin: auto;
  font-size: 18px;
}

.catalogue-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  justify-content: center;
}

.catalogue-filters a {
  color: #cbd5e1;
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(96,165,250,.22);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: .25s ease;
}

.catalogue-filters a:hover,
.catalogue-filters a.active {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 0 24px rgba(37,99,235,.35);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.catalogue-card {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(15,23,42,.76), rgba(2,6,23,.96));
  border: 1px solid rgba(96,165,250,.20);
  box-shadow:
    0 24px 70px rgba(0,0,0,.45),
    inset 0 0 18px rgba(255,255,255,.03);
  transition: .3s ease;
}

.catalogue-card:hover {
  transform: translateY(-8px);
  border-color: rgba(96,165,250,.48);
  box-shadow:
    0 34px 90px rgba(0,0,0,.55),
    0 0 34px rgba(37,99,235,.30);
}

.catalogue-image {
  position: relative;
  height: 360px;
  background: #020617;
}

.catalogue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalogue-image span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  border: 1px solid rgba(147,197,253,.45);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(37,99,235,.45);
}

.catalogue-content {
  padding: 20px;
}

.catalogue-content small {
  display: inline-flex;
  color: #93c5fd;
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(96,165,250,.22);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-weight: 900;
}

.catalogue-content h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

.catalogue-stars {
  color: #facc15;
  margin-bottom: 10px;
}

.catalogue-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
}

.catalogue-price strong {
  color: #38bdf8;
  font-size: 28px;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(56,189,248,.35);
}

.catalogue-price span {
  color: #64748b;
  text-decoration: line-through;
}

.catalogue-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

html[dir="rtl"] .catalogue-grid,
html[dir="rtl"] .catalogue-filters {
  direction: rtl;
}

html[dir="rtl"] .catalogue-image span {
  left: auto;
  right: 16px;
}

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

@media (max-width: 620px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-image {
    height: 320px;
  }

  .catalogue-actions {
    grid-template-columns: 1fr;
  }

  .catalogue-filters a {
    width: 100%;
    text-align: center;
  }
}
/* =========================================================
   Boutique hero background image
========================================================= */

.boutique-hero-bg,
.home-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.82) 0%,
      rgba(2, 6, 23, 0.58) 35%,
      rgba(2, 6, 23, 0.18) 70%,
      rgba(2, 6, 23, 0.05) 100%
    ),
    url("../images/hero-am05-bg.png");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(59, 130, 246, 0.25);
}

.boutique-hero-bg::before,
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 45%, rgba(37, 99, 235, 0.10), transparent 35%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.28));
  pointer-events: none;
  z-index: 1;
}

.boutique-hero-bg .container,
.home-hero .container {
  position: relative;
  z-index: 2;
}

.home-hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: center;
}

/* Box dyal text */
.home-hero-content {
  max-width: 630px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(2, 6, 23, 0.42);
  border: 1px solid rgba(96, 165, 250, 0.22);
  backdrop-filter: blur(8px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.40),
    inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.home-hero-content h1 {
  color: #ffffff !important;
  text-shadow:
    0 0 22px rgba(59, 130, 246, 0.45),
    0 8px 40px rgba(0, 0, 0, 0.75);
}

.home-hero-content p {
  color: #dbeafe !important;
}

.home-hero-card {
  display: none !important;
}

.home-hero-features {
  background: rgba(2, 6, 23, 0.56) !important;
  border: 1px solid rgba(96, 165, 250, 0.22) !important;
  backdrop-filter: blur(10px);
}

/* Mobile */
@media (max-width: 900px) {
  .home-hero {
    min-height: auto;
    padding: 80px 0 50px;

    background:
      linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.90) 0%,
        rgba(2, 6, 23, 0.65) 45%,
        rgba(2, 6, 23, 0.88) 100%
      ),
      url("../images/hero-am05-bg.png");

    background-size: cover;
    background-position: center top;
  }

  .home-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-hero-content {
    padding: 22px;
  }
}
/* FORCE BOUTIQUE HERO BACKGROUND */

body .home-hero {
  position: relative !important;
  min-height: 760px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;

  background-image:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.92) 0%,
      rgba(2, 6, 23, 0.70) 32%,
      rgba(2, 6, 23, 0.28) 62%,
      rgba(2, 6, 23, 0.08) 100%
    ),
    url("../images/hero-am05-bg.png") !important;

  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-bottom: 1px solid rgba(59, 130, 246, 0.35) !important;
}

body .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(37, 99, 235, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.28));
  z-index: 1;
  pointer-events: none;
}

body .home-hero .container {
  position: relative;
  z-index: 2;
}

body .home-hero-grid {
  min-height: 660px !important;
  display: grid !important;
  grid-template-columns: 0.72fr 1.28fr !important;
  align-items: center !important;
}

body .home-hero-content {
  max-width: 560px !important;
  padding: 34px !important;
  border-radius: 30px !important;
  background: rgba(2, 6, 23, 0.50) !important;
  border: 1px solid rgba(96, 165, 250, 0.28) !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45) !important;
}

body .home-hero-card {
  display: none !important;
}

@media (max-width: 900px) {
  body .home-hero {
    min-height: auto !important;
    padding: 80px 0 50px !important;

    background-image:
      linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.94) 0%,
        rgba(2, 6, 23, 0.70) 45%,
        rgba(2, 6, 23, 0.92) 100%
      ),
      url("../images/hero-am05-bg.png") !important;

    background-size: cover !important;
    background-position: center top !important;
  }

  body .home-hero-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
}
/* =========================================================
   HERO PHOTO TRÈS CLAIRE
   Mettre ce bloc tout en bas de style.css
========================================================= */

body .home-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.28) 0%,
      rgba(2, 6, 23, 0.16) 28%,
      rgba(2, 6, 23, 0.04) 55%,
      rgba(2, 6, 23, 0.00) 100%
    ),
    url("../images/hero-am05-bg.png") !important;

  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

body .home-hero::before {
  background:
    radial-gradient(circle at 25% 50%, rgba(37, 99, 235, 0.04), transparent 36%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.00), rgba(2, 6, 23, 0.03)) !important;
}

/* نخلي الكارت ديال النص شفاف باش الصورة تبان */
body .home-hero-content {
  background: rgba(2, 6, 23, 0.18) !important;
  border: 1px solid rgba(96, 165, 250, 0.24) !important;
  backdrop-filter: blur(3px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18) !important;
}

/* إلا بغيتي النص يبقى واضح */
body .home-hero-content h1,
body .home-hero-content p {
  text-shadow:
    0 0 18px rgba(0, 0, 0, 0.75),
    0 4px 20px rgba(0, 0, 0, 0.80) !important;
}
/* =========================
   STYLE HOME LUXE
========================= */

body {
  background: #f4f4f4;
  color: #111;
}

.promo-bar {
  background: #ffffff;
  color: #000;
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 12px 10px;
  font-size: 16px;
  border-bottom: 1px solid #e7e7e7;
}

.lux-header {
  background: #fff;
  border-bottom: 1px solid #ececec;
}

.lux-header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 0 16px;
}

.lux-logo {
  text-align: center;
}

.lux-logo img {
  max-height: 110px;
  width: auto;
  display: block;
  margin: 0 auto 8px;
}

.lux-logo h1 {
  margin: 0;
  font-size: 0;
}

.lux-icon {
  font-size: 28px;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lux-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding-bottom: 18px;
}

.lux-nav a {
  color: #444;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: .2s;
}

.lux-nav a:hover,
.lux-nav a.active {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.lux-hero {
  width: 100%;
  overflow: hidden;
  background: #ddd;
}

.lux-hero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.lux-section {
  padding: 48px 0;
  background: #f4f4f4;
}

.section-title {
  font-size: 36px;
  margin-bottom: 28px;
  color: #111;
  font-weight: 900;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.collection-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  border: 1px solid #e9e9e9;
  transition: .25s;
  box-shadow: 0 8px 30px rgba(0,0,0,.05);
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,.08);
}

.collection-image {
  background: #f0f0f0;
  height: 270px;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-content {
  padding: 20px;
}

.collection-content h3 {
  font-size: 20px;
  margin: 0 0 10px;
  line-height: 1.3;
  font-weight: 900;
}

.collection-content span {
  color: #444;
  font-size: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 8px 26px rgba(0,0,0,.05);
}

.product-image {
  height: 260px;
  background: #fafafa;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 18px;
}

.product-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #111;
  min-height: 48px;
}

.product-price {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
  color: #000;
}

.btn-lux {
  display: inline-block;
  padding: 11px 18px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
}

.btn-lux:hover {
  background: #333;
}

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

@media (max-width: 700px) {
  .lux-header-top {
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }

  .lux-logo img {
    max-height: 80px;
  }

  .lux-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .lux-hero img {
    height: 260px;
  }

  .collections-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .collection-image,
  .product-image {
    height: 220px;
  }
}
/* =========================================================
   AM05 TECH - CATALOG LUXURY HOME LIKE EXAMPLE
   Add this at the END of style.css
========================================================= */

.home-hero {
  min-height: 720px !important;
  padding: 60px 0 40px !important;
  background:
    linear-gradient(120deg, rgba(2,6,23,.96), rgba(15,23,42,.82)),
    radial-gradient(circle at 80% 20%, rgba(56,189,248,.24), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(37,99,235,.18), transparent 30%) !important;
  overflow: hidden;
}

.home-hero-grid {
  grid-template-columns: 1fr 1fr !important;
  gap: 34px !important;
  align-items: stretch !important;
}

.home-hero-content {
  min-height: 570px;
  padding: 42px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(15,23,42,.86), rgba(2,6,23,.82)),
    url("assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(147,197,253,.22);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.home-hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,6,23,.92), rgba(2,6,23,.55)),
    radial-gradient(circle at 85% 30%, rgba(56,189,248,.15), transparent 35%);
  z-index: 0;
}

.home-hero-content > * {
  position: relative;
  z-index: 2;
}

.home-hero-content h1 {
  font-size: clamp(42px, 6vw, 78px) !important;
  line-height: .95 !important;
  letter-spacing: 1px;
  margin-bottom: 22px;
  max-width: 680px;
}

.home-hero-content p {
  max-width: 520px;
  color: rgba(226,232,240,.78) !important;
  font-size: 18px !important;
}

.hero-badge {
  width: fit-content;
  background: rgba(255,255,255,.08) !important;
  color: #bfdbfe !important;
  border: 1px solid rgba(147,197,253,.28) !important;
  backdrop-filter: blur(14px);
}

.home-hero-actions {
  margin-top: 8px;
}

.home-hero-features {
  width: 100%;
  max-width: 620px;
  margin-top: 36px !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.home-hero-features div {
  border-radius: 20px !important;
  padding: 16px !important;
  background: rgba(15,23,42,.72) !important;
  border: 1px solid rgba(147,197,253,.18) !important;
  backdrop-filter: blur(14px);
}

.home-hero-features span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
}

/* Right hero card */
.home-hero-card {
  min-height: 570px;
  border-radius: 36px !important;
  padding: 22px !important;
  background: rgba(15,23,42,.62) !important;
  border: 1px solid rgba(147,197,253,.24) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.45) !important;
  backdrop-filter: blur(18px);
}

.hero-offer-card {
  height: 100%;
  min-height: 525px !important;
  border-radius: 28px !important;
  padding: 34px !important;
  background:
    linear-gradient(180deg, rgba(30,41,59,.3), rgba(2,6,23,.95)),
    url("assets/images/offer-bg.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(56,189,248,.24);
  justify-content: flex-end !important;
  position: relative;
  overflow: hidden;
}

.hero-offer-card::before {
  content: "AM05";
  position: absolute;
  top: 35px;
  left: 28px;
  font-size: 78px;
  font-weight: 900;
  color: rgba(255,255,255,.05);
  letter-spacing: 6px;
}

html[dir="rtl"] .hero-offer-card::before {
  left: auto;
  right: 28px;
}

.hero-offer-card span {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: #020617 !important;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  font-weight: 900;
}

.hero-offer-card h2 {
  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: 1.1;
  margin-top: 18px !important;
}

.hero-offer-card p {
  color: rgba(226,232,240,.75) !important;
}

/* Section titles like catalogue */
.section-header {
  text-align: right !important;
  margin-bottom: 26px !important;
  max-width: none !important;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

html[dir="ltr"] .section-header {
  text-align: left !important;
}

.section-header h2 {
  font-size: clamp(34px, 5vw, 58px) !important;
  text-transform: uppercase;
  margin: 6px 0 !important;
}

.section-header p {
  max-width: 520px;
}

/* Products catalogue style */
.products-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

.product-card {
  border-radius: 8px 28px 8px 28px !important;
  overflow: hidden;
  background: rgba(148,163,184,.12) !important;
  border: 1px solid rgba(147,197,253,.18) !important;
}

.product-image {
  height: 300px !important;
  background: rgba(191,219,254,.16) !important;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-category {
  font-size: 11px !important;
  padding: 4px 9px !important;
  background: rgba(56,189,248,.10) !important;
}

.product-content h3 {
  font-size: 15px !important;
  line-height: 1.35;
  margin-top: 8px;
  min-height: 42px;
}

.product-content p {
  display: none;
}

.product-rating {
  font-size: 12px;
}

.product-price strong {
  font-size: 19px !important;
}

.product-actions {
  grid-template-columns: 1fr !important;
}

.product-actions .btn-outline {
  display: none;
}

.product-actions .btn-primary {
  min-height: 42px !important;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1050px) {
  .home-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .home-hero-content,
  .home-hero-card {
    min-height: auto;
  }

  .hero-offer-card {
    min-height: 420px !important;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .home-hero {
    padding-top: 34px !important;
  }

  .home-hero-content {
    padding: 26px;
    border-radius: 26px;
  }

  .home-hero-content h1 {
    font-size: 42px !important;
  }

  .home-hero-features {
    grid-template-columns: 1fr !important;
  }

  .section-header {
    display: block;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .product-image {
    height: 220px !important;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr !important;
  }

  .product-image {
    height: 300px !important;
  }
}
/* ===== Face clearer in hero ===== */

.home-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2,6,23,.45) 0%, rgba(2,6,23,.25) 35%, rgba(2,6,23,.15) 100%),
    url("assets/images/hero-bg.jpg") center center / cover no-repeat !important;
}

/* نقص الظلام فوق الصورة */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,6,23,.30) 0%, rgba(2,6,23,.10) 40%, rgba(2,6,23,.05) 100%);
  z-index: 1;
}

/* المحتوى يبقى فوق */
.home-hero .container {
  position: relative;
  z-index: 2;
}

/* خليهوم صفين: النص جهة والوجه جهة */
.home-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

/* card النص ما تبقاش كبيرة بزاف */
.home-hero-content {
  max-width: 520px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(5, 10, 20, 0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}

/* خفف الكارد الثانية أو حتى خبيها مؤقتا */
.home-hero-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.hero-offer-card {
  background: rgba(5, 10, 20, 0.28) !important;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  max-width: 360px;
  margin-left: auto;
}

/* تحسين وضوح الصورة */
.home-hero,
.home-hero * {
  image-rendering: auto;
}

.home-hero {
  filter: brightness(1.05) contrast(1.08) saturate(1.08);
}
/* =========================================================
   AM05 TECH - FACE CLEAR HERO DESIGN
   ضع هذا الكود في آخر style.css
========================================================= */

/* Hero principal */
.am05-face-hero {
  position: relative;
  min-height: 720px;
  padding: 70px 0 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(56,189,248,.24), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(37,99,235,.22), transparent 30%),
    linear-gradient(135deg, #020617 0%, #07111f 48%, #020617 100%);
}

/* الخلفية ديال المنتجات */
.am05-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,6,23,.88) 0%, rgba(2,6,23,.48) 45%, rgba(2,6,23,.25) 100%),
    url("assets/images/hero-bg.jpg") center center / cover no-repeat;
  opacity: .92;
  filter: brightness(1.08) contrast(1.07) saturate(1.08);
  z-index: 0;
}

/* طبقة خفيفة فقط باش الصورة تبقى واضحة */
.am05-face-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,6,23,.72) 0%, rgba(2,6,23,.34) 46%, rgba(2,6,23,.08) 100%),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.025) 0px,
      rgba(255,255,255,.025) 1px,
      transparent 1px,
      transparent 18px
    );
  z-index: 1;
  pointer-events: none;
}

.am05-face-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 8%;
  top: 14%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56,189,248,.20), transparent 65%);
  filter: blur(22px);
  z-index: 1;
  pointer-events: none;
}

/* Grid */
.am05-face-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: center;
  min-height: 610px;
}

/* Text card */
.am05-hero-text {
  max-width: 570px;
  padding: 34px;
  border-radius: 30px;
  background: rgba(2, 6, 23, .52);
  border: 1px solid rgba(147,197,253,.22);
  backdrop-filter: blur(13px);
  box-shadow:
    0 24px 70px rgba(0,0,0,.40),
    inset 0 0 22px rgba(255,255,255,.025);
}

.am05-hero-text h1 {
  color: #ffffff;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: .98;
  letter-spacing: 1px;
  margin: 18px 0 20px;
  text-transform: uppercase;
  text-shadow:
    0 8px 34px rgba(0,0,0,.65),
    0 0 20px rgba(56,189,248,.18);
}

html[dir="rtl"] .am05-hero-text h1 {
  text-transform: none;
  line-height: 1.12;
}

.am05-hero-text p {
  color: rgba(226,232,240,.84);
  font-size: 17px;
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 22px;
}

/* Buttons */
.am05-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

/* Features */
.am05-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.am05-hero-features div {
  padding: 14px;
  min-height: 105px;
  border-radius: 18px;
  background: rgba(15,23,42,.62);
  border: 1px solid rgba(147,197,253,.16);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 18px rgba(255,255,255,.025);
}

.am05-hero-features strong {
  display: block;
  font-size: 25px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px rgba(56,189,248,.55));
}

.am05-hero-features span {
  display: block;
  color: #f8fafc;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 800;
}

/* Face visual */
.am05-hero-face {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: visible;
}

.am05-face-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(56,189,248,.30), transparent 65%);
  filter: blur(28px);
  z-index: 0;
}

/* الصورة ديالك */
.am05-hero-face img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 660px;
  object-fit: contain;
  object-position: center bottom;
  filter:
    brightness(1.18)
    contrast(1.12)
    saturate(1.08)
    drop-shadow(0 28px 55px rgba(0,0,0,.52))
    drop-shadow(0 0 24px rgba(56,189,248,.18));
}

/* Badges قرب الوجه */
.am05-face-badge {
  position: absolute;
  z-index: 3;
  padding: 13px 16px;
  border-radius: 18px;
  background: rgba(2,6,23,.62);
  border: 1px solid rgba(147,197,253,.22);
  backdrop-filter: blur(12px);
  box-shadow:
    0 18px 45px rgba(0,0,0,.35),
    inset 0 0 18px rgba(255,255,255,.03);
}

.am05-face-badge span {
  display: block;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
}

.am05-face-badge strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.am05-face-badge-1 {
  left: 8%;
  top: 18%;
}

.am05-face-badge-2 {
  right: 8%;
  bottom: 18%;
}

html[dir="rtl"] .am05-face-badge-1 {
  left: auto;
  right: 8%;
}

html[dir="rtl"] .am05-face-badge-2 {
  right: auto;
  left: 8%;
}

/* Section produits */
.am05-products-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(56,189,248,.10), transparent 32%),
    linear-gradient(180deg, #020617, #030711);
}

.am05-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  max-width: none;
  margin-bottom: 34px;
}

html[dir="rtl"] .am05-section-title {
  text-align: right;
}

.am05-section-title h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 10px 0 0;
  color: #fff;
}

.am05-section-title p {
  max-width: 520px;
  color: rgba(226,232,240,.72);
}

/* Products catalogue */
.am05-catalog-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.am05-catalog-card {
  border-radius: 10px 30px 10px 30px;
  background:
    linear-gradient(145deg, rgba(15,23,42,.70), rgba(2,6,23,.92));
  border: 1px solid rgba(147,197,253,.18);
  box-shadow:
    0 24px 60px rgba(0,0,0,.38),
    inset 0 0 20px rgba(255,255,255,.025);
  overflow: hidden;
  transition: .28s ease;
}

.am05-catalog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56,189,248,.40);
  box-shadow:
    0 30px 90px rgba(0,0,0,.52),
    0 0 30px rgba(56,189,248,.18);
}

.am05-catalog-image {
  height: 310px;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.12), transparent 60%),
    rgba(148,163,184,.10);
}

.am05-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.am05-catalog-content {
  padding: 16px;
}

.am05-catalog-content h3 {
  min-height: 44px;
  font-size: 16px;
  line-height: 1.35;
}

.am05-catalog-content p {
  color: rgba(226,232,240,.64);
  font-size: 13px;
  line-height: 1.6;
}

.am05-catalog-content .product-price strong {
  color: #93c5fd;
  text-shadow: 0 0 14px rgba(56,189,248,.30);
}

/* Trust section */
.am05-trust-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(37,99,235,.12), transparent 30%),
    linear-gradient(180deg, #030711, #020617);
}

.am05-trust-grid .feature-card {
  background:
    linear-gradient(145deg, rgba(15,23,42,.70), rgba(2,6,23,.92));
  border: 1px solid rgba(147,197,253,.18);
  border-radius: 28px;
  padding: 28px;
  box-shadow:
    0 24px 60px rgba(0,0,0,.34),
    inset 0 0 20px rgba(255,255,255,.025);
}

/* Improve existing buttons */
.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #2563eb) !important;
  border: 1px solid rgba(147,197,253,.40) !important;
  box-shadow:
    0 0 24px rgba(37,99,235,.38),
    inset 0 0 14px rgba(255,255,255,.08) !important;
}

.btn-outline {
  background: rgba(15,23,42,.58) !important;
  color: #bfdbfe !important;
  border: 1px solid rgba(147,197,253,.35) !important;
}

/* Mobile */
@media (max-width: 1050px) {
  .am05-face-hero-grid {
    grid-template-columns: 1fr;
  }

  .am05-hero-text {
    max-width: 100%;
  }

  .am05-hero-face {
    min-height: 500px;
  }

  .am05-hero-face img {
    max-height: 520px;
  }

  .am05-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .am05-face-hero {
    padding: 42px 0 30px;
    min-height: auto;
  }

  .am05-hero-bg {
    background-position: center top;
  }

  .am05-face-hero::before {
    background: rgba(2,6,23,.58);
  }

  .am05-hero-text {
    padding: 24px;
    border-radius: 24px;
  }

  .am05-hero-text h1 {
    font-size: 38px;
  }

  .am05-hero-features {
    grid-template-columns: 1fr;
  }

  .am05-hero-face {
    min-height: 390px;
  }

  .am05-hero-face img {
    max-height: 420px;
  }

  .am05-face-badge {
    padding: 10px 12px;
  }

  .am05-face-badge-1 {
    top: 8%;
  }

  .am05-face-badge-2 {
    bottom: 8%;
  }

  .am05-section-title {
    display: block;
  }

  .am05-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .am05-catalog-image {
    height: 230px;
  }

  .am05-catalog-content p {
    display: none;
  }
}

@media (max-width: 480px) {
  .am05-hero-text h1 {
    font-size: 32px;
  }

  .am05-hero-actions .btn-primary,
  .am05-hero-actions .btn-outline {
    width: 100%;
  }

  .am05-hero-face {
    min-height: 330px;
  }

  

  .am05-catalog-grid {
    grid-template-columns: 1fr;
  }

  .am05-catalog-image {
    height: 310px;
  }
}
/* =========================================================
   AM05 TECH - FULL BACKGROUND HERO / VISAGE CLAIR
   ضع هذا الكود في آخر style.css
========================================================= */

.am05-face-hero {
  position: relative !important;
  min-height: calc(100vh - 95px) !important;
  padding: 0 !important;
  overflow: hidden !important;

  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, .95) 0%,
      rgba(2, 6, 23, .70) 25%,
      rgba(2, 6, 23, .20) 47%,
      rgba(2, 6, 23, .08) 100%
    ),
    url("assets/images/hero-bg.jpg") center center / cover no-repeat !important;
}

/* طبقة خفيفة فقط، ما كتغطيش الوجه */
.am05-face-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, .72) 0%,
      rgba(2, 6, 23, .42) 24%,
      rgba(2, 6, 23, .05) 48%,
      rgba(2, 6, 23, .00) 100%
    );
  z-index: 1;
  pointer-events: none;
}

/* خلي الصورة واضحة */
.am05-face-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 45%, rgba(255,255,255,.08), transparent 18%),
    radial-gradient(circle at 52% 45%, rgba(56,189,248,.12), transparent 34%);
  z-index: 1;
  pointer-events: none;
}

/* Grid */
.am05-face-hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 95px);
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

/* Card texte */
.am05-hero-text {
  width: 520px !important;
  max-width: 92vw !important;
  padding: 34px !important;
  border-radius: 26px !important;
  margin-left: 70px !important;

  background: rgba(2, 6, 23, .58) !important;
  border: 1px solid rgba(147,197,253,.22) !important;
  backdrop-filter: blur(10px) !important;

  box-shadow:
    0 24px 70px rgba(0,0,0,.38),
    inset 0 0 22px rgba(255,255,255,.025) !important;
}

/* إذا الموقع بالعربية */
html[dir="rtl"] .am05-hero-text {
  margin-left: 0 !important;
  margin-right: 70px !important;
}

/* Title */
.am05-hero-text h1 {
  color: #fff !important;
  font-size: clamp(48px, 5.5vw, 82px) !important;
  line-height: .98 !important;
  letter-spacing: 1px !important;
  margin: 18px 0 22px !important;
  text-transform: uppercase !important;
  text-shadow: 0 10px 40px rgba(0,0,0,.75) !important;
}

/* Arabic title */
html[dir="rtl"] .am05-hero-text h1 {
  text-transform: none !important;
  line-height: 1.12 !important;
}

.am05-hero-text p {
  color: rgba(226,232,240,.84) !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
  margin-bottom: 22px !important;
}

/* Buttons */
.am05-hero-actions {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin-top: 12px !important;
}

/* Features */
.am05-hero-features {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
  margin-top: 28px !important;
}

.am05-hero-features div {
  min-height: 105px !important;
  padding: 14px !important;
  border-radius: 16px !important;
  background: rgba(15,23,42,.62) !important;
  border: 1px solid rgba(147,197,253,.16) !important;
  backdrop-filter: blur(8px) !important;
}

.am05-hero-features strong {
  display: block !important;
  font-size: 24px !important;
  margin-bottom: 8px !important;
}

.am05-hero-features span {
  display: block !important;
  color: #fff !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 800 !important;
}

/* حيد الصورة الصغيرة نهائياً */
.am05-hero-face,
.am05-face-glow,
.am05-face-badge {
  display: none !important;
}

/* Mobile */
@media (max-width: 900px) {
  .am05-face-hero {
    min-height: auto !important;
    padding: 55px 0 !important;
    background-position: center top !important;
  }

  .am05-face-hero::before {
    background: rgba(2,6,23,.56) !important;
  }

  .am05-face-hero-grid {
    min-height: auto !important;
  }

  .am05-hero-text,
  html[dir="rtl"] .am05-hero-text {
    margin: 0 auto !important;
    width: 92% !important;
  }

  .am05-hero-text h1 {
    font-size: 42px !important;
  }

  .am05-hero-features {
    grid-template-columns: 1fr !important;
  }
}   
/* =========================================================
   AM05 TECH - HERO BACKGROUND IMAGE CLEAR
   Image: assets/images/hero-am05-bg.png
========================================================= */

.am05-home-hero {
  position: relative !important;
  min-height: calc(100vh - 92px) !important;
  padding: 0 !important;
  overflow: hidden !important;

  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, .95) 0%,
      rgba(2, 6, 23, .78) 24%,
      rgba(2, 6, 23, .25) 48%,
      rgba(2, 6, 23, .04) 100%
    ),
    url("assets/images/hero-am05-bg.png") center top / cover no-repeat !important;
}

.am05-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.018) 0px,
      rgba(255,255,255,.018) 1px,
      transparent 1px,
      transparent 18px
    );
  z-index: 1;
  pointer-events: none;
}

.am05-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(56,189,248,.10), transparent 26%);
  z-index: 1;
  pointer-events: none;
}

.am05-home-hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.am05-hero-card {
  width: 520px;
  max-width: 92vw;
  padding: 34px;
  border-radius: 28px;

  background: rgba(2, 6, 23, .58);
  border: 1px solid rgba(147,197,253,.22);
  backdrop-filter: blur(10px);

  box-shadow:
    0 24px 70px rgba(0,0,0,.42),
    inset 0 0 22px rgba(255,255,255,.025);
}

html[dir="rtl"] .am05-home-hero-inner {
  justify-content: flex-start;
}

.am05-hero-card h1 {
  color: #fff;
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: .98;
  letter-spacing: 1px;
  margin: 18px 0 22px;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0,0,0,.75);
}

html[dir="rtl"] .am05-hero-card h1 {
  text-transform: none;
  line-height: 1.12;
}

.am05-hero-card p {
  color: rgba(226,232,240,.84);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.am05-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.am05-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.am05-hero-features div {
  min-height: 105px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(15,23,42,.62);
  border: 1px solid rgba(147,197,253,.16);
  backdrop-filter: blur(8px);
}

.am05-hero-features strong {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

.am05-hero-features span {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 800;
}

/* باش ما يبقاش يظهر hero القديم */
.home-hero,
.am05-face-hero,
.am05-hero-face,
.am05-face-glow,
.am05-face-badge {
  display: none !important;
}

/* Mobile */
@media (max-width: 900px) {
  .am05-home-hero {
    min-height: auto !important;
    padding: 55px 0 !important;
    background-position: center top !important;
  }

  .am05-home-hero-inner {
    min-height: auto;
  }

  .am05-hero-card {
    margin: 0 auto;
    width: 92%;
  }

  .am05-hero-card h1 {
    font-size: 40px;
  }

  .am05-hero-features {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   AM05 TECH - HERO PHOTO ONLY
   Image path: assets/images/hero-am05-bg.png
========================================================= */

.am05-only-photo-hero {
  width: 100%;
  background: #020617;
  padding: 0;
  margin: 0;
  overflow: hidden;
  line-height: 0;
}

.am05-only-photo-hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* حذف أي Hero قديم */
.home-hero,
.am05-home-hero,
.am05-face-hero,
.am05-home-hero-inner,
.am05-hero-card,
.am05-hero-text,
.am05-hero-actions,
.am05-hero-features,
.am05-hero-face,
.am05-face-glow,
.am05-face-badge {
  display: none !important;
}

/* =========================================================
   AM05 PRODUCTS SECTION CLEAN STYLE
========================================================= */

.am05-products-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(56,189,248,.10), transparent 32%),
    linear-gradient(180deg, #020617, #030711);
}

.am05-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  max-width: none;
  margin-bottom: 34px;
}

html[dir="rtl"] .am05-section-title {
  text-align: right;
}

.am05-section-title h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 10px 0 0;
  color: #fff;
}

.am05-section-title p {
  max-width: 520px;
  color: rgba(226,232,240,.72);
}

.am05-catalog-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.am05-catalog-card {
  border-radius: 10px 30px 10px 30px;
  background:
    linear-gradient(145deg, rgba(15,23,42,.70), rgba(2,6,23,.92));
  border: 1px solid rgba(147,197,253,.18);
  box-shadow:
    0 24px 60px rgba(0,0,0,.38),
    inset 0 0 20px rgba(255,255,255,.025);
  overflow: hidden;
  transition: .28s ease;
}

.am05-catalog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56,189,248,.40);
  box-shadow:
    0 30px 90px rgba(0,0,0,.52),
    0 0 30px rgba(56,189,248,.18);
}

.am05-catalog-image {
  height: 310px;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.12), transparent 60%),
    rgba(148,163,184,.10);
}

.am05-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.am05-catalog-content {
  padding: 16px;
}

.am05-catalog-content h3 {
  min-height: 44px;
  font-size: 16px;
  line-height: 1.35;
}

.am05-catalog-content p {
  color: rgba(226,232,240,.64);
  font-size: 13px;
  line-height: 1.6;
}

.am05-catalog-content .product-price strong {
  color: #93c5fd;
  text-shadow: 0 0 14px rgba(56,189,248,.30);
}

.am05-trust-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(37,99,235,.12), transparent 30%),
    linear-gradient(180deg, #030711, #020617);
}

.am05-trust-grid .feature-card {
  background:
    linear-gradient(145deg, rgba(15,23,42,.70), rgba(2,6,23,.92));
  border: 1px solid rgba(147,197,253,.18);
  border-radius: 28px;
  padding: 28px;
  box-shadow:
    0 24px 60px rgba(0,0,0,.34),
    inset 0 0 20px rgba(255,255,255,.025);
}

/* Responsive */
@media (max-width: 1050px) {
  .am05-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .am05-section-title {
    display: block;
  }

  .am05-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .am05-catalog-image {
    height: 230px;
  }

  .am05-catalog-content p {
    display: none;
  }
}

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

  .am05-catalog-image {
    height: 310px;
  }
}
/* =========================================================
   AM05 TECH - SMALL BANNER HERO
   صورة صغيرة بحال Parfum Store
   Image: assets/images/hero-am05-bg.png
========================================================= */

.am05-banner-hero {
  width: 100%;
  height: 320px;
  background: #020617;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  line-height: 0;
}

.am05-banner-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

/* حذف أي Hero قديم */
.home-hero,
.am05-home-hero,
.am05-face-hero,
.am05-only-photo-hero,
.am05-home-hero-inner,
.am05-hero-card,
.am05-hero-text,
.am05-hero-actions,
.am05-hero-features,
.am05-hero-face,
.am05-face-glow,
.am05-face-badge {
  display: none !important;
}

/* =========================================================
   AM05 PRODUCTS SECTION CLEAN STYLE
========================================================= */

.am05-products-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(56,189,248,.10), transparent 32%),
    linear-gradient(180deg, #020617, #030711);
}

.am05-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  max-width: none;
  margin-bottom: 34px;
}

html[dir="rtl"] .am05-section-title {
  text-align: right;
}

.am05-section-title h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 10px 0 0;
  color: #fff;
}

.am05-section-title p {
  max-width: 520px;
  color: rgba(226,232,240,.72);
}

.am05-catalog-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.am05-catalog-card {
  border-radius: 10px 30px 10px 30px;
  background:
    linear-gradient(145deg, rgba(15,23,42,.70), rgba(2,6,23,.92));
  border: 1px solid rgba(147,197,253,.18);
  box-shadow:
    0 24px 60px rgba(0,0,0,.38),
    inset 0 0 20px rgba(255,255,255,.025);
  overflow: hidden;
  transition: .28s ease;
}

.am05-catalog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56,189,248,.40);
  box-shadow:
    0 30px 90px rgba(0,0,0,.52),
    0 0 30px rgba(56,189,248,.18);
}

.am05-catalog-image {
  height: 310px;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.12), transparent 60%),
    rgba(148,163,184,.10);
}

.am05-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.am05-catalog-content {
  padding: 16px;
}

.am05-catalog-content h3 {
  min-height: 44px;
  font-size: 16px;
  line-height: 1.35;
}

.am05-catalog-content p {
  color: rgba(226,232,240,.64);
  font-size: 13px;
  line-height: 1.6;
}

.am05-catalog-content .product-price strong {
  color: #93c5fd;
  text-shadow: 0 0 14px rgba(56,189,248,.30);
}

/* =========================================================
   TRUST SECTION
========================================================= */

.am05-trust-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(37,99,235,.12), transparent 30%),
    linear-gradient(180deg, #030711, #020617);
}

.am05-trust-grid .feature-card {
  background:
    linear-gradient(145deg, rgba(15,23,42,.70), rgba(2,6,23,.92));
  border: 1px solid rgba(147,197,253,.18);
  border-radius: 28px;
  padding: 28px;
  box-shadow:
    0 24px 60px rgba(0,0,0,.34),
    inset 0 0 20px rgba(255,255,255,.025);
}

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

@media (max-width: 1050px) {
  .am05-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .am05-banner-hero {
    height: 280px;
  }
}

@media (max-width: 760px) {
  .am05-banner-hero {
    height: 220px;
  }

  .am05-banner-hero img {
    object-position: center center;
  }

  .am05-section-title {
    display: block;
  }

  .am05-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .am05-catalog-image {
    height: 230px;
  }

  .am05-catalog-content p {
    display: none;
  }
}

@media (max-width: 480px) {
  .am05-banner-hero {
    height: 180px;
  }

  .am05-catalog-grid {
    grid-template-columns: 1fr;
  }

  .am05-catalog-image {
    height: 310px;
  }
}
/* =========================================================
   AM05 TECH - SMALL BANNER FULL IMAGE
   الصورة كاملة بدون تقطيع
========================================================= */

.am05-banner-hero {
  width: 100%;
  height: 320px;
  background: #020617;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  line-height: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.am05-banner-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* مهم: الصورة كاملة */
  object-position: center center;
  background: #020617;
}

/* حذف أي Hero قديم */
.home-hero,
.am05-home-hero,
.am05-face-hero,
.am05-only-photo-hero,
.am05-home-hero-inner,
.am05-hero-card,
.am05-hero-text,
.am05-hero-actions,
.am05-hero-features,
.am05-hero-face,
.am05-face-glow,
.am05-face-badge {
  display: none !important;
}

/* Responsive */
@media (max-width: 1050px) {
  .am05-banner-hero {
    height: 280px;
  }
}

@media (max-width: 760px) {
  .am05-banner-hero {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .am05-banner-hero {
    height: 180px;
  }
}
/* =========================================================
   AM05 TECH - BANNER LARGE FULL WIDTH
========================================================= */

.am05-banner-hero {
  width: 100%;
  height: 330px;
  background: #020617;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  line-height: 0;
}

.am05-banner-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;              /* باش تعمر العرض كامل */
  object-position: center 38%;     /* تحكم في مكان الوجه */
}

/* حذف أي Hero قديم */
.home-hero,
.am05-home-hero,
.am05-face-hero,
.am05-only-photo-hero,
.am05-home-hero-inner,
.am05-hero-card,
.am05-hero-text,
.am05-hero-actions,
.am05-hero-features,
.am05-hero-face,
.am05-face-glow,
.am05-face-badge {
  display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .am05-banner-hero {
    height: 230px;
  }

  .am05-banner-hero img {
    object-position: center 30%;
  }
}

@media (max-width: 480px) {
  .am05-banner-hero {
    height: 190px;
  }
}
/* =========================================================
   AM05 TECH - BANNER IMAGE COMPLETE + FULL WIDTH
   الصورة كاملة + عريضة + بدون تقطيع
========================================================= */

.am05-banner-hero {
  width: 100% !important;
  height: 360px !important;
  background: #020617 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  position: relative !important;
}

.am05-banner-hero img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;

  /* هذا هو المهم */
  object-fit: fill !important;

  object-position: center center !important;
}

/* حذف أي hero قديم */
.home-hero,
.am05-home-hero,
.am05-face-hero,
.am05-only-photo-hero,
.am05-home-hero-inner,
.am05-hero-card,
.am05-hero-text,
.am05-hero-actions,
.am05-hero-features,
.am05-hero-face,
.am05-face-glow,
.am05-face-badge {
  display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .am05-banner-hero {
    height: 240px !important;
  }
}

@media (max-width: 480px) {
  .am05-banner-hero {
    height: 190px !important;
  }
}
/* =========================================================
   AM05 - FIX SPACE AFTER BANNER
========================================================= */

/* حجم البانر النهائي */
.am05-banner-hero {
  width: 100% !important;
  height: 420px !important;
  background: #020617 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}

.am05-banner-hero img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: fill !important;
  object-position: center center !important;
}

/* نقص المسافة بين البانر والمنتجات */
.am05-products-section {
  padding-top: 45px !important;
}

/* نقص المسافة داخل عنوان المنتجات */
.am05-section-title {
  margin-bottom: 28px !important;
}

/* إذا بغيتي المنتجات تطلع أكثر */
.section.am05-products-section {
  padding-top: 35px !important;
}
/* =========================================================
   AM05 FINAL - CATALOGUE ONLY + BANNER
========================================================= */

/* Hide boutique links if any old link still exists */
.nav-links a[href="boutique.php"],
.navbar a[href="boutique.php"] {
  display: none !important;
}

/* Active nav */
.nav-links a.active,
.navbar a.active {
  color: #38bdf8 !important;
  text-shadow: 0 0 14px rgba(56,189,248,.55);
}

/* Banner */
.am05-banner-hero {
  width: 100% !important;
  height: 390px !important;
  background: #020617 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  position: relative !important;
}

.am05-banner-hero img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;

  /* image wide like a banner */
  object-fit: fill !important;
  object-position: center center !important;

  filter: brightness(1.05) contrast(1.05) saturate(1.06);
}

/* Remove old hero styles */
.home-hero,
.am05-home-hero,
.am05-face-hero,
.am05-only-photo-hero,
.am05-home-hero-inner,
.am05-hero-card,
.am05-hero-text,
.am05-hero-actions,
.am05-hero-features,
.am05-hero-face,
.am05-face-glow,
.am05-face-badge {
  display: none !important;
}

/* Reduce space after banner */
.am05-products-section,
.section.am05-products-section {
  padding-top: 42px !important;
}

/* Products title */
.am05-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  max-width: none;
  margin-bottom: 30px !important;
}

html[dir="rtl"] .am05-section-title {
  text-align: right;
}

.am05-section-title h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 10px 0 0;
  color: #fff;
}

.am05-section-title p {
  max-width: 520px;
  color: rgba(226,232,240,.72);
}

/* Products grid */
.am05-catalog-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.am05-catalog-card {
  border-radius: 10px 30px 10px 30px;
  background:
    linear-gradient(145deg, rgba(15,23,42,.70), rgba(2,6,23,.92));
  border: 1px solid rgba(147,197,253,.18);
  box-shadow:
    0 24px 60px rgba(0,0,0,.38),
    inset 0 0 20px rgba(255,255,255,.025);
  overflow: hidden;
  transition: .28s ease;
}

.am05-catalog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56,189,248,.40);
  box-shadow:
    0 30px 90px rgba(0,0,0,.52),
    0 0 30px rgba(56,189,248,.18);
}

.am05-catalog-image {
  height: 310px;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.12), transparent 60%),
    rgba(148,163,184,.10);
}

.am05-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.am05-catalog-content {
  padding: 16px;
}

.am05-catalog-content h3 {
  min-height: 44px;
  font-size: 16px;
  line-height: 1.35;
}

.am05-catalog-content p {
  color: rgba(226,232,240,.64);
  font-size: 13px;
  line-height: 1.6;
}

.am05-catalog-content .product-price strong {
  color: #93c5fd;
  text-shadow: 0 0 14px rgba(56,189,248,.30);
}

/* Trust section */
.am05-trust-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(37,99,235,.12), transparent 30%),
    linear-gradient(180deg, #030711, #020617);
}

.am05-trust-grid .feature-card {
  background:
    linear-gradient(145deg, rgba(15,23,42,.70), rgba(2,6,23,.92));
  border: 1px solid rgba(147,197,253,.18);
  border-radius: 28px;
  padding: 28px;
  box-shadow:
    0 24px 60px rgba(0,0,0,.34),
    inset 0 0 20px rgba(255,255,255,.025);
}

/* Responsive */
@media (max-width: 1050px) {
  .am05-banner-hero {
    height: 320px !important;
  }

  .am05-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .am05-banner-hero {
    height: 230px !important;
  }

  .am05-section-title {
    display: block;
  }

  .am05-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .am05-catalog-image {
    height: 230px;
  }

  .am05-catalog-content p {
    display: none;
  }
}

@media (max-width: 480px) {
  .am05-banner-hero {
    height: 185px !important;
  }

  .am05-catalog-grid {
    grid-template-columns: 1fr;
  }

  .am05-catalog-image {
    height: 310px;
  }
}
/* =========================================================
   AM05 TECH - LIGHT BLUE / WHITE / SKY BLUE THEME
   ضع هذا الكود في آخر assets/css/style.css
========================================================= */

/* =========================
   COLORS
========================= */
:root {
  --primary: #0ea5e9;
  --primary-light: #38bdf8;
  --primary-dark: #0369a1;

  --sky: #e0f2fe;
  --sky-soft: #f0f9ff;
  --blue-soft: #dbeafe;

  --bg: #f8fbff;
  --bg-soft: #eef8ff;
  --card: #ffffff;
  --card2: #f8fafc;

  --text: #0f172a;
  --muted: #64748b;
  --white: #ffffff;

  --border: rgba(14, 165, 233, .20);
  --border-blue: rgba(14, 165, 233, .28);

  --gold: #f59e0b;
  --green: #16a34a;
  --red: #ef4444;

  --shadow: 0 18px 45px rgba(14, 165, 233, .13);
  --shadow-blue: 0 14px 38px rgba(14, 165, 233, .22);

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --transition: .25s ease;
}

/* =========================
   BASE
========================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", Arial, Helvetica, sans-serif !important;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.22), transparent 28%),
    radial-gradient(circle at top right, rgba(14,165,233,.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f0f9ff 45%, #ffffff 100%) !important;
  color: var(--text) !important;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 62px 0 !important;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
small {
  color: var(--muted) !important;
}

hr {
  border: 0;
  border-top: 1px solid rgba(14,165,233,.18) !important;
}

/* =========================
   HEADER / NAVBAR
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(255,255,255,.92) !important;
  border-bottom: 1px solid rgba(14,165,233,.18) !important;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(14,165,233,.10) !important;
}

.nav-container,
.header-content {
  height: 88px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo img {
  width: 78px !important;
  height: 62px !important;
  object-fit: contain !important;
  border-radius: 16px !important;
  background: #ffffff;
  padding: 4px;
  filter: drop-shadow(0 8px 20px rgba(14,165,233,.22)) !important;
}

.logo-text {
  color: #0369a1 !important;
  font-weight: 900;
}

.nav-links,
.navbar {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 900;
}

.nav-links a,
.navbar a {
  position: relative;
  color: #334155 !important;
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-links a:hover,
.navbar a:hover,
.nav-links a.active,
.navbar a.active {
  color: #0284c7 !important;
  text-shadow: none !important;
}

.nav-links a::after,
.navbar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  transform: translateX(-50%);
  transition: var(--transition);
}

.nav-links a:hover::after,
.navbar a:hover::after,
.nav-links a.active::after,
.navbar a.active::after {
  width: 100%;
}

/* Language */
.lang-switcher {
  background: #f0f9ff !important;
  border: 1px solid rgba(14,165,233,.22) !important;
  border-radius: 999px;
}

.lang-switcher a {
  color: #64748b !important;
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 900;
}

.lang-switcher a.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
}

/* WhatsApp */
.nav-whatsapp {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  background: #dcfce7 !important;
  color: #15803d !important;
  border: 1px solid rgba(34,197,94,.26) !important;
}

/* Cart */
.cart-link {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 22px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  box-shadow: 0 12px 28px rgba(14,165,233,.24) !important;
  border: none !important;
}

.cart-link span,
.cart-count,
#cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #2563eb !important;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 900;
}

/* Mobile menu */
.mobile-menu-btn,
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
}

/* =========================
   BANNER IMAGE
========================= */
.am05-banner-hero {
  width: 100% !important;
  height: 390px !important;
  background: #e0f2fe !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  position: relative !important;
  border-bottom: 1px solid rgba(14,165,233,.18);
}

.am05-banner-hero img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: fill !important;
  object-position: center center !important;
  filter: brightness(1.04) contrast(1.03) saturate(1.04);
}

/* Hide old hero */
.home-hero,
.am05-home-hero,
.am05-face-hero,
.am05-only-photo-hero,
.am05-home-hero-inner,
.am05-hero-card,
.am05-hero-text,
.am05-hero-actions,
.am05-hero-features,
.am05-hero-face,
.am05-face-glow,
.am05-face-badge {
  display: none !important;
}

/* =========================
   BUTTONS
========================= */
.btn-primary,
.btn-outline,
.btn-danger,
.btn-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9, #2563eb) !important;
  border: none !important;
  box-shadow: 0 12px 28px rgba(14,165,233,.25) !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(14,165,233,.34) !important;
}

.btn-outline {
  color: #0284c7 !important;
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.30) !important;
  box-shadow: 0 8px 20px rgba(14,165,233,.08);
}

.btn-outline:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  transform: translateY(-2px);
}

.btn-danger,
.btn-remove {
  color: #dc2626 !important;
  background: #fee2e2 !important;
  border: 1px solid rgba(239,68,68,.28) !important;
}

.btn-danger:hover,
.btn-remove:hover {
  color: #ffffff !important;
  background: #ef4444 !important;
}

/* =========================
   SECTIONS TITLES
========================= */
.section-header,
.section-title,
.am05-section-title {
  max-width: none !important;
  margin-bottom: 32px !important;
}

.am05-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

html[dir="rtl"] .am05-section-title {
  text-align: right;
}

.section-header h2,
.section-title h2,
.am05-section-title h2,
.page-hero h1 {
  color: #0f172a !important;
  font-size: clamp(30px, 4.5vw, 54px) !important;
  line-height: 1.08;
  margin: 10px 0 0 !important;
  text-shadow: none !important;
}

.am05-section-title p,
.section-header p,
.section-title p {
  max-width: 560px;
  color: #64748b !important;
}

.hero-badge,
.product-category,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: #e0f2fe !important;
  color: #0284c7 !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(14,165,233,.22) !important;
  box-shadow: none !important;
}

/* =========================
   PRODUCTS
========================= */
.am05-products-section,
.section.am05-products-section {
  padding-top: 46px !important;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #f0f9ff) !important;
}

.products-grid,
.am05-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card,
.am05-catalog-card {
  overflow: hidden;
  border-radius: 24px !important;
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  box-shadow: 0 18px 42px rgba(14,165,233,.12) !important;
  transition: var(--transition);
  backdrop-filter: none !important;
}

.product-card:hover,
.am05-catalog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(14,165,233,.36) !important;
  box-shadow: 0 24px 60px rgba(14,165,233,.20) !important;
}

.product-image,
.am05-catalog-image {
  height: 305px !important;
  position: relative;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.16), transparent 62%),
    #f0f9ff !important;
}

.product-image img,
.am05-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
}

.product-badge,
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  color: #ffffff !important;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: none !important;
}

html[dir="rtl"] .product-badge,
html[dir="rtl"] .badge {
  left: auto;
  right: 14px;
}

.product-content,
.am05-catalog-content {
  padding: 18px !important;
}

.product-content h3,
.am05-catalog-content h3 {
  color: #0f172a !important;
  font-size: 18px !important;
  line-height: 1.35;
  min-height: 44px;
  margin-bottom: 8px;
}

.product-content p,
.am05-catalog-content p {
  color: #64748b !important;
  font-size: 14px;
  line-height: 1.6;
}

.product-rating,
.stars,
.review-stars {
  color: #f59e0b !important;
  margin: 8px 0;
}

.product-price,
.price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.product-price strong,
.price,
.details-price {
  color: #0284c7 !important;
  font-size: 24px;
  font-weight: 900;
  text-shadow: none !important;
}

.product-price span,
.old-price,
.details-old-price {
  color: #94a3b8 !important;
  text-decoration: line-through;
}

.product-actions,
.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* =========================
   CARDS / BOXES
========================= */
.card,
.admin-panel,
.checkout-box,
.summary-box,
.stat-card,
.category-card,
.offer-form-box,
.offer-trust-box,
.cart-box,
.product-gallery-box,
.product-info-box,
.product-details-image,
.product-details-info,
.review-card,
.admin-review-card,
.order-card,
.payment-box,
.success-card {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 42px rgba(14,165,233,.11) !important;
  backdrop-filter: none !important;
}

.card h1,
.card h2,
.card h3,
.admin-panel h1,
.admin-panel h2,
.admin-panel h3,
.checkout-box h1,
.checkout-box h2,
.checkout-box h3,
.summary-box h1,
.summary-box h2,
.summary-box h3,
.product-info-box h1,
.product-info-box h2,
.product-info-box h3,
.product-details-info h1,
.product-details-info h2,
.product-details-info h3 {
  color: #0f172a !important;
}

.feature-card {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 24px !important;
  padding: 24px !important;
  box-shadow: 0 18px 42px rgba(14,165,233,.10) !important;
}

.feature-card h3,
.feature-card span {
  color: #0f172a !important;
}

.feature-icon,
.home-hero-features strong {
  color: #0ea5e9 !important;
}

/* =========================
   FORMS
========================= */
.form-group label {
  color: #0f172a !important;
  font-weight: 900;
}

.form-group input,
.form-group textarea,
.form-group select,
.shop-controls input,
.admin-tools input,
.admin-tools select,
.order-actions select,
.checkout-box select,
.offer-link-box input {
  width: 100%;
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(14,165,233,.22) !important;
  border-radius: 16px !important;
  padding: 14px 16px;
  outline: none;
  font-weight: 700;
  box-shadow: none !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.admin-tools input:focus,
.admin-tools select:focus {
  border-color: rgba(14,165,233,.70) !important;
  box-shadow: 0 0 0 4px rgba(14,165,233,.13) !important;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8 !important;
}

/* =========================
   CART / CHECKOUT
========================= */
.cart-layout,
.checkout-layout,
.cart-page-layout,
.admin-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.cart-item,
.checkout-item,
.cart-page-item {
  border-bottom: 1px solid rgba(14,165,233,.16) !important;
}

.cart-item img,
.checkout-item img,
.cart-page-item img {
  background: #f0f9ff !important;
}

.summary-line {
  border-bottom: 1px solid rgba(14,165,233,.16) !important;
}

.total-line strong {
  color: #0284c7 !important;
}

.cart-qty-control {
  background: #f0f9ff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
}

.cart-qty-control button {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  color: #ffffff !important;
}

.cart-qty-control span {
  color: #0f172a !important;
}

/* =========================
   PAGE HERO
========================= */
.hero,
.page-hero,
.offer-hero {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.18), transparent 30%),
    linear-gradient(180deg, #ffffff, #f0f9ff) !important;
  color: #0f172a !important;
}

.hero h1,
.page-hero h1,
.offer-content h1 {
  color: #0f172a !important;
  text-shadow: none !important;
}

.hero p,
.page-hero p,
.offer-description {
  color: #64748b !important;
}

/* =========================
   PRODUCT DETAILS
========================= */
.product-description,
.details-info-box div,
.share-box {
  background: #f8fbff !important;
  border: 1px solid rgba(14,165,233,.16) !important;
}

.main-product-image img,
.product-details-image img {
  background: #f0f9ff !important;
}

.product-thumbnails button,
.thumbnail-btn {
  background: #f0f9ff !important;
}

.product-thumbnails button.active,
.thumbnail-btn.active,
.thumbnail-btn:hover {
  border-color: #0ea5e9 !important;
}

.product-trust-box div {
  background: #f0f9ff !important;
  border: 1px solid rgba(14,165,233,.16) !important;
  color: #0f172a !important;
}

/* =========================
   ADMIN
========================= */
.admin-tab {
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.20) !important;
  color: #0f172a !important;
}

.admin-tab:hover,
.admin-tab.active {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  color: #ffffff !important;
}

.stat-card strong {
  color: #0284c7 !important;
}

.order-status {
  border-radius: 999px;
  font-weight: 900;
}

.status-new {
  background: #e0f2fe !important;
  color: #0284c7 !important;
}

.status-confirmed {
  background: #fef3c7 !important;
  color: #b45309 !important;
}

.status-delivered {
  background: #dcfce7 !important;
  color: #15803d !important;
}

.status-cancelled {
  background: #fee2e2 !important;
  color: #dc2626 !important;
}

.chart-box,
.profit-item,
.returns-city-item,
.low-stock-item,
.top-product-item,
.report-list-item,
.return-card {
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  box-shadow: 0 14px 34px rgba(14,165,233,.10) !important;
}

/* =========================
   FILTERS / PAGINATION
========================= */
.shop-toolbar,
.shop-filter-panel {
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  box-shadow: 0 18px 42px rgba(14,165,233,.10) !important;
}

.category-filters a,
.filter-btn,
.page-link {
  color: #0284c7 !important;
  background: #f0f9ff !important;
  border: 1px solid rgba(14,165,233,.22) !important;
}

.category-filters a:hover,
.category-filters a.active,
.filter-btn:hover,
.filter-btn.active,
.page-link:hover,
.page-link.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  border-color: transparent !important;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #e0f2fe !important;
  border-top: 1px solid rgba(14,165,233,.18) !important;
  padding-top: 55px;
  margin-top: 40px;
  color: #0f172a !important;
}

.footer h3 {
  color: #0f172a !important;
}

.footer a,
.footer p {
  color: #475569 !important;
}

.footer a:hover {
  color: #0284c7 !important;
}

.footer-social a {
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  color: #0284c7 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(14,165,233,.18) !important;
}

/* =========================
   FLOATING WHATSAPP / CHAT
========================= */
.whatsapp-float {
  background: linear-gradient(145deg, #22c55e, #16a34a) !important;
  color: #ffffff !important;
  box-shadow:
    0 0 0 5px rgba(34,197,94,.12),
    0 0 30px rgba(34,197,94,.40) !important;
}

.am05-chat-toggle {
  background: linear-gradient(145deg, #38bdf8, #0ea5e9) !important;
  border: 1px solid rgba(14,165,233,.35) !important;
  box-shadow:
    0 0 0 5px rgba(14,165,233,.12),
    0 0 34px rgba(14,165,233,.38) !important;
}

.am05-chat-panel {
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.26) !important;
  box-shadow: 0 24px 80px rgba(14,165,233,.22) !important;
}

.am05-chat-header {
  background: linear-gradient(135deg, #e0f2fe, #ffffff) !important;
  border-bottom: 1px solid rgba(14,165,233,.18) !important;
}

.chat-brand h3 {
  color: #0f172a !important;
}

.chat-brand p {
  color: #0284c7 !important;
}

.am05-chat-body {
  background: #f8fbff !important;
}

.message-bubble.bot {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(14,165,233,.16) !important;
}

.message-bubble.user {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  color: #ffffff !important;
}

/* =========================
   RTL
========================= */
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  direction: rtl;
  text-align: right;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1050px) {
  .am05-banner-hero {
    height: 320px !important;
  }

  .products-grid,
  .am05-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 950px) {
  .mobile-menu-btn,
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links,
  .navbar {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.98) !important;
    border-bottom: 1px solid rgba(14,165,233,.18) !important;
    padding: 18px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 18px 42px rgba(14,165,233,.14);
  }

  .nav-links.active,
  .navbar.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .navbar a {
    padding: 14px;
    border-radius: 14px;
    background: #f0f9ff !important;
  }

  .cart-layout,
  .checkout-layout,
  .cart-page-layout,
  .admin-layout,
  .product-details-layout,
  .confirmation-layout,
  .reviews-layout,
  .product-reviews-layout,
  .dashboard-charts {
    grid-template-columns: 1fr !important;
  }

  .features-grid,
  .grid-3,
  .footer-grid,
  .footer-content {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 760px) {
  .am05-banner-hero {
    height: 230px !important;
  }

  .am05-section-title {
    display: block !important;
  }

  .products-grid,
  .am05-catalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }

  .product-image,
  .am05-catalog-image {
    height: 230px !important;
  }

  .product-content p,
  .am05-catalog-content p {
    display: none;
  }

  .product-actions,
  .product-card-actions {
    grid-template-columns: 1fr !important;
  }

  .features-grid,
  .grid-3,
  .footer-grid,
  .footer-content {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .am05-banner-hero {
    height: 185px !important;
  }

  .products-grid,
  .am05-catalog-grid {
    grid-template-columns: 1fr !important;
  }

  .product-image,
  .am05-catalog-image {
    height: 310px !important;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }
}

/* =========================
   PRINT
========================= */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .header,
  .footer,
  .whatsapp-float,
  .am05-chatbot,
  .mobile-bottom-nav {
    display: none !important;
  }
}
/* =========================================================
   AM05 TECH - PROFESSIONAL FOOTER
   Blue ciel + blanc + bleu
========================================================= */

.am05-footer {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.20), transparent 32%),
    linear-gradient(135deg, #e0f2fe 0%, #ffffff 45%, #f0f9ff 100%) !important;
  border-top: 1px solid rgba(14,165,233,.22);
  padding: 60px 0 0;
  color: #0f172a !important;
  margin-top: 50px;
}

.am05-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.am05-footer-brand h2 {
  font-size: 30px;
  font-weight: 900;
  color: #0369a1;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.am05-footer-brand p,
.am05-footer-col p {
  color: #475569 !important;
  line-height: 1.9;
  font-size: 15px;
}

.am05-footer-col h3 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}

.am05-footer-col h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  margin-top: 8px;
}

.am05-footer-col a {
  display: block;
  color: #334155 !important;
  margin-bottom: 11px;
  font-weight: 700;
  transition: .25s ease;
}

.am05-footer-col a:hover {
  color: #0284c7 !important;
  transform: translateX(4px);
}

html[dir="rtl"] .am05-footer-col a:hover {
  transform: translateX(-4px);
}

.am05-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.am05-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 900;
  color: #0284c7 !important;
  background: #ffffff;
  border: 1px solid rgba(14,165,233,.24);
  box-shadow: 0 10px 24px rgba(14,165,233,.12);
  transition: .25s ease;
}

.am05-footer-social a:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  transform: translateY(-3px);
}

.am05-footer-bottom {
  margin-top: 45px;
  padding: 20px 0;
  text-align: center;
  background: rgba(255,255,255,.55);
  border-top: 1px solid rgba(14,165,233,.18);
}

.am05-footer-bottom p {
  margin: 0;
  color: #334155 !important;
  font-weight: 700;
}

/* Floating WhatsApp */
.am05-floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: #ffffff !important;
  font-size: 28px;
  z-index: 9999;
  border: 4px solid rgba(255,255,255,.85);
  box-shadow:
    0 0 0 8px rgba(34,197,94,.12),
    0 18px 42px rgba(34,197,94,.35);
  transition: .25s ease;
}

.am05-floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

/* Hide old footer if there are old classes */
.footer:not(.am05-footer) {
  display: none !important;
}

/* Mobile responsive */
@media (max-width: 950px) {
  .am05-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .am05-footer {
    padding-top: 40px;
  }

  .am05-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .am05-footer-col h3::after {
    margin-left: auto;
    margin-right: auto;
  }

  .am05-footer-social {
    justify-content: center;
  }

  .am05-footer-col a:hover {
    transform: none;
  }

  .am05-floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
/* =========================================================
   AM05 TECH - WHY CHOOSE US PROFESSIONAL BLOCK
   Blue ciel + White + Blue
========================================================= */

.am05-trust-section {
  position: relative;
  padding: 80px 0 !important;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.22), transparent 32%),
    radial-gradient(circle at bottom right, rgba(14,165,233,.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%) !important;
  overflow: hidden;
}

.am05-trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14,165,233,.04) 25%, transparent 25%) -20px 0 / 40px 40px,
    linear-gradient(225deg, rgba(14,165,233,.04) 25%, transparent 25%) -20px 0 / 40px 40px;
  pointer-events: none;
}

.am05-trust-section .container {
  position: relative;
  z-index: 2;
}

/* Header */
.am05-trust-section .am05-section-title {
  display: block !important;
  text-align: center !important;
  max-width: 850px !important;
  margin: 0 auto 42px !important;
}

.am05-trust-section .hero-badge {
  margin: 0 auto 18px !important;
  background: #e0f2fe !important;
  color: #0284c7 !important;
  border: 1px solid rgba(14,165,233,.24) !important;
  box-shadow: 0 10px 24px rgba(14,165,233,.10) !important;
}

.am05-trust-section h2 {
  color: #0f172a !important;
  font-size: clamp(34px, 4.6vw, 62px) !important;
  font-weight: 900 !important;
  letter-spacing: -1px;
  text-transform: uppercase;
  opacity: 1 !important;
  text-shadow: none !important;
  margin-top: 10px !important;
}

/* Grid */
.am05-trust-grid,
.features-grid.am05-trust-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 26px !important;
  align-items: stretch;
}

/* Cards */
.am05-trust-grid .feature-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 34px 26px !important;
  border-radius: 30px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(240,249,255,.96)) !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  box-shadow:
    0 22px 55px rgba(14,165,233,.13),
    inset 0 1px 0 rgba(255,255,255,.80) !important;
  text-align: center;
  transition: .28s ease;
}

.am05-trust-grid .feature-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -70px;
  right: -70px;
  border-radius: 50%;
  background: rgba(56,189,248,.16);
  transition: .28s ease;
}

.am05-trust-grid .feature-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9, #2563eb);
  opacity: .85;
}

.am05-trust-grid .feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14,165,233,.36) !important;
  box-shadow:
    0 30px 70px rgba(14,165,233,.22),
    inset 0 1px 0 rgba(255,255,255,.90) !important;
}

.am05-trust-grid .feature-card:hover::before {
  transform: scale(1.25);
}

/* Icons */
.am05-trust-grid .feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 34px !important;
  background:
    linear-gradient(135deg, #e0f2fe, #ffffff);
  border: 1px solid rgba(14,165,233,.22);
  box-shadow: 0 14px 32px rgba(14,165,233,.14);
}

/* Text */
.am05-trust-grid .feature-card h3 {
  color: #0f172a !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  margin-bottom: 12px !important;
}

.am05-trust-grid .feature-card p {
  color: #64748b !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  max-width: 310px;
  margin: 0 auto !important;
}

/* Responsive */
@media (max-width: 950px) {
  .am05-trust-grid,
  .features-grid.am05-trust-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 650px) {
  .am05-trust-section {
    padding: 55px 0 !important;
  }

  .am05-trust-grid,
  .features-grid.am05-trust-grid {
    grid-template-columns: 1fr !important;
  }

  .am05-trust-grid .feature-card {
    min-height: auto;
  }

  .am05-trust-section h2 {
    font-size: 34px !important;
  }
}
.cart-item {
  display: grid;
  grid-template-columns: 95px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(14,165,233,.16);
}

.cart-item img {
  width: 95px;
  height: 95px;
  border-radius: 18px;
  object-fit: cover;
  background: #e0f2fe;
}

.cart-info h3 {
  color: #0f172a;
  font-size: 18px;
  margin-bottom: 5px;
}

.cart-info p {
  color: #0284c7 !important;
  font-weight: 900;
}

.cart-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f9ff;
  border: 1px solid rgba(14,165,233,.20);
  border-radius: 999px;
  padding: 5px;
  margin-top: 8px;
}

.cart-qty-control button {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.cart-qty-control span {
  min-width: 28px;
  text-align: center;
  color: #0f172a;
  font-weight: 900;
}

.cart-line-total {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.cart-line-total strong {
  color: #0284c7;
  font-size: 18px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  opacity: 0;
  transition: .3s;
  z-index: 9999;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(14,165,233,.30);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 650px) {
  .cart-item {
    grid-template-columns: 78px 1fr;
  }

  .cart-line-total {
    grid-column: 1 / -1;
    justify-items: start;
  }
}
/* =========================================================
   AM05 TECH - CATALOGUE / PANIER / COMMANDE / SUIVI PRO STYLE
   Blue ciel + Blanc + Bleu
========================================================= */

/* =========================
   PAGE HERO
========================= */

.page-hero {
  position: relative;
  padding: 70px 0 58px !important;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.22), transparent 32%),
    radial-gradient(circle at bottom right, rgba(14,165,233,.16), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%) !important;
  border-bottom: 1px solid rgba(14,165,233,.18);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14,165,233,.045) 25%, transparent 25%) -20px 0 / 44px 44px,
    linear-gradient(225deg, rgba(14,165,233,.04) 25%, transparent 25%) -20px 0 / 44px 44px;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .hero-badge {
  margin: 0 auto 18px !important;
  background: #ffffff !important;
  color: #0284c7 !important;
  border: 1px solid rgba(14,165,233,.24) !important;
  box-shadow: 0 12px 28px rgba(14,165,233,.12) !important;
}

.page-hero h1 {
  color: #0f172a !important;
  font-size: clamp(34px, 5vw, 62px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  margin: 0 0 12px !important;
  text-shadow: none !important;
}

.page-hero p {
  max-width: 650px;
  margin: 0 auto !important;
  color: #64748b !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
}

/* =========================
   GENERAL SECTIONS
========================= */

.section {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%) !important;
}

.card,
.checkout-box,
.summary-box,
.cart-box,
.admin-panel {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 28px !important;
  box-shadow: 0 18px 45px rgba(14,165,233,.12) !important;
}

.checkout-box,
.summary-box,
.cart-box {
  padding: 28px !important;
}

.checkout-box h2,
.summary-box h2,
.cart-box h2,
.card h2,
.card h3 {
  color: #0f172a !important;
  font-weight: 900 !important;
}

.checkout-box p,
.summary-box p,
.cart-box p,
.card p {
  color: #64748b !important;
}

/* =========================
   CATALOGUE PAGE
========================= */

.shop-toolbar,
.shop-filter-panel {
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 26px !important;
  padding: 22px !important;
  margin-bottom: 30px !important;
  box-shadow: 0 18px 45px rgba(14,165,233,.11) !important;
}

.category-filters,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filters a,
.filter-btn {
  color: #0284c7 !important;
  background: #f0f9ff !important;
  border: 1px solid rgba(14,165,233,.22) !important;
  padding: 11px 17px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  transition: .25s ease;
}

.category-filters a:hover,
.category-filters a.active,
.filter-btn:hover,
.filter-btn.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  border-color: transparent !important;
  transform: translateY(-2px);
}

/* Search / selects */
.shop-controls input,
.shop-controls select,
.shop-filter-panel input,
.shop-filter-panel select {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(14,165,233,.22) !important;
  border-radius: 16px !important;
  padding: 14px 16px !important;
  outline: none !important;
  font-weight: 700 !important;
}

.shop-controls input:focus,
.shop-controls select:focus,
.shop-filter-panel input:focus,
.shop-filter-panel select:focus {
  border-color: rgba(14,165,233,.70) !important;
  box-shadow: 0 0 0 4px rgba(14,165,233,.13) !important;
}

/* Catalogue product grid */
.products-grid,
.am05-catalog-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

.product-card,
.am05-catalog-card {
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 45px rgba(14,165,233,.12) !important;
  transition: .28s ease !important;
}

.product-card:hover,
.am05-catalog-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(14,165,233,.40) !important;
  box-shadow: 0 28px 70px rgba(14,165,233,.22) !important;
}

.product-image,
.am05-catalog-image {
  height: 305px !important;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.16), transparent 60%),
    #f0f9ff !important;
}

.product-image img,
.am05-catalog-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.product-badge,
.badge {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 10px 24px rgba(14,165,233,.22);
}

.product-category {
  background: #e0f2fe !important;
  color: #0284c7 !important;
  border: 1px solid rgba(14,165,233,.22) !important;
}

.product-content h3,
.am05-catalog-content h3 {
  color: #0f172a !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

.product-content p,
.am05-catalog-content p {
  color: #64748b !important;
}

.product-price strong,
.price,
.details-price {
  color: #0284c7 !important;
  text-shadow: none !important;
}

.product-price span,
.old-price,
.details-old-price {
  color: #94a3b8 !important;
}

/* =========================
   PANIER PAGE
========================= */

.cart-layout,
.cart-page-layout {
  display: grid !important;
  grid-template-columns: 1.2fr .8fr !important;
  gap: 28px !important;
  align-items: start;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(14,165,233,.16) !important;
}

.cart-item,
.cart-page-item {
  display: grid !important;
  grid-template-columns: 96px 1fr auto !important;
  gap: 18px !important;
  align-items: center !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(14,165,233,.16) !important;
}

.cart-item img,
.cart-page-item img {
  width: 96px !important;
  height: 96px !important;
  border-radius: 20px !important;
  object-fit: cover !important;
  background: #e0f2fe !important;
  border: 1px solid rgba(14,165,233,.14);
}

.cart-info h3,
.cart-page-item h3 {
  color: #0f172a !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  margin-bottom: 5px !important;
}

.cart-info p,
.cart-page-item p {
  color: #0284c7 !important;
  font-weight: 900 !important;
}

.cart-qty-control {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #f0f9ff !important;
  border: 1px solid rgba(14,165,233,.20) !important;
  border-radius: 999px !important;
  padding: 5px !important;
  margin-top: 8px !important;
}

.cart-qty-control button {
  width: 32px !important;
  height: 32px !important;
  border: none !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

.cart-qty-control span {
  min-width: 28px !important;
  text-align: center !important;
  color: #0f172a !important;
  font-weight: 900 !important;
}

.cart-line-total,
.cart-page-total {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.cart-line-total strong,
.cart-page-total strong {
  color: #0284c7 !important;
  font-size: 18px !important;
}

.summary-box {
  position: sticky;
  top: 105px;
}

.summary-line {
  display: flex !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 15px 0 !important;
  border-bottom: 1px solid rgba(14,165,233,.16) !important;
  color: #0f172a !important;
}

.summary-line span {
  color: #64748b !important;
  font-weight: 800;
}

.summary-line strong {
  color: #0284c7 !important;
  font-weight: 900;
}

.total-line strong {
  font-size: 23px !important;
  color: #0369a1 !important;
}

/* =========================
   COMMANDE / CHECKOUT PAGE
========================= */

.checkout-layout {
  display: grid !important;
  grid-template-columns: 1.1fr .9fr !important;
  gap: 28px !important;
  align-items: start !important;
}

.form-group {
  margin-bottom: 18px !important;
}

.form-group label {
  display: block !important;
  color: #0f172a !important;
  font-weight: 900 !important;
  margin-bottom: 8px !important;
}

.form-group input,
.form-group textarea,
.form-group select,
.checkout-box input,
.checkout-box textarea,
.checkout-box select {
  width: 100% !important;
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(14,165,233,.22) !important;
  border-radius: 16px !important;
  padding: 14px 16px !important;
  outline: none !important;
  font-weight: 700 !important;
  transition: .25s ease !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.checkout-box input:focus,
.checkout-box textarea:focus,
.checkout-box select:focus {
  border-color: rgba(14,165,233,.70) !important;
  box-shadow: 0 0 0 4px rgba(14,165,233,.13) !important;
}

.payment-box {
  background: #f0f9ff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 22px !important;
  padding: 18px !important;
  color: #0f172a !important;
}

.checkout-item {
  display: grid !important;
  grid-template-columns: 75px 1fr auto !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(14,165,233,.16) !important;
}

.checkout-item img {
  width: 75px !important;
  height: 75px !important;
  border-radius: 16px !important;
  object-fit: cover !important;
  background: #e0f2fe !important;
}

/* =========================
   SUIVI / TRACK ORDER PAGE
========================= */

.track-box,
.tracking-box,
.track-card {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 30px !important;
  box-shadow: 0 18px 45px rgba(14,165,233,.12) !important;
  padding: 30px !important;
}

.track-box h2,
.tracking-box h2,
.track-card h2 {
  color: #0f172a !important;
  font-weight: 900 !important;
}

.track-box p,
.tracking-box p,
.track-card p {
  color: #64748b !important;
}

.track-form,
.tracking-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 20px;
}

.track-form input,
.tracking-form input,
input[name="order_number"],
input[name="phone"] {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(14,165,233,.22) !important;
  border-radius: 16px !important;
  padding: 14px 16px !important;
  outline: none !important;
  font-weight: 700 !important;
}

.track-form input:focus,
.tracking-form input:focus,
input[name="order_number"]:focus,
input[name="phone"]:focus {
  border-color: rgba(14,165,233,.70) !important;
  box-shadow: 0 0 0 4px rgba(14,165,233,.13) !important;
}

.order-tracking-result,
.tracking-result,
.order-result {
  margin-top: 24px;
  background: #f0f9ff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 22px !important;
  padding: 20px !important;
}

.order-status {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 900;
}

.status-new {
  background: #e0f2fe !important;
  color: #0284c7 !important;
}

.status-confirmed {
  background: #fef3c7 !important;
  color: #b45309 !important;
}

.status-delivered {
  background: #dcfce7 !important;
  color: #15803d !important;
}

.status-cancelled {
  background: #fee2e2 !important;
  color: #dc2626 !important;
}

/* =========================
   BUTTONS
========================= */

.btn-primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9, #2563eb) !important;
  border: none !important;
  box-shadow: 0 12px 28px rgba(14,165,233,.25) !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(14,165,233,.34) !important;
}

.btn-outline {
  color: #0284c7 !important;
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.30) !important;
  box-shadow: 0 8px 20px rgba(14,165,233,.08);
}

.btn-outline:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  transform: translateY(-2px);
}

.btn-remove,
.btn-danger {
  color: #dc2626 !important;
  background: #fee2e2 !important;
  border: 1px solid rgba(239,68,68,.28) !important;
  border-radius: 999px !important;
}

.btn-remove:hover,
.btn-danger:hover {
  color: #ffffff !important;
  background: #ef4444 !important;
}

/* =========================
   TOAST
========================= */

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 999px;
  opacity: 0;
  transition: .3s;
  z-index: 9999;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(14,165,233,.30);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

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

@media (max-width: 1050px) {
  .products-grid,
  .am05-catalog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .cart-layout,
  .cart-page-layout,
  .checkout-layout {
    grid-template-columns: 1fr !important;
  }

  .summary-box {
    position: static;
  }
}

@media (max-width: 760px) {
  .page-hero {
    padding: 52px 0 42px !important;
  }

  .products-grid,
  .am05-catalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .product-image,
  .am05-catalog-image {
    height: 230px !important;
  }

  .product-actions,
  .product-card-actions {
    grid-template-columns: 1fr !important;
  }

  .cart-item,
  .cart-page-item {
    grid-template-columns: 78px 1fr !important;
  }

  .cart-line-total,
  .cart-page-total {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .track-form,
  .tracking-form {
    grid-template-columns: 1fr;
  }

  .track-form .btn-primary,
  .tracking-form .btn-primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .am05-catalog-grid {
    grid-template-columns: 1fr !important;
  }

  .product-image,
  .am05-catalog-image {
    height: 310px !important;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .checkout-box,
  .summary-box,
  .cart-box,
  .track-box,
  .tracking-box,
  .track-card {
    padding: 22px !important;
  }
}
/* =========================================================
   AM05 TECH - PROFESSIONAL SKY BLUE THEME
   Pages: Catalogue / Panier / Commande / Suivi / Admin
   Couleurs: Bleu foncé + Bleu ciel + Blanc
========================================================= */

:root {
  --am05-dark: #061126;
  --am05-dark-2: #0b1b36;
  --am05-blue: #0ea5e9;
  --am05-blue-2: #38bdf8;
  --am05-blue-3: #2563eb;
  --am05-sky: #e0f2fe;
  --am05-sky-2: #f0f9ff;
  --am05-white: #ffffff;
  --am05-text: #0f172a;
  --am05-muted: #64748b;
  --am05-border: rgba(14, 165, 233, .20);
  --am05-shadow: 0 18px 45px rgba(14, 165, 233, .14);
  --am05-shadow-dark: 0 22px 55px rgba(2, 6, 23, .28);
}

/* =========================================================
   GLOBAL
========================================================= */

body {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f0f9ff 45%, #ffffff 100%) !important;
  color: var(--am05-text) !important;
}

.section {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f0f9ff) !important;
  padding: 60px 0 !important;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* =========================================================
   HEADER
========================================================= */

.header {
  background: rgba(255, 255, 255, .96) !important;
  border-bottom: 1px solid var(--am05-border) !important;
  box-shadow: 0 12px 30px rgba(14,165,233,.10) !important;
  backdrop-filter: blur(16px);
}

.nav-container,
.header-content {
  height: 86px !important;
}

.logo img {
  width: 78px !important;
  height: 62px !important;
  border-radius: 16px !important;
  object-fit: contain !important;
  background: #fff;
  padding: 4px;
  filter: drop-shadow(0 8px 18px rgba(14,165,233,.25)) !important;
}

.nav-links a,
.navbar a {
  color: #334155 !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  text-transform: uppercase;
}

.nav-links a:hover,
.navbar a:hover,
.nav-links a.active,
.navbar a.active {
  color: var(--am05-blue) !important;
}

.nav-links a::after,
.navbar a::after {
  background: linear-gradient(90deg, var(--am05-blue-2), var(--am05-blue)) !important;
}

.lang-switcher {
  background: var(--am05-sky-2) !important;
  border: 1px solid var(--am05-border) !important;
}

.lang-switcher a {
  color: #64748b !important;
}

.lang-switcher a.active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--am05-blue-2), var(--am05-blue)) !important;
}

.nav-whatsapp {
  background: #dcfce7 !important;
  color: #15803d !important;
  border: 1px solid rgba(34,197,94,.25) !important;
}

.cart-link {
  background: linear-gradient(135deg, var(--am05-blue-2), var(--am05-blue)) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(14,165,233,.24) !important;
}

.cart-link span,
#cart-count,
.cart-count {
  background: var(--am05-blue-3) !important;
  color: #fff !important;
}

/* =========================================================
   PAGE HERO STYLE
   Catalogue / Panier / Commande / Suivi / Admin
========================================================= */

.page-hero {
  position: relative;
  padding: 78px 0 62px !important;
  text-align: center !important;
  background:
    radial-gradient(circle at center, rgba(14,165,233,.18), transparent 34%),
    linear-gradient(135deg, #020617 0%, #061126 52%, #0b1b36 100%) !important;
  border-bottom: 4px solid var(--am05-sky);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.035) 25%, transparent 25%) -20px 0 / 44px 44px,
    linear-gradient(225deg, rgba(255,255,255,.03) 25%, transparent 25%) -20px 0 / 44px 44px;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .hero-badge {
  margin: 0 auto 18px !important;
  background: var(--am05-sky) !important;
  color: #0369a1 !important;
  border: 1px solid rgba(56,189,248,.32) !important;
  box-shadow: 0 10px 28px rgba(56,189,248,.20) !important;
}

.page-hero h1 {
  color: #ffffff !important;
  font-size: clamp(38px, 5vw, 66px) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(56,189,248,.34) !important;
  margin: 0 0 14px !important;
}

.page-hero p {
  color: #cbd5e1 !important;
  max-width: 700px;
  margin: auto !important;
  font-size: 16px !important;
}

/* =========================================================
   TITLES / BADGES
========================================================= */

.hero-badge,
.product-category,
.badge {
  background: var(--am05-sky) !important;
  color: #0284c7 !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 999px !important;
  padding: 8px 16px !important;
  font-weight: 900 !important;
}

.section-header h2,
.section-title h2,
.am05-section-title h2 {
  color: var(--am05-text) !important;
  font-size: clamp(32px, 4.5vw, 56px) !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

.section-header p,
.section-title p,
.am05-section-title p {
  color: var(--am05-muted) !important;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--am05-blue-2), var(--am05-blue), var(--am05-blue-3)) !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  box-shadow: 0 12px 30px rgba(14,165,233,.28) !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(14,165,233,.35) !important;
}

.btn-outline {
  color: #0284c7 !important;
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.32) !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  box-shadow: 0 8px 22px rgba(14,165,233,.08) !important;
}

.btn-outline:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--am05-blue-2), var(--am05-blue)) !important;
  transform: translateY(-2px);
}

.btn-remove,
.btn-danger {
  color: #dc2626 !important;
  background: #fee2e2 !important;
  border: 1px solid rgba(239,68,68,.28) !important;
  border-radius: 999px !important;
}

.btn-remove:hover,
.btn-danger:hover {
  background: #ef4444 !important;
  color: #fff !important;
}

/* =========================================================
   CATALOGUE PAGE
========================================================= */

.shop-toolbar,
.shop-filter-panel {
  background: #ffffff !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 28px !important;
  padding: 22px !important;
  margin-bottom: 32px !important;
  box-shadow: var(--am05-shadow) !important;
}

.category-filters,
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.category-filters a,
.filter-btn {
  color: #0284c7 !important;
  background: var(--am05-sky-2) !important;
  border: 1px solid var(--am05-border) !important;
  padding: 11px 18px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
}

.category-filters a:hover,
.category-filters a.active,
.filter-btn:hover,
.filter-btn.active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--am05-blue-2), var(--am05-blue)) !important;
  transform: translateY(-2px);
}

.products-grid,
.am05-catalog-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

.product-card,
.am05-catalog-card {
  background: #ffffff !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  box-shadow: var(--am05-shadow) !important;
  transition: .28s ease !important;
}

.product-card:hover,
.am05-catalog-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(14,165,233,.42) !important;
  box-shadow: 0 28px 70px rgba(14,165,233,.22) !important;
}

.product-image,
.am05-catalog-image {
  height: 305px !important;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.18), transparent 60%),
    var(--am05-sky-2) !important;
}

.product-image img,
.am05-catalog-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.product-badge {
  background: linear-gradient(135deg, var(--am05-blue-2), var(--am05-blue)) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 10px 24px rgba(14,165,233,.24);
}

.product-content,
.am05-catalog-content {
  padding: 18px !important;
}

.product-content h3,
.am05-catalog-content h3 {
  color: var(--am05-text) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  min-height: 44px;
}

.product-content p,
.am05-catalog-content p {
  color: var(--am05-muted) !important;
}

.product-price strong,
.price,
.details-price {
  color: #0284c7 !important;
  font-size: 24px !important;
  text-shadow: none !important;
}

.product-rating,
.stars {
  color: #f59e0b !important;
}

/* =========================================================
   PANIER PAGE
========================================================= */

.cart-layout,
.cart-page-layout {
  display: grid !important;
  grid-template-columns: 1.2fr .8fr !important;
  gap: 28px !important;
  align-items: start;
}

.checkout-box,
.summary-box,
.cart-box,
.card {
  background: #ffffff !important;
  color: var(--am05-text) !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 28px !important;
  box-shadow: var(--am05-shadow) !important;
  padding: 28px !important;
}

.checkout-box h2,
.summary-box h2,
.cart-box h2 {
  color: var(--am05-text) !important;
  font-weight: 900 !important;
}

.cart-header {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(14,165,233,.16) !important;
}

.cart-item,
.cart-page-item {
  display: grid !important;
  grid-template-columns: 96px 1fr auto !important;
  gap: 18px !important;
  align-items: center !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(14,165,233,.16) !important;
}

.cart-item img,
.cart-page-item img {
  width: 96px !important;
  height: 96px !important;
  border-radius: 20px !important;
  object-fit: cover !important;
  background: var(--am05-sky) !important;
}

.cart-info h3,
.cart-page-item h3 {
  color: var(--am05-text) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

.cart-info p,
.cart-page-item p {
  color: #0284c7 !important;
  font-weight: 900 !important;
}

.cart-qty-control {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--am05-sky-2) !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 999px !important;
  padding: 5px !important;
  margin-top: 8px !important;
}

.cart-qty-control button {
  width: 32px !important;
  height: 32px !important;
  border: none !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--am05-blue-2), var(--am05-blue)) !important;
  color: #fff !important;
  font-weight: 900 !important;
  cursor: pointer;
}

.cart-qty-control span {
  min-width: 28px !important;
  text-align: center !important;
  color: var(--am05-text) !important;
  font-weight: 900 !important;
}

.summary-box {
  position: sticky;
  top: 110px;
}

.summary-line {
  display: flex !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 15px 0 !important;
  border-bottom: 1px solid rgba(14,165,233,.16) !important;
}

.summary-line span {
  color: var(--am05-muted) !important;
  font-weight: 800;
}

.summary-line strong {
  color: #0284c7 !important;
  font-weight: 900;
}

.total-line strong {
  color: #0369a1 !important;
  font-size: 24px !important;
}

/* =========================================================
   COMMANDE / CHECKOUT PAGE
========================================================= */

.checkout-layout {
  display: grid !important;
  grid-template-columns: 1.1fr .9fr !important;
  gap: 28px !important;
  align-items: start;
}

.form-group {
  margin-bottom: 18px !important;
}

.form-group label {
  color: var(--am05-text) !important;
  font-weight: 900 !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.form-group input,
.form-group textarea,
.form-group select,
.checkout-box input,
.checkout-box textarea,
.checkout-box select,
.admin-panel input,
.admin-panel textarea,
.admin-panel select {
  width: 100% !important;
  background: #ffffff !important;
  color: var(--am05-text) !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 16px !important;
  padding: 14px 16px !important;
  outline: none !important;
  font-weight: 700 !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.checkout-box input:focus,
.checkout-box textarea:focus,
.checkout-box select:focus,
.admin-panel input:focus,
.admin-panel textarea:focus,
.admin-panel select:focus {
  border-color: rgba(14,165,233,.70) !important;
  box-shadow: 0 0 0 4px rgba(14,165,233,.13) !important;
}

.checkout-item {
  display: grid !important;
  grid-template-columns: 75px 1fr auto !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(14,165,233,.16) !important;
}

.checkout-item img {
  width: 75px !important;
  height: 75px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  background: var(--am05-sky) !important;
}

.payment-box {
  background: var(--am05-sky-2) !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 22px !important;
  color: var(--am05-text) !important;
}

/* =========================================================
   SUIVI PAGE
========================================================= */

.track-box,
.tracking-box,
.track-card,
.order-tracking-result,
.tracking-result,
.order-result {
  max-width: 780px;
  margin: 0 auto;
  background: #ffffff !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 30px !important;
  box-shadow: var(--am05-shadow) !important;
  padding: 30px !important;
}

.track-box h2,
.tracking-box h2,
.track-card h2 {
  color: var(--am05-text) !important;
  font-weight: 900 !important;
}

.track-box p,
.tracking-box p,
.track-card p {
  color: var(--am05-muted) !important;
}

.track-form,
.tracking-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 20px;
}

.track-form input,
.tracking-form input,
input[name="order_number"],
input[name="phone"] {
  background: #ffffff !important;
  color: var(--am05-text) !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 16px !important;
  padding: 14px 16px !important;
  outline: none !important;
  font-weight: 700 !important;
}

.order-status {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.status-new {
  background: var(--am05-sky) !important;
  color: #0284c7 !important;
}

.status-confirmed {
  background: #fef3c7 !important;
  color: #b45309 !important;
}

.status-delivered {
  background: #dcfce7 !important;
  color: #15803d !important;
}

.status-cancelled {
  background: #fee2e2 !important;
  color: #dc2626 !important;
}

/* =========================================================
   ADMIN PAGE
========================================================= */

.admin-panel {
  background: #ffffff !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 28px !important;
  box-shadow: var(--am05-shadow) !important;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.admin-tab {
  background: var(--am05-sky-2) !important;
  color: #0284c7 !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 999px !important;
  padding: 12px 20px !important;
  font-weight: 900 !important;
}

.admin-tab:hover,
.admin-tab.active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--am05-blue-2), var(--am05-blue)) !important;
  border-color: transparent !important;
}

.kpi-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
}

.stat-card {
  background: #ffffff !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 24px !important;
  box-shadow: var(--am05-shadow) !important;
  padding: 24px !important;
}

.stat-card span {
  color: var(--am05-muted) !important;
}

.stat-card strong {
  color: #0284c7 !important;
}

.order-card,
.product-admin-item,
.chart-box,
.report-list-item,
.profit-item,
.top-product-item,
.low-stock-item {
  background: #ffffff !important;
  border: 1px solid var(--am05-border) !important;
  border-radius: 22px !important;
  box-shadow: 0 14px 34px rgba(14,165,233,.10) !important;
}

/* =========================================================
   FOOTER
========================================================= */

.am05-footer {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.20), transparent 32%),
    linear-gradient(135deg, #e0f2fe 0%, #ffffff 45%, #f0f9ff 100%) !important;
  border-top: 1px solid var(--am05-border) !important;
}

.am05-footer h2,
.am05-footer h3 {
  color: #0369a1 !important;
}

.am05-footer p,
.am05-footer a {
  color: #334155 !important;
}

/* =========================================================
   TOAST
========================================================= */

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, var(--am05-blue-2), var(--am05-blue));
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 999px;
  opacity: 0;
  transition: .3s;
  z-index: 9999;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(14,165,233,.30);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

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

@media (max-width: 1050px) {
  .products-grid,
  .am05-catalog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .cart-layout,
  .cart-page-layout,
  .checkout-layout {
    grid-template-columns: 1fr !important;
  }

  .summary-box {
    position: static;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .page-hero {
    padding: 54px 0 44px !important;
  }

  .page-hero h1 {
    font-size: 36px !important;
  }

  .products-grid,
  .am05-catalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .product-image,
  .am05-catalog-image {
    height: 230px !important;
  }

  .product-actions,
  .product-card-actions {
    grid-template-columns: 1fr !important;
  }

  .cart-item,
  .cart-page-item {
    grid-template-columns: 78px 1fr !important;
  }

  .cart-line-total,
  .cart-page-total {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .track-form,
  .tracking-form {
    grid-template-columns: 1fr !important;
  }

  .track-form .btn-primary,
  .tracking-form .btn-primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .am05-catalog-grid {
    grid-template-columns: 1fr !important;
  }

  .product-image,
  .am05-catalog-image {
    height: 310px !important;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .checkout-box,
  .summary-box,
  .cart-box,
  .track-box,
  .tracking-box,
  .track-card,
  .admin-panel {
    padding: 22px !important;
  }

  .kpi-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================================
   AM05 TECH - COMPACT BLUE HERO
   Pour: Catalogue / Panier / Commande / Suivi / Admin
========================================================= */

.page-hero.compact-hero {
  position: relative;
  padding: 42px 0 34px !important;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(14,165,233,.16), transparent 34%),
    linear-gradient(135deg, #020617 0%, #061126 55%, #0b1b36 100%) !important;
  border-bottom: 2px solid #dbeafe;
  overflow: hidden;
  min-height: auto !important;
}

.page-hero.compact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.03) 25%, transparent 25%) -20px 0 / 42px 42px,
    linear-gradient(225deg, rgba(255,255,255,.02) 25%, transparent 25%) -20px 0 / 42px 42px;
  pointer-events: none;
}

.page-hero.compact-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero.compact-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  background: #e0f2fe !important;
  color: #0369a1 !important;
  border: 1px solid rgba(56,189,248,.28) !important;
  box-shadow: 0 8px 24px rgba(56,189,248,.16) !important;
  font-weight: 900 !important;
  font-size: 13px !important;
}

.page-hero.compact-hero h1 {
  color: #ffffff !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  margin: 0 0 10px !important;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-shadow: 0 0 18px rgba(56,189,248,.24);
}

.page-hero.compact-hero p {
  color: #cbd5e1 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin: 0 auto !important;
  max-width: 700px;
}

/* Optional: container width for hero text */
.page-hero.compact-hero .container.small-hero-container {
  max-width: 900px;
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero.compact-hero {
    padding: 34px 0 28px !important;
  }

  .page-hero.compact-hero h1 {
    font-size: 28px !important;
  }

  .page-hero.compact-hero p {
    font-size: 13px !important;
  }
}
/* =========================================================
   AM05 TECH - COMPACT PAGE HERO
   Panier / Commande / Suivi / Admin / Catalogue
========================================================= */

.page-hero.compact-hero {
  position: relative;
  min-height: auto !important;
  padding: 42px 0 34px !important;
  text-align: center !important;
  background:
    radial-gradient(circle at center, rgba(14,165,233,.16), transparent 34%),
    linear-gradient(135deg, #020617 0%, #061126 55%, #0b1b36 100%) !important;
  border-bottom: 2px solid #dbeafe;
  overflow: hidden;
}

.page-hero.compact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.03) 25%, transparent 25%) -20px 0 / 42px 42px,
    linear-gradient(225deg, rgba(255,255,255,.02) 25%, transparent 25%) -20px 0 / 42px 42px;
  pointer-events: none;
}

.page-hero.compact-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero.compact-hero .small-hero-container {
  max-width: 900px;
}

.page-hero.compact-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  background: #e0f2fe !important;
  color: #0369a1 !important;
  border: 1px solid rgba(56,189,248,.28) !important;
  box-shadow: 0 8px 24px rgba(56,189,248,.16) !important;
  font-weight: 900 !important;
  font-size: 13px !important;
}

.page-hero.compact-hero h1 {
  color: #ffffff !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  margin: 0 0 10px !important;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-shadow: 0 0 18px rgba(56,189,248,.24) !important;
}

.page-hero.compact-hero p {
  color: #cbd5e1 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin: 0 auto !important;
  max-width: 700px;
}

@media (max-width: 768px) {
  .page-hero.compact-hero {
    padding: 34px 0 28px !important;
  }

  .page-hero.compact-hero h1 {
    font-size: 28px !important;
  }

  .page-hero.compact-hero p {
    font-size: 13px !important;
  }
}
/* Compact hero for Panier / Commande / Suivi / Admin */
.page-hero.compact-hero {
  position: relative;
  min-height: auto !important;
  padding: 42px 0 34px !important;
  text-align: center !important;
  background:
    radial-gradient(circle at center, rgba(14,165,233,.16), transparent 34%),
    linear-gradient(135deg, #020617 0%, #061126 55%, #0b1b36 100%) !important;
  border-bottom: 2px solid #dbeafe;
  overflow: hidden;
}

.page-hero.compact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.03) 25%, transparent 25%) -20px 0 / 42px 42px,
    linear-gradient(225deg, rgba(255,255,255,.02) 25%, transparent 25%) -20px 0 / 42px 42px;
  pointer-events: none;
}

.page-hero.compact-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero.compact-hero .small-hero-container {
  max-width: 900px;
}

.page-hero.compact-hero .hero-badge {
  display: inline-flex;
  margin: 0 auto 14px !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  background: #e0f2fe !important;
  color: #0369a1 !important;
  border: 1px solid rgba(56,189,248,.28) !important;
  font-weight: 900 !important;
  font-size: 13px !important;
}

.page-hero.compact-hero h1 {
  color: #ffffff !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  margin: 0 0 10px !important;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-shadow: 0 0 18px rgba(56,189,248,.24) !important;
}

.page-hero.compact-hero p {
  color: #cbd5e1 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin: 0 auto !important;
  max-width: 700px;
}

/* Track page professional blocks */
.track-box,
.track-result,
.track-card,
.track-products,
.track-help,
.track-error {
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 26px !important;
  box-shadow: 0 18px 45px rgba(14,165,233,.12) !important;
  padding: 26px !important;
  margin-bottom: 24px;
}

.track-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
}

.track-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.track-header span {
  color: #64748b;
  font-weight: 800;
}

.track-header h2 {
  color: #0f172a;
  font-weight: 900;
  margin: 4px 0;
}

.track-status {
  display: inline-flex;
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 900;
}

.track-status-new {
  background: #e0f2fe;
  color: #0284c7;
}

.track-status-confirmed {
  background: #fef3c7;
  color: #b45309;
}

.track-status-delivered {
  background: #dcfce7;
  color: #15803d;
}

.track-status-cancelled {
  background: #fee2e2;
  color: #dc2626;
}

.track-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.track-step {
  background: #f0f9ff;
  border: 1px solid rgba(14,165,233,.18);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  opacity: .65;
}

.track-step.active {
  opacity: 1;
  border-color: rgba(14,165,233,.40);
  box-shadow: 0 12px 28px rgba(14,165,233,.12);
}

.track-step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: white;
  font-weight: 900;
}

.track-step strong {
  color: #0f172a;
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.track-card p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(14,165,233,.12);
  padding: 10px 0;
}

.track-card p span {
  color: #64748b;
}

.track-card p strong {
  color: #0f172a;
}

.track-product {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid rgba(14,165,233,.14);
  padding: 14px 0;
}

.track-product img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
  background: #e0f2fe;
}

.track-product strong {
  display: block;
  color: #0f172a;
}

.track-product span {
  color: #64748b;
}

.track-product b {
  color: #0284c7;
}

.track-help {
  text-align: center;
}

@media (max-width: 760px) {
  .track-form,
  .track-grid,
  .track-steps {
    grid-template-columns: 1fr;
  }

  .track-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .track-product {
    grid-template-columns: 60px 1fr;
  }

  .track-product b {
    grid-column: 1 / -1;
  }
}
/* =========================================================
   AM05 TECH - CATALOGUE COMPACT HERO
========================================================= */

.page-hero.compact-hero,
.catalogue-hero {
  position: relative;
  min-height: auto !important;
  padding: 42px 0 34px !important;
  text-align: center !important;
  background:
    radial-gradient(circle at center, rgba(14,165,233,.16), transparent 34%),
    linear-gradient(135deg, #020617 0%, #061126 55%, #0b1b36 100%) !important;
  border-bottom: 2px solid #dbeafe;
  overflow: hidden;
}

.page-hero.compact-hero::before,
.catalogue-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.03) 25%, transparent 25%) -20px 0 / 42px 42px,
    linear-gradient(225deg, rgba(255,255,255,.02) 25%, transparent 25%) -20px 0 / 42px 42px;
  pointer-events: none;
}

.page-hero.compact-hero .container,
.catalogue-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero.compact-hero .small-hero-container,
.catalogue-hero .small-hero-container {
  max-width: 900px;
}

.page-hero.compact-hero .hero-badge,
.catalogue-hero .hero-badge {
  display: inline-flex;
  margin: 0 auto 14px !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  background: #e0f2fe !important;
  color: #0369a1 !important;
  border: 1px solid rgba(56,189,248,.28) !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  box-shadow: 0 8px 24px rgba(56,189,248,.16) !important;
}

.page-hero.compact-hero h1,
.catalogue-hero h1 {
  color: #ffffff !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  margin: 0 0 10px !important;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-shadow: 0 0 18px rgba(56,189,248,.24) !important;
}

.page-hero.compact-hero p,
.catalogue-hero p {
  color: #cbd5e1 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin: 0 auto !important;
  max-width: 700px;
}

@media (max-width: 768px) {
  .page-hero.compact-hero,
  .catalogue-hero {
    padding: 34px 0 28px !important;
  }

  .page-hero.compact-hero h1,
  .catalogue-hero h1 {
    font-size: 30px !important;
  }

  .page-hero.compact-hero p,
  .catalogue-hero p {
    font-size: 13px !important;
  }
}
/* =========================================================
   AM05 TECH - CATALOGUE PAGE FINAL STYLE
========================================================= */

.catalogue-section {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%) !important;
  padding: 48px 0 75px !important;
}

.catalogue-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.catalogue-filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #0369a1 !important;
  background: #e0f2fe;
  border: 1px solid rgba(14,165,233,.24);
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(14,165,233,.08);
  transition: .25s ease;
}

.catalogue-filters a:hover,
.catalogue-filters a.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(14,165,233,.24);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.catalogue-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(14,165,233,.18);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(14,165,233,.12);
  transition: .28s ease;
}

.catalogue-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14,165,233,.42);
  box-shadow: 0 28px 70px rgba(14,165,233,.22);
}

.catalogue-image {
  position: relative;
  height: 305px;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.18), transparent 60%),
    #f0f9ff;
}

.catalogue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalogue-badge,
.catalogue-image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #ffffff;
  border: none;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(14,165,233,.24);
}

html[dir="rtl"] .catalogue-badge,
html[dir="rtl"] .catalogue-image > span {
  left: auto;
  right: 14px;
}

.catalogue-content {
  padding: 18px;
}

.catalogue-content small {
  display: inline-flex;
  width: fit-content;
  color: #0284c7 !important;
  background: #e0f2fe;
  border: 1px solid rgba(14,165,233,.22);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.catalogue-content h3 {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  min-height: 48px;
  margin-bottom: 8px;
}

.catalogue-stars {
  color: #f59e0b;
  margin: 8px 0;
  font-size: 14px;
}

.catalogue-price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}

.catalogue-price strong {
  color: #0284c7;
  font-size: 24px;
  font-weight: 900;
}

.catalogue-price span {
  color: #94a3b8;
  text-decoration: line-through;
}

.catalogue-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.catalogue-actions .btn-primary,
.catalogue-actions .btn-outline {
  min-height: 42px !important;
  padding: 0 14px !important;
  font-size: 13px;
}

.catalogue-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 10px;
  border-radius: 999px;
  font-weight: 900;
  color: #15803d !important;
  background: #dcfce7;
  border: 1px solid rgba(34,197,94,.24);
  transition: .25s ease;
}

.catalogue-whatsapp:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  transform: translateY(-2px);
}

.no-products-card {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 28px !important;
  box-shadow: 0 18px 45px rgba(14,165,233,.12) !important;
  padding: 36px !important;
}

.no-products-card h3 {
  color: #0f172a !important;
  font-weight: 900;
}

.no-products-card p {
  color: #64748b !important;
  margin-bottom: 18px;
}

@media (max-width: 1050px) {
  .catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .catalogue-image {
    height: 230px;
  }

  .catalogue-actions {
    grid-template-columns: 1fr;
  }

  .catalogue-content h3 {
    min-height: auto;
  }
}

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

  .catalogue-image {
    height: 310px;
  }

  .catalogue-filters a {
    width: 100%;
  }
}
/* =========================================================
   AM05 TECH - CATALOGUE PAGE FINAL STYLE
========================================================= */

.catalogue-section {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%) !important;
  padding: 48px 0 75px !important;
}

.catalogue-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.catalogue-filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #0369a1 !important;
  background: #e0f2fe;
  border: 1px solid rgba(14,165,233,.24);
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(14,165,233,.08);
  transition: .25s ease;
}

.catalogue-filters a:hover,
.catalogue-filters a.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(14,165,233,.24);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.catalogue-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(14,165,233,.18);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(14,165,233,.12);
  transition: .28s ease;
}

.catalogue-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14,165,233,.42);
  box-shadow: 0 28px 70px rgba(14,165,233,.22);
}

.catalogue-image {
  position: relative;
  height: 305px;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.18), transparent 60%),
    #f0f9ff;
}

.catalogue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalogue-badge,
.catalogue-image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #ffffff;
  border: none;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(14,165,233,.24);
}

html[dir="rtl"] .catalogue-badge,
html[dir="rtl"] .catalogue-image > span {
  left: auto;
  right: 14px;
}

.catalogue-content {
  padding: 18px;
}

.catalogue-content small {
  display: inline-flex;
  width: fit-content;
  color: #0284c7 !important;
  background: #e0f2fe;
  border: 1px solid rgba(14,165,233,.22);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.catalogue-content h3 {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  min-height: 48px;
  margin-bottom: 8px;
}

.catalogue-stars {
  color: #f59e0b;
  margin: 8px 0;
  font-size: 14px;
}

.catalogue-price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}

.catalogue-price strong {
  color: #0284c7;
  font-size: 24px;
  font-weight: 900;
}

.catalogue-price span {
  color: #94a3b8;
  text-decoration: line-through;
}

.catalogue-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.catalogue-actions .btn-primary,
.catalogue-actions .btn-outline {
  min-height: 42px !important;
  padding: 0 14px !important;
  font-size: 13px;
}

.catalogue-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 10px;
  border-radius: 999px;
  font-weight: 900;
  color: #15803d !important;
  background: #dcfce7;
  border: 1px solid rgba(34,197,94,.24);
  transition: .25s ease;
}

.catalogue-whatsapp:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  transform: translateY(-2px);
}

.no-products-card {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 28px !important;
  box-shadow: 0 18px 45px rgba(14,165,233,.12) !important;
  padding: 36px !important;
}

.no-products-card h3 {
  color: #0f172a !important;
  font-weight: 900;
}

.no-products-card p {
  color: #64748b !important;
  margin-bottom: 18px;
}

@media (max-width: 1050px) {
  .catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .catalogue-image {
    height: 230px;
  }

  .catalogue-actions {
    grid-template-columns: 1fr;
  }

  .catalogue-content h3 {
    min-height: auto;
  }
}

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

  .catalogue-image {
    height: 310px;
  }

  .catalogue-filters a {
    width: 100%;
  }
}
/* Supprimer Boutique partout */
a[href="boutique.php"] {
  display: none !important;
}
/* =========================================================
   AM05 TECH - PRODUCT PAGE SAME STYLE AS CATALOGUE
========================================================= */

.product-details-section,
.product-reviews-section,
.related-products-section {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%) !important;
  padding: 48px 0 75px !important;
}

.product-details-layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  align-items: start !important;
}

.product-details-card,
.product-gallery-box,
.product-info-box {
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 28px !important;
  box-shadow: 0 18px 45px rgba(14,165,233,.12) !important;
  overflow: hidden !important;
}

.product-gallery-card,
.product-info-card,
.product-gallery-box,
.product-info-box {
  padding: 24px !important;
}

.product-details-image,
.main-product-image {
  position: relative !important;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.18), transparent 60%),
    #f0f9ff !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  min-height: 520px !important;
}

.product-details-image img,
.main-product-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 520px !important;
  object-fit: cover !important;
  display: block !important;
}

.product-badge {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  z-index: 3 !important;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  color: #fff !important;
  border: none !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  box-shadow: 0 10px 24px rgba(14,165,233,.24) !important;
}

html[dir="rtl"] .product-badge {
  left: auto !important;
  right: 16px !important;
}

.product-thumbnails {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-top: 14px !important;
}

.product-thumbnails button {
  width: 78px !important;
  height: 78px !important;
  padding: 0 !important;
  border: 2px solid rgba(14,165,233,.18) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: #f0f9ff !important;
  cursor: pointer !important;
}

.product-thumbnails button.active,
.product-thumbnails button:hover {
  border-color: #0ea5e9 !important;
}

.product-thumbnails img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.product-category-pill,
.product-info-box .product-category {
  display: inline-flex !important;
  width: fit-content !important;
  color: #0284c7 !important;
  background: #e0f2fe !important;
  border: 1px solid rgba(14,165,233,.22) !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  margin-bottom: 14px !important;
}

.product-info-card h2,
.product-info-box h2 {
  color: #0f172a !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  margin-bottom: 10px !important;
}

.product-rating,
.big-rating {
  color: #f59e0b !important;
  margin: 8px 0 14px !important;
  font-size: 18px !important;
}

.product-details-price,
.product-detail-price {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin: 14px 0 18px !important;
}

.product-details-price strong,
.product-detail-price strong {
  color: #0284c7 !important;
  font-size: 34px !important;
  font-weight: 900 !important;
}

.product-details-price span,
.product-detail-price span {
  color: #94a3b8 !important;
  text-decoration: line-through !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.product-stock {
  margin-bottom: 18px !important;
}

.stock-ok,
.stock-out {
  display: inline-flex !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  font-size: 14px !important;
}

.stock-ok {
  color: #15803d !important;
  background: #dcfce7 !important;
  border: 1px solid rgba(34,197,94,.24) !important;
}

.stock-out {
  color: #dc2626 !important;
  background: #fee2e2 !important;
  border: 1px solid rgba(239,68,68,.24) !important;
}

.product-description-box,
.product-description {
  background: #f8fbff !important;
  border: 1px solid rgba(14,165,233,.14) !important;
  border-radius: 20px !important;
  padding: 18px !important;
  margin-bottom: 22px !important;
}

.product-description-box h3,
.product-description h3 {
  color: #0f172a !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  margin-bottom: 10px !important;
}

.product-description-box p,
.product-description p {
  color: #64748b !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}

.product-details-actions,
.product-detail-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}

.product-details-actions .btn-primary,
.product-details-actions .btn-outline,
.product-detail-actions .btn-primary,
.product-detail-actions .btn-outline {
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-back-btn {
  width: 100% !important;
  margin-top: 12px !important;
}

.product-trust-box {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
  margin-top: 22px !important;
}

.product-trust-box div {
  background: #f0f9ff !important;
  border: 1px solid rgba(14,165,233,.16) !important;
  border-radius: 18px !important;
  padding: 14px !important;
  text-align: center !important;
}

.product-trust-box strong {
  display: block !important;
  font-size: 24px !important;
  margin-bottom: 6px !important;
}

.product-trust-box span {
  color: #0f172a !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

/* Reviews */
.product-reviews-layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
}

.product-review-panel,
.review-card {
  background: #ffffff !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-radius: 26px !important;
  box-shadow: 0 18px 45px rgba(14,165,233,.12) !important;
}

.review-card {
  padding: 18px !important;
  margin-bottom: 14px !important;
}

.review-card-header {
  display: flex !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.review-card-header strong {
  color: #0f172a !important;
}

.review-card-header span {
  color: #64748b !important;
}

.review-stars {
  color: #f59e0b !important;
  margin: 8px 0 !important;
}

/* Product hero same as catalogue */
.page-hero.compact-hero.catalogue-hero {
  padding: 24px 0 22px !important;
  min-height: auto !important;
  background:
    radial-gradient(circle at center, rgba(14,165,233,.13), transparent 34%),
    linear-gradient(135deg, #020617 0%, #061126 55%, #0b1b36 100%) !important;
  border-bottom: 2px solid #dbeafe !important;
}

.page-hero.compact-hero.catalogue-hero h1 {
  font-size: clamp(30px, 4vw, 52px) !important;
  margin: 0 0 8px !important;
  line-height: 1.05 !important;
}

.page-hero.compact-hero.catalogue-hero p {
  font-size: 14px !important;
  margin: 0 auto !important;
  color: #dbeafe !important;
}

@media (max-width: 980px) {
  .product-details-layout,
  .product-reviews-layout {
    grid-template-columns: 1fr !important;
  }

  .product-details-image,
  .product-details-image img,
  .main-product-image,
  .main-product-image img {
    min-height: 420px !important;
  }
}

@media (max-width: 640px) {
  .product-gallery-card,
  .product-info-card,
  .product-gallery-box,
  .product-info-box {
    padding: 18px !important;
  }

  .product-details-image,
  .product-details-image img,
  .main-product-image,
  .main-product-image img {
    min-height: 320px !important;
  }

  .product-info-card h2,
  .product-info-box h2 {
    font-size: 28px !important;
  }

  .product-details-price strong,
  .product-detail-price strong {
    font-size: 28px !important;
  }

  .product-details-actions,
  .product-detail-actions,
  .product-trust-box {
    grid-template-columns: 1fr !important;
  }
}
/* Hide old floating WhatsApp button */
.am05-floating-whatsapp,
.whatsapp-float {
  display: none !important;
}
.am05-floating-whatsapp,
.whatsapp-float {
  display: none !important;
}
/* =========================================================
   AM05 PROFESSIONAL CHATBOT DESIGN
========================================================= */

.am05-floating-whatsapp,
.whatsapp-float {
  display: none !important;
}

.am05-chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
  font-family: Arial, Helvetica, sans-serif;
}

.am05-chat-toggle {
  width: 78px;
  height: 78px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, #38bdf8, #0ea5e9 55%, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 40px rgba(14,165,233,.35),
    0 0 0 8px rgba(56,189,248,.12);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.am05-chat-toggle:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 24px 48px rgba(14,165,233,.40),
    0 0 0 10px rgba(56,189,248,.14);
}

.am05-chat-toggle img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.9);
  background: #fff;
}

.chat-logo-fallback {
  width: 54px;
  height: 54px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #0284c7;
  font-size: 24px;
  font-weight: 900;
  border: 2px solid rgba(255,255,255,.9);
}

.chat-pulse {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  animation: am05Pulse 2s infinite;
}

@keyframes am05Pulse {
  0%   { transform: scale(.95); opacity: 1; }
  70%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

.am05-chat-panel {
  position: absolute;
  right: 0;
  bottom: 98px;
  width: 390px;
  max-width: calc(100vw - 26px);
  height: 650px;
  max-height: 78vh;
  background: #ffffff;
  border: 1px solid rgba(14,165,233,.16);
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 30px 90px rgba(15,23,42,.20),
    0 10px 35px rgba(14,165,233,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(.96);
  transition: all .28s ease;
  display: flex;
  flex-direction: column;
}

.am05-chat-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.am05-chat-header {
  padding: 18px 18px 16px;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.20), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f3faff 100%);
  border-bottom: 1px solid rgba(14,165,233,.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chat-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chat-brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(14,165,233,.16);
  box-shadow: 0 8px 22px rgba(14,165,233,.12);
}

.chat-brand h3 {
  margin: 0;
  color: #0f172a;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.chat-brand p {
  margin: 6px 0 0;
  color: #0284c7;
  font-size: 13px;
  font-weight: 700;
}

.chat-close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  font-size: 28px;
  cursor: pointer;
  transition: all .2s ease;
  flex-shrink: 0;
}

.chat-close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

.am05-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background:
    linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
  scroll-behavior: smooth;
}

.am05-chat-body::-webkit-scrollbar {
  width: 8px;
}

.am05-chat-body::-webkit-scrollbar-thumb {
  background: rgba(14,165,233,.25);
  border-radius: 999px;
}

.bot-message,
.user-message {
  display: flex;
  margin-bottom: 14px;
  align-items: flex-end;
  gap: 10px;
}

.user-message {
  justify-content: flex-end;
}

.bot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #38bdf8, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(14,165,233,.20);
  flex-shrink: 0;
}

.message-bubble {
  max-width: 82%;
  padding: 14px 16px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}

.message-bubble p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.message-bubble span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  opacity: .75;
}

.message-bubble.bot {
  background: #ffffff;
  border: 1px solid rgba(14,165,233,.14);
  color: #0f172a;
  border-bottom-left-radius: 8px;
}

.message-bubble.user {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
  border-bottom-right-radius: 8px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 16px 48px;
}

.quick-actions button {
  border: 1px solid rgba(14,165,233,.16);
  background: #eef8ff;
  color: #0369a1;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}

.quick-actions button:hover {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #fff;
  transform: translateY(-1px);
}

.am05-chat-footer {
  padding: 14px;
  background: #061126;
  border-top: 1px solid rgba(14,165,233,.14);
  display: grid;
  grid-template-columns: 1fr 62px;
  gap: 12px;
  align-items: center;
}

.am05-chat-footer input {
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,.22);
  background: #08172f;
  color: #ffffff;
  padding: 0 18px;
  outline: none;
  font-size: 15px;
  font-weight: 600;
}

.am05-chat-footer input::placeholder {
  color: rgba(255,255,255,.58);
}

.am05-chat-footer input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56,189,248,.14);
}

.am05-chat-footer button {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(37,99,235,.32);
  transition: transform .2s ease;
}

.am05-chat-footer button:hover {
  transform: scale(1.06);
}

/* Typing */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 18px;
}

.chat-typing span {
  width: 8px;
  height: 8px;
  background: #38bdf8;
  border-radius: 50%;
  display: inline-block;
  animation: typingBounce 1.2s infinite ease-in-out;
  margin-top: 0 !important;
}

.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .30s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(.6); opacity: .45; }
  40% { transform: scale(1); opacity: 1; }
}

/* Product results */
.chat-products-list {
  display: grid;
  gap: 12px;
  margin: 14px 0 10px;
}

.chat-product-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: start;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(14,165,233,.14);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(15,23,42,.05);
}

.chat-product-card img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(14,165,233,.10);
  background: #fff;
}

.chat-product-card strong {
  display: block;
  color: #2563eb;
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 4px;
}

.chat-product-card small {
  display: block;
  color: #64748b;
  font-size: 12px;
  margin-bottom: 6px;
}

.chat-product-card span {
  display: block;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.chat-product-card a,
.chat-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(37,99,235,.20);
}

.chat-product-card a:hover,
.chat-whatsapp-link:hover {
  opacity: .92;
}

@media (max-width: 640px) {
  .am05-chatbot {
    right: 14px;
    bottom: 14px;
  }

  .am05-chat-toggle {
    width: 70px;
    height: 70px;
  }

  .am05-chat-panel {
    width: calc(100vw - 20px);
    right: -4px;
    bottom: 88px;
    height: 78vh;
    max-height: 78vh;
    border-radius: 24px;
  }

  .chat-brand img {
    width: 52px;
    height: 52px;
  }

  .chat-brand h3 {
    font-size: 16px;
  }

  .message-bubble {
    max-width: 88%;
  }

  .quick-actions {
    margin-left: 0;
  }

  .chat-product-card {
    grid-template-columns: 68px 1fr;
  }

  .chat-product-card img {
    width: 68px;
    height: 68px;
  }

  .am05-chat-footer {
    grid-template-columns: 1fr 54px;
    gap: 10px;
  }

  .am05-chat-footer input {
    height: 50px;
  }

  .am05-chat-footer button {
    width: 50px;
    height: 50px;
  }
}
/* Only AM05 logo in chatbot */
.am05-chatbot .chat-logo-fallback {
  display: none !important;
}

.am05-chatbot .am05-chat-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.am05-chatbot .am05-chat-toggle img {
  width: 58px !important;
  height: 58px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}

.am05-chatbot .chat-brand h3 {
  font-size: 20px !important;
  font-weight: 900 !important;
}
/* =========================================================
   AM05 HEADER LOGO FIX
========================================================= */

.header .site-logo-link,
.header .logo {
  width: 110px !important;
  height: 88px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.header .site-logo,
.header .logo img {
  width: 108px !important;
  height: 86px !important;
  object-fit: contain !important;
  display: block !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  filter: contrast(1.14) brightness(1.05) saturate(1.08) !important;
}

.header .nav-container {
  min-height: 92px !important;
  align-items: center !important;
}

/* Supprimer tout fond blanc ancien autour du logo */
.logo,
.logo img,
.site-logo-link,
.site-logo,
.header-logo,
.brand-logo {
  background-color: transparent !important;
}

/* Mobile */
@media (max-width: 768px) {
  .header .site-logo-link,
  .header .logo {
    width: 88px !important;
    height: 72px !important;
  }

  .header .site-logo,
  .header .logo img {
    width: 86px !important;
    height: 70px !important;
  }
}
/* Supprimer le cercle bleu du chatbot */
.am05-chatbot .am05-chat-toggle {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  width: 70px !important;
  height: 70px !important;
}

.am05-chatbot .chat-pulse {
  display: none !important;
}

.am05-chatbot .am05-chat-toggle img,
.am05-chatbot .chat-toggle-logo {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
/* =========================================================
   CONFIRMATION PAGE + LOYALTY CARD
========================================================= */

.confirmation-section {
  padding: 44px 0 75px;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eaf8ff 100%);
}

.confirmation-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  align-items: start;
}

.confirmation-main-card,
.confirmation-summary-card {
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(14,165,233,.14);
}

.confirmation-main-card {
  background:
    radial-gradient(circle at top, rgba(37,99,235,.12), transparent 35%),
    linear-gradient(180deg, #0b1220, #07101d);
  color: #ffffff;
  padding: 30px;
  border: 1px solid rgba(56,189,248,.22);
}

.confirmation-summary-card {
  background: #ffffff;
  border: 1px solid rgba(14,165,233,.18);
  padding: 24px;
}

.success-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.35);
  font-size: 28px;
}

.confirmation-main-card h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}

.confirmation-text {
  color: rgba(255,255,255,.74);
  text-align: center;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 18px;
}

.order-number-box {
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(56,189,248,.26);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  margin-bottom: 18px;
}

.order-number-box span {
  display: block;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.order-number-box strong {
  color: #38bdf8;
  font-size: 20px;
  font-weight: 900;
}

.loyalty-card-box {
  border: 1px solid rgba(245,158,11,.45);
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.13), transparent 35%),
    rgba(255,153,0,.04);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 20px;
}

.loyalty-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.loyalty-label {
  color: #fbbf24;
  font-size: 13px;
  font-weight: 900;
}

.loyalty-top h3 {
  margin-top: 5px;
  color: #ffffff;
  font-size: 23px;
  font-weight: 900;
}

.loyalty-badge {
  min-width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(249,115,22,.32);
}

.loyalty-progress {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,.14);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.loyalty-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.loyalty-message {
  color: #dbeafe;
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.loyalty-note {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.7;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.confirmation-actions a {
  min-width: 170px;
  min-height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  transition: .25s ease;
}

.confirmation-actions a:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff !important;
}

.btn-secondary {
  background: #ffffff;
  color: #2563eb !important;
}

.btn-outline {
  border: 1px solid #93c5fd;
  color: #dbeafe !important;
  background: transparent;
}

.btn-whatsapp {
  background: #dcfce7;
  color: #15803d !important;
}

.confirmation-summary-card h3 {
  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 14px;
}

.confirmation-summary-card h4 {
  color: #0f172a;
  font-size: 17px;
  font-weight: 900;
  margin: 18px 0 10px;
}

.confirmation-summary-card p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.confirmation-summary-card p strong {
  color: #0f172a;
}

.mini-order-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #e5e7eb;
}

.mini-order-item img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.mini-order-item strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
  margin-bottom: 3px;
}

.mini-order-item div div {
  color: #64748b;
  font-size: 13px;
}

.summary-totals {
  margin-top: 16px;
}

.summary-totals > div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #64748b;
}

.summary-totals strong {
  color: #0284c7;
}

.summary-totals .final-total {
  font-size: 20px;
  font-weight: 900;
  border-bottom: none;
}

.summary-totals .final-total span,
.summary-totals .final-total strong {
  color: #0369a1;
}

@media (max-width: 920px) {
  .confirmation-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .confirmation-main-card,
  .confirmation-summary-card {
    padding: 20px;
  }

  .confirmation-actions a {
    width: 100%;
  }
}
/* ================================
   AM05 TECH - Offer Page Design
   Ajouter à la fin de style.css
================================ */

:root {
  --am05-dark: #07111f;
  --am05-blue: #2563eb;
  --am05-sky: #38bdf8;
  --am05-green: #22c55e;
  --am05-red: #ef4444;
  --am05-text: #0f172a;
  --am05-muted: #64748b;
  --am05-border: rgba(37, 99, 235, 0.16);
  --am05-card: rgba(255, 255, 255, 0.92);
  --am05-bg: #f8fbff;
  --am05-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

/* HERO OFFER */
.offer-hero {
  padding: 70px 0 45px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.20), transparent 35%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.18), transparent 35%),
    linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
  overflow: hidden;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
}

/* IMAGE BOX */
.offer-image-box {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #eef7ff);
  border: 1px solid var(--am05-border);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--am05-shadow);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-image-box::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.14), transparent),
    linear-gradient(315deg, rgba(37, 99, 235, 0.12), transparent);
  z-index: 0;
}

.offer-image-box img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 26px;
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.18));
}

.offer-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  background: linear-gradient(135deg, var(--am05-blue), var(--am05-sky));
  color: #fff;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
  font-size: 14px;
}

/* CONTENT */
.offer-content {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.10);
  color: var(--am05-blue);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 16px;
}

.offer-content h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  color: var(--am05-dark);
  margin: 0 0 18px;
  letter-spacing: -1.6px;
}

.offer-description {
  color: var(--am05-muted);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
}

/* PRICE */
.offer-price-box {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.offer-price-box strong {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
  color: var(--am05-blue);
  font-weight: 1000;
  letter-spacing: -1px;
}

.offer-price-box span {
  color: #94a3b8;
  font-size: 22px;
  font-weight: 800;
  text-decoration: line-through;
}

.offer-delivery {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.10);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.22);
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* FEATURES */
.offer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.offer-features div {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--am05-text);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

/* BUTTONS */
.offer-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--am05-sky), var(--am05-blue));
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.34);
}

.btn-outline {
  background: #fff;
  color: var(--am05-blue);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

/* ORDER SECTION */
.section {
  padding: 56px 0;
  background: var(--am05-bg);
}

.offer-order-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.offer-form-box,
.offer-trust-box {
  background: var(--am05-card);
  border: 1px solid var(--am05-border);
  border-radius: 30px;
  box-shadow: var(--am05-shadow);
}

.offer-form-box {
  padding: 34px;
}

.offer-form-box h2 {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--am05-dark);
  margin: 0 0 10px;
  letter-spacing: -0.8px;
}

.offer-form-box > p {
  color: var(--am05-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--am05-dark);
  font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(37, 99, 235, 0.20);
  background: #f8fbff;
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--am05-text);
  font-size: 15px;
  outline: none;
  transition: 0.2s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--am05-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

/* SUMMARY */
.offer-summary-mini {
  margin: 24px 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: #fff;
}

.offer-summary-mini div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.offer-summary-mini div:last-child {
  border-bottom: none;
}

.offer-summary-mini span {
  color: var(--am05-muted);
  font-weight: 700;
}

.offer-summary-mini strong {
  color: var(--am05-dark);
  font-weight: 950;
  text-align: right;
}

.offer-summary-total {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(56, 189, 248, 0.10));
}

.offer-summary-total strong {
  color: var(--am05-blue);
  font-size: 22px;
}

/* TRUST BOX */
.offer-trust-box {
  padding: 28px;
  position: sticky;
  top: 90px;
}

.offer-trust-box h3 {
  color: var(--am05-dark);
  font-size: 24px;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.offer-trust-box div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.offer-trust-box div:last-child {
  border-bottom: none;
}

.offer-trust-box strong {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.10);
  font-size: 22px;
}

.offer-trust-box span {
  color: var(--am05-text);
  font-weight: 800;
  line-height: 1.5;
}

/* ERROR CARD */
.success-card {
  border-radius: 22px;
  padding: 18px;
}

.success-card h3 {
  margin: 0 0 8px;
}

.success-card p {
  margin: 0;
}

/* RTL Arabic improvement */
html[dir="rtl"] .offer-badge {
  left: auto;
  right: 24px;
}

html[dir="rtl"] .offer-summary-mini strong {
  text-align: left;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .offer-layout,
  .offer-order-layout {
    grid-template-columns: 1fr;
  }

  .offer-image-box {
    min-height: auto;
  }

  .offer-trust-box {
    position: static;
  }
}

@media (max-width: 640px) {
  .offer-hero {
    padding: 34px 0 28px;
  }

  .offer-content,
  .offer-form-box,
  .offer-trust-box {
    border-radius: 24px;
    padding: 22px;
  }

  .offer-image-box {
    border-radius: 24px;
    padding: 12px;
  }

  .offer-image-box img {
    border-radius: 18px;
  }

  .offer-features {
    grid-template-columns: 1fr;
  }

  .offer-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .offer-summary-mini div {
    flex-direction: column;
    gap: 6px;
  }

  .offer-price-box strong {
    font-size: 40px;
  }
}
/* ===============================
   AM05 TECH - Professional Landing
================================ */

.premium-landing {
  position: relative;
  padding: 72px 0 55px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .20), transparent 35%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, .22), transparent 35%),
    linear-gradient(135deg, #f8fbff, #edf7ff);
  overflow: hidden;
}

.premium-grid {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(320px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.premium-media {
  display: grid;
  gap: 16px;
}

.premium-main-image {
  position: relative;
  border-radius: 36px;
  padding: 18px;
  background: linear-gradient(145deg, #ffffff, #eef7ff);
  border: 1px solid rgba(37, 99, 235, .16);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .14);
}

.premium-main-image img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  border-radius: 28px;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, .18));
}

.premium-tag {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 3;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(37, 99, 235, .28);
}

.premium-mini-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.premium-mini-images img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, .16);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
}

.premium-content {
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 36px;
  padding: 38px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
  backdrop-filter: blur(14px);
}

.premium-badge {
  display: inline-flex;
  padding: 8px 15px;
  border-radius: 999px;
  color: #2563eb;
  background: rgba(37, 99, 235, .10);
  border: 1px solid rgba(37, 99, 235, .18);
  font-weight: 900;
  margin-bottom: 16px;
}

.premium-content h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  margin: 0 0 16px;
  color: #07111f;
  letter-spacing: -1.6px;
}

.premium-desc {
  color: #64748b;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.premium-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.premium-price strong {
  color: #2563eb;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 1000;
}

.premium-price span {
  color: #94a3b8;
  font-size: 23px;
  font-weight: 900;
  text-decoration: line-through;
}

.premium-delivery {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, .10);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, .22);
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 900;
}

.premium-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.premium-features div {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;
  padding: 13px 14px;
  color: #0f172a;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.premium-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  transition: .25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
  border: none;
  box-shadow: 0 16px 34px rgba(37, 99, 235, .30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(37, 99, 235, .38);
}

.btn-outline {
  background: #fff;
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, .25);
}

.btn-outline:hover {
  background: rgba(37, 99, 235, .08);
  transform: translateY(-2px);
}

/* Order */
.order-section {
  padding: 64px 0;
  background: #f8fbff;
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(280px, .65fr);
  gap: 30px;
  align-items: start;
}

.order-card,
.trust-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(37, 99, 235, .15);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
}

.order-card {
  padding: 34px;
}

.order-card h2 {
  color: #07111f;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 10px;
}

.order-card > p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 24px;
}

.order-error {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(239, 68, 68, .12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, .25);
  font-weight: 800;
  margin-bottom: 20px;
}

.product-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.product-select-card {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 13px;
  border-radius: 24px;
  background: #fff;
  border: 2px solid rgba(37, 99, 235, .16);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .09);
  transition: .25s ease;
}

.product-select-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
}

.product-select-card > input[type="checkbox"] {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 25px;
  height: 25px;
  z-index: 4;
  accent-color: #2563eb;
}

.product-select-card:has(input[type="checkbox"]:checked) {
  border-color: #2563eb;
  background: rgba(37, 99, 235, .08);
  box-shadow: 0 22px 46px rgba(37, 99, 235, .22);
}

.product-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.product-info {
  padding: 13px 4px 8px;
}

.product-info h3 {
  margin: 0 0 5px;
  color: #07111f;
  font-size: 20px;
}

.product-info p {
  margin: 0;
  color: #64748b;
  font-weight: 700;
}

.quantity-control {
  background: #f8fbff;
  border: 1px solid rgba(37, 99, 235, .15);
  border-radius: 16px;
  padding: 12px;
}

.quantity-control span {
  display: block;
  color: #2563eb;
  font-weight: 900;
  margin-bottom: 7px;
}

.quantity-control input {
  width: 100%;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, .25);
  padding: 0 14px;
  font-size: 17px;
  font-weight: 900;
  outline: none;
}

.quantity-control input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .10);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: #07111f;
  font-weight: 900;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(37, 99, 235, .20);
  background: #f8fbff;
  border-radius: 18px;
  padding: 15px 16px;
  color: #0f172a;
  font-size: 15px;
  outline: none;
  transition: .2s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .10);
}

.order-summary {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, .15);
  background: #fff;
  margin: 24px 0;
}

.order-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, .07);
}

.order-summary div:last-child {
  border-bottom: none;
}

.order-summary span {
  color: #64748b;
  font-weight: 800;
}

.order-summary strong {
  color: #07111f;
  font-weight: 950;
}

.order-summary .total {
  background: linear-gradient(135deg, rgba(37, 99, 235, .10), rgba(56, 189, 248, .10));
}

.order-summary .total strong {
  color: #2563eb;
  font-size: 22px;
}

.submit-btn {
  width: 100%;
  border-radius: 18px;
}

.trust-card {
  padding: 28px;
  position: sticky;
  top: 90px;
}

.trust-card h3 {
  margin: 0 0 20px;
  color: #07111f;
  font-size: 25px;
}

.trust-card div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.trust-card div:last-child {
  border-bottom: none;
}

.trust-card strong {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, .10);
  font-size: 22px;
}

.trust-card span {
  color: #0f172a;
  font-weight: 850;
  line-height: 1.5;
}

html[dir="rtl"] .premium-tag {
  left: auto;
  right: 26px;
}

html[dir="rtl"] .product-select-card > input[type="checkbox"] {
  right: auto;
  left: 18px;
}

@media (max-width: 980px) {
  .premium-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .premium-landing {
    padding: 38px 0 30px;
  }

  .premium-content,
  .order-card,
  .trust-card {
    border-radius: 24px;
    padding: 22px;
  }

  .premium-main-image {
    border-radius: 24px;
    padding: 12px;
  }

  .premium-main-image img {
    height: 350px;
    border-radius: 18px;
  }

  .premium-mini-images img {
    height: 130px;
  }

  .premium-features,
  .product-select-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .premium-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .product-image img {
    height: 260px;
  }
}
/* ===============================
   AM05 TECH - Clean Landing Page
================================ */

body {
  background: #f4fbff;
}

.premium-landing {
  padding: 55px 0;
  background: linear-gradient(135deg, #f7fcff, #eaf7ff);
}

.premium-grid {
  max-width: 1180px;
  margin: auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.premium-media {
  background: #ffffff;
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.premium-main-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #eef7ff;
}

.premium-main-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.premium-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  z-index: 2;
}

.premium-mini-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.premium-mini-images img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: #eaf7ff;
}

.premium-content {
  background: white;
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.premium-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 15px;
}

.premium-content h1 {
  font-size: 44px;
  line-height: 1.08;
  margin: 0 0 16px;
  color: #07111f;
}

.premium-desc {
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
}

.premium-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 22px 0;
}

.premium-price strong {
  font-size: 52px;
  color: #2563eb;
  font-weight: 1000;
}

.premium-price span {
  color: #94a3b8;
  font-size: 23px;
  font-weight: 900;
  text-decoration: line-through;
}

.premium-delivery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 900;
  margin-bottom: 20px;
}

.premium-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.premium-features div {
  background: #f8fbff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 800;
}

.premium-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.btn-primary,
.btn-outline {
  min-height: 52px;
  padding: 14px 25px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: white;
  border: none;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.28);
}

.btn-outline {
  background: white;
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.25);
}

/* Order section */

.order-section {
  padding: 60px 0;
  background: #f4fbff;
}

.order-grid {
  max-width: 1180px;
  margin: auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 30px;
}

.order-card,
.trust-card {
  background: white;
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.order-card h2 {
  font-size: 34px;
  margin: 0 0 10px;
  color: #07111f;
}

.order-card > p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.product-select-card {
  position: relative;
  display: block;
  cursor: pointer;
  background: #ffffff;
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: 26px;
  padding: 14px;
  transition: 0.25s ease;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.product-select-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
}

.product-select-card > input[type="checkbox"] {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: 26px;
  z-index: 3;
  accent-color: #2563eb;
}

.product-select-card:has(input[type="checkbox"]:checked) {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.22);
}

.product-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  background: #eaf7ff;
}

.product-info {
  padding: 14px 4px 8px;
}

.product-info h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #07111f;
}

.product-info p {
  margin: 0;
  color: #64748b;
  font-weight: 700;
}

.quantity-control {
  background: #f8fbff;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  padding: 13px;
}

.quantity-control span {
  display: block;
  color: #2563eb;
  font-weight: 900;
  margin-bottom: 8px;
}

.quantity-control input {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 0 14px;
  font-size: 18px;
  font-weight: 900;
  outline: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: #07111f;
  font-weight: 900;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: #f8fbff;
  border-radius: 18px;
  padding: 15px 16px;
  color: #0f172a;
  font-size: 15px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.order-summary {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.15);
  margin: 24px 0;
}

.order-summary div {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.order-summary .total {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(56, 189, 248, 0.1));
}

.order-summary strong {
  color: #07111f;
  font-weight: 950;
}

.order-summary .total strong {
  color: #2563eb;
  font-size: 22px;
}

.submit-btn {
  width: 100%;
  border-radius: 18px;
}

.trust-card {
  position: sticky;
  top: 90px;
}

.trust-card h3 {
  margin: 0 0 20px;
  font-size: 25px;
}

.trust-card div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.trust-card strong {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.trust-card span {
  font-weight: 850;
  color: #0f172a;
}

/* Mobile */

@media (max-width: 980px) {
  .premium-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .premium-landing {
    padding: 30px 0;
  }

  .premium-content,
  .order-card,
  .trust-card,
  .premium-media {
    padding: 22px;
    border-radius: 24px;
  }

  .premium-content h1 {
    font-size: 34px;
  }

  .premium-main-image img {
    height: auto;
    max-height: 460px;
  }

  .premium-price strong {
    font-size: 40px;
  }

  .premium-features,
  .product-select-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .premium-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .product-image img {
    height: 260px;
  }
}
.offer-images-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.offer-image-admin-item {
  background: #f8fbff;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 16px;
  padding: 10px;
}

.offer-image-admin-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.offer-image-admin-item p {
  margin: 8px 0 0;
  font-weight: 900;
}

.instagram-collage {
  background: #ffffff;
  border-radius: 34px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.14);
}

.collage-main {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #eaf7ff;
}

.collage-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.collage-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.collage-two img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 22px;
  background: #eaf7ff;
  border: 1px solid rgba(37, 99, 235, 0.16);
}

@media (max-width: 700px) {
  .collage-main img {
    height: 430px;
  }

  .collage-two {
    grid-template-columns: 1fr;
  }

  .collage-two img {
    height: 280px;
  }

  .offer-images-admin-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   Instagram Style Carousel Offer
================================ */

.instagram-carousel-box {
  background: #ffffff;
  border-radius: 34px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.14);
}

.instagram-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: #eaf7ff;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scale(1.02);
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* badge */
.instagram-carousel .premium-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 6;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

/* arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
  transition: 0.25s ease;
}

.carousel-btn:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-50%) scale(1.06);
}

.carousel-btn.prev {
  left: 14px;
}

.carousel-btn.next {
  right: 14px;
}

/* dots مثل Instagram */
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 8;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-dot.active {
  width: 22px;
  background: #2563eb;
}

/* thumbnails تحت الصورة */
.carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.carousel-thumb {
  border: 2px solid rgba(37, 99, 235, 0.16);
  background: #f8fbff;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  height: 110px;
  transition: 0.25s ease;
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-thumb.active {
  border-color: #2563eb;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .instagram-carousel-box {
    border-radius: 24px;
    padding: 12px;
  }

  .instagram-carousel {
    border-radius: 20px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .carousel-thumb {
    height: 85px;
    border-radius: 14px;
  }
}
/* ===============================
   Instagram Carousel Offer Page
================================ */

.premium-landing {
  padding: 55px 0;
  background: linear-gradient(135deg, #f7fcff, #eaf7ff);
}

.premium-grid {
  max-width: 1180px;
  margin: auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.instagram-carousel-box {
  background: #ffffff;
  border-radius: 34px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.14);
  max-width: 620px;
  margin: auto;
}

.instagram-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: #eaf7ff;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-carousel .premium-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 8;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #0f172a;
  font-size: 32px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
}

.carousel-btn.prev {
  left: 14px;
}

.carousel-btn.next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 9;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}

.carousel-dot.active {
  width: 22px;
  background: #2563eb;
}

.premium-content {
  background: white;
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.premium-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 15px;
}

.premium-content h1 {
  font-size: 44px;
  line-height: 1.08;
  margin: 0 0 16px;
  color: #07111f;
}

.premium-desc {
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
}

.premium-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 22px 0;
}

.premium-price strong {
  font-size: 52px;
  color: #2563eb;
  font-weight: 1000;
}

.premium-price span {
  color: #94a3b8;
  font-size: 23px;
  font-weight: 900;
  text-decoration: line-through;
}

.premium-delivery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 900;
  margin-bottom: 20px;
}

.premium-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.premium-features div {
  background: #f8fbff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 800;
}

.premium-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.order-section {
  padding: 60px 0;
  background: #f4fbff;
}

.order-grid {
  max-width: 1180px;
  margin: auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 30px;
}

.order-card,
.trust-card {
  background: white;
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.product-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.product-select-card {
  position: relative;
  display: block;
  cursor: pointer;
  background: #ffffff;
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: 26px;
  padding: 14px;
  transition: 0.25s ease;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.product-select-card > input[type="checkbox"] {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: 26px;
  z-index: 3;
  accent-color: #2563eb;
}

.product-select-card:has(input[type="checkbox"]:checked) {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
}

.product-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  background: #eaf7ff;
}

.product-info {
  padding: 14px 4px 8px;
}

.product-info h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #07111f;
}

.product-info p {
  margin: 0;
  color: #64748b;
  font-weight: 700;
}

.quantity-control {
  background: #f8fbff;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  padding: 13px;
}

.quantity-control span {
  display: block;
  color: #2563eb;
  font-weight: 900;
  margin-bottom: 8px;
}

.quantity-control input {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 0 14px;
  font-size: 18px;
  font-weight: 900;
  outline: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.order-summary {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.15);
  margin: 24px 0;
}

.order-summary div {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.order-summary .total {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(56, 189, 248, 0.1));
}

.submit-btn {
  width: 100%;
  border-radius: 18px;
}

.trust-card {
  position: sticky;
  top: 90px;
}

.trust-card h3 {
  margin: 0 0 20px;
  font-size: 25px;
}

.trust-card div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.trust-card strong {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

@media (max-width: 980px) {
  .premium-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .premium-grid,
  .order-grid {
    padding: 0 14px;
  }

  .premium-content,
  .order-card,
  .trust-card {
    padding: 22px;
    border-radius: 24px;
  }

  .instagram-carousel-box {
    max-width: 100%;
    padding: 12px;
    border-radius: 24px;
  }

  .instagram-carousel {
    border-radius: 20px;
  }

  .premium-content h1 {
    font-size: 34px;
  }

  .premium-price strong {
    font-size: 40px;
  }

  .premium-features,
  .product-select-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .premium-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .product-image img {
    height: 260px;
  }
}
.offer-images-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  margin: 14px 0;
}

.offer-image-admin-item {
  background: #f8fbff;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 16px;
  padding: 10px;
}

.offer-image-admin-item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.offer-image-admin-item p {
  margin: 8px 0 0;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
}
/* ===============================
   OFFER PAGE - LEFT IMAGES / RIGHT INFOS
================================ */

.premium-landing {
  padding: 55px 0;
  background: linear-gradient(135deg, #f7fcff, #eaf7ff);
}

.premium-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.premium-media {
  width: 100%;
}

.instagram-carousel-box {
  background: #ffffff;
  border-radius: 30px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.instagram-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: #edf7ff;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* badge */
.instagram-carousel .premium-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

/* arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #0f172a;
  font-size: 32px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
}

.carousel-btn.prev {
  left: 14px;
}

.carousel-btn.next {
  right: 14px;
}

/* dots */
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 7px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}

.carousel-dot.active {
  width: 22px;
  background: #2563eb;
}

/* right content */
.premium-content {
  background: #ffffff;
  border-radius: 30px;
  padding: 34px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
}

.premium-badge {
  display: inline-block;
  background: rgba(37, 99, 235, .10);
  color: #2563eb;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 14px;
}

.premium-content h1 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.08;
  color: #0f172a;
}

.premium-desc {
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
}

.premium-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.premium-price strong {
  color: #2563eb;
  font-size: 52px;
  font-weight: 1000;
}

.premium-price span {
  color: #94a3b8;
  font-size: 24px;
  font-weight: 900;
  text-decoration: line-through;
}

.premium-delivery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  padding: 10px 16px;
  border-radius: 18px;
  font-weight: 900;
  margin-bottom: 18px;
}

.premium-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.premium-features div {
  background: #f8fbff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.premium-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

/* responsive */
@media (max-width: 980px) {
  .premium-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .premium-grid {
    padding: 0 14px;
  }

  .instagram-carousel-box,
  .premium-content {
    border-radius: 22px;
    padding: 16px;
  }

  .instagram-carousel {
    border-radius: 18px;
  }

  .premium-content h1 {
    font-size: 28px;
  }

  .premium-price strong {
    font-size: 40px;
  }

  .premium-features {
    grid-template-columns: 1fr;
  }

  .premium-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }
}
/* ===============================
   OFFER FINAL CAROUSEL FIX
================================ */

.premium-landing {
  padding: 55px 0 !important;
  background: linear-gradient(135deg, #f7fcff, #eaf7ff) !important;
}

.premium-grid {
  max-width: 1200px !important;
  margin: auto !important;
  padding: 0 20px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 34px !important;
  align-items: center !important;
}

.premium-media {
  display: block !important;
  width: 100% !important;
}

.instagram-carousel-box {
  width: 100% !important;
  max-width: 560px !important;
  margin: auto !important;
  background: #fff !important;
  border-radius: 30px !important;
  padding: 18px !important;
  border: 1px solid rgba(37, 99, 235, 0.18) !important;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14) !important;
}

.instagram-carousel {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  min-height: 520px !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background: #eaf7ff !important;
}

.carousel-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity .35s ease !important;
}

.carousel-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}

.carousel-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.no-image-box {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  font-weight: 900 !important;
  color: #2563eb !important;
  text-align: center !important;
  padding: 30px !important;
}

.instagram-carousel .premium-tag {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  z-index: 10 !important;
  background: linear-gradient(135deg, #2563eb, #38bdf8) !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25) !important;
}

.carousel-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 11 !important;
  width: 44px !important;
  height: 44px !important;
  border: none !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.95) !important;
  color: #0f172a !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  box-shadow: 0 8px 22px rgba(15,23,42,.20) !important;
}

.carousel-btn.prev {
  left: 14px !important;
}

.carousel-btn.next {
  right: 14px !important;
}

.carousel-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 16px !important;
  transform: translateX(-50%) !important;
  z-index: 11 !important;
  display: flex !important;
  gap: 7px !important;
}

.carousel-dot {
  width: 8px !important;
  height: 8px !important;
  border: none !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.6) !important;
  cursor: pointer !important;
}

.carousel-dot.active {
  width: 22px !important;
  background: #2563eb !important;
}

@media (max-width: 900px) {
  .premium-grid {
    grid-template-columns: 1fr !important;
  }

  .instagram-carousel {
    min-height: 430px !important;
  }
}