/* ==========================================================================
   Pillar Culture — Exact Converty Template 7 Pixel-Perfect Commerce System
   Dual-Engine Mobile + Desktop Responsive (RTL First, Clean Form, Split Bar)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Converty Official Color Palette */
  --primary-50: #d4d4d4;
  --primary-100: #838383;
  --primary-200: #1a1a1a;
  --primary-300: #101010;
  --secondary-50: #fbfbfc;
  --secondary-100: #f2f3f5;
  --secondary-200: #e5e7eb;
  --secondary-300: #6c6c6e;
  --tertiary-50: #d4d4d4;
  --tertiary-100: #838383;
  --tertiary-200: #1a1a1a;
  --tertiary-300: #101010;

  --primary-black: var(--primary-200);
  --primary-hover: var(--primary-300);
  
  --text-dark: var(--primary-200);
  --text-body: #2d2d2d;
  --color-text-muted: var(--secondary-300);
  --text-muted: var(--color-text-muted);
  --text-light: var(--primary-100);

  --bg-page: #ffffff;
  --bg-input: var(--secondary-100);
  --bg-input-focus: #ffffff;
  --bg-studio: var(--secondary-50);

  --border-subtle: var(--secondary-200);
  --border-active: var(--primary-200);

  --radius-xs: 0px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-pill: 0px;

  --font-family: 'Tajawal', 'Inter', -apple-system, sans-serif;
  --transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  padding-bottom: 0;
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
}

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

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ---------- 1. Top Announcement Header ---------- */
.top-strip {
  background: var(--primary-black);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  text-align: center;
  letter-spacing: 0.2px;
}

/* ---------- 2. Converty Exact Header ---------- */
.converty-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-subtle);
  height: 64px;
  display: flex;
  align-items: center;
}

.converty-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
}

.header-right-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
  flex-shrink: 0;
}

.header-right-logo img,
.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop Search Bar (Hidden on Mobile) */
.desktop-search-wrap {
  display: none;
  position: relative;
  width: 260px;
}

@media (min-width: 900px) {
  .desktop-search-wrap {
    display: flex;
    align-items: center;
  }
}

.drawer-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.search-input-field {
  width: 100%;
  height: 42px;
  padding: 0 1rem 0 2.5rem;
  background: var(--bg-input);
  border: 1px solid transparent;
  border-radius: 0px;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.search-input-field:focus {
  background: #ffffff;
  border-color: var(--border-active);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.search-icon-btn {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 0;
  margin: 0;
  z-index: 2;
}

.search-icon-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* Desktop Nav Links */
.desktop-nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .desktop-nav-links {
    display: flex;
  }
}

.desktop-nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
}

.desktop-nav-link:hover {
  color: #000000;
  text-decoration: underline;
}

/* Mobile Burger Button (Hidden on Desktop) */
.mobile-burger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: 8px;
  border-radius: 6px;
  transition: var(--transition);
}

@media (min-width: 900px) {
  .mobile-burger-btn {
    display: none !important;
  }
}

.mobile-burger-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ---------- Mobile Slide-out Drawer Modal ---------- */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-modal-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 340px;
  background: #ffffff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  overflow-y: auto;
}

.drawer-backdrop.open .drawer-modal-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
}

.drawer-close-btn {
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

/* Search inside Drawer */
.drawer-search-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.drawer-search-wrap .search-input-field {
  height: 46px;
  font-size: 0.95rem;
}

/* Nav links in Drawer */
.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.drawer-nav-item a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  background: #ffffff;
  transition: var(--transition);
}

.drawer-nav-item a:hover,
.drawer-nav-item a:active {
  background: var(--bg-input);
}

.drawer-nav-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  color: var(--text-muted);
}

/* Live Search Suggestions Dropdown */
.search-live-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  max-height: 320px;
  overflow-y: auto;
  z-index: 200;
  margin-top: 6px;
  display: none;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: var(--bg-input);
}

.search-result-item img {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--bg-studio);
}

.search-result-info {
  flex: 1;
  text-align: right;
}

.search-result-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
}

.search-result-price {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-dark);
}

/* ---------- 3. 2-Column Responsive Layout ---------- */
.product-main-view {
  padding: 1.5rem 0 3.5rem;
}

.product-clean-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .product-clean-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
    align-items: start;
  }
}

/* ---------- 4. Gallery Column (Right Column in RTL) ---------- */
.gallery-column {
  width: 100%;
}

.gallery-sticky-wrap {
  position: sticky;
  top: 76px;
}

.gallery-main-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-studio);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Arrows (Converty Style) */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 56px;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
}

.gallery-arrow.prev {
  right: 0;
  border-radius: 0px;
}

.gallery-arrow.next {
  left: 0;
  border-radius: 0px;
}

.gallery-arrow svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Thumbnails Strip */
.gallery-thumbnails-strip {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.85rem;
  overflow-x: auto;
  padding-bottom: 2px;
}

.thumb-square {
  width: 72px;
  height: 72px;
  border-radius: 0px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-studio);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.thumb-square.active {
  border: 2.5px solid var(--primary-black);
}

.thumb-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 5. Quick Checkout Flow (Left Column in RTL) ---------- */
.checkout-column {
  display: flex;
  flex-direction: column;
}

/* Product Title & Pricing Bar */
.product-title-bar {
  margin-bottom: 0.75rem;
  padding-bottom: 0;
}

.product-heading-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.price-val-main {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-dark);
  font-feature-settings: "tnum";
}

.currency-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.price-val-compare {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: line-through;
}

.discount-pill-tag {
  background: #fee2e2;
  color: #dc2626;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 0px;
}

.product-summary-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.4rem;
}

/* Pointure Size Pills on Top */
.size-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

/* ---------- 5.1 Rich Product Showcase Description (Converty Style) ---------- */
.product-showcase-section {
  width: 100%;
}

.mobile-showcase {
  display: block;
  margin: 1.25rem 0 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.desktop-showcase {
  display: none !important;
}

@media (min-width: 900px) {
  .mobile-showcase {
    display: none !important;
  }

  .desktop-showcase {
    display: block !important;
    max-width: 920px;
    margin: 3.5rem auto 0;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-subtle);
  }
}

.product-showcase-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.product-showcase-content h1,
.product-showcase-content h2,
.product-showcase-content h3 {
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.25rem 0 0.65rem;
  line-height: 1.3;
}

.product-showcase-content h1 { font-size: 1.6rem; }
.product-showcase-content h2 { font-size: 1.35rem; }
.product-showcase-content h3 { font-size: 1.15rem; }

.product-showcase-content p {
  margin-bottom: 1rem;
}

.product-showcase-content img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  margin: 1.25rem 0;
  display: block;
}

.product-showcase-content ul,
.product-showcase-content ol {
  margin: 0.75rem 1.25rem 1.25rem;
}

.product-showcase-content li {
  margin-bottom: 0.4rem;
}

.size-pill-btn {
  min-width: 58px;
  height: 44px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 0 0.75rem;
}

.size-pill-btn:hover {
  border-color: var(--text-muted);
}

.size-pill-btn.active {
  background: #e5e7eb;
  color: var(--text-dark);
  border-color: #d1d5db;
  font-weight: 700;
}

/* Title */
.quick-checkout-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

/* Clean Input Fields */
.clean-form-group {
  margin-bottom: 1.1rem;
}

.clean-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.clean-form-group label .req {
  color: #ef4444;
}

.clean-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.clean-input-wrap .input-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-light);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.clean-input-wrap .input-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.clean-input {
  width: 100%;
  height: 48px;
  padding: 0 1rem 0 2.5rem;
  background: var(--bg-input);
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.clean-input:hover {
  background: #ebecef;
}

.clean-input:focus {
  background: #ffffff;
  border-color: var(--border-active);
  outline: none;
}

select.clean-input {
  appearance: none;
  cursor: pointer;
}

.two-col-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 900px) {
  .two-col-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

/* Order Summary Block */
.clean-summary-block {
  margin-top: 1.35rem;
  margin-bottom: 1.35rem;
}

.clean-summary-block h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.summary-data-line {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  font-feature-settings: "tnum";
}

.summary-divider {
  border-top: 1px dashed var(--border-subtle);
  margin: 0.65rem 0;
}

.summary-data-line.total-line {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  padding-top: 0.25rem;
}

/* Action Row (Side-by-Side Quantity + Buy Button) */
.action-buy-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: 1.25rem;
}

.btn-instant-buy {
  flex: 1;
  height: 52px;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-xs);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-instant-buy:hover {
  background: #000000;
}

.btn-instant-buy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Integrated Stepper */
.integrated-stepper {
  width: 130px;
  height: 52px;
  display: flex;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  overflow: hidden;
  background: #ffffff;
}

.stepper-btn {
  width: 40px;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-btn:hover {
  background: var(--bg-input);
}

.stepper-val {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
}

/* ---------- 6. Converty Split Mobile Sticky Bottom Bar ---------- */
.converty-split-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  box-sizing: border-box;
  width: 100%;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}

.converty-split-bottom-bar.hidden-sticky {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 900px) {
  .converty-split-bottom-bar {
    display: none;
  }
}

.split-total-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  flex-shrink: 0;
  min-width: 85px;
}

.split-total-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #737373;
  line-height: 1.1;
  margin-bottom: 2px;
}

.split-total-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  font-family: 'Inter', 'Tajawal', sans-serif;
  font-feature-settings: "tnum";
  line-height: 1.1;
  white-space: nowrap;
}

.btn-split-order-action {
  flex: 1;
  height: 50px;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition);
}

.btn-split-order-action:hover,
.btn-split-order-action:active {
  background: #000000;
}

.btn-split-order-action svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ---------- 7. Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 4.75rem;
  left: 1rem;
  z-index: 95;
  width: 48px;
  height: 48px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

@media (min-width: 900px) {
  .wa-float {
    bottom: 2rem;
    left: 2rem;
    width: 54px;
    height: 54px;
  }
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ---------- 8. Converty Homepage Components (Exact 1:1) ---------- */

/* Top Announcement Strip */
.top-strip {
  background: #111111;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.top-strip-inner {
  display: inline-block;
  letter-spacing: 0.5px;
}

/* Hero Streetwear Banner */
.converty-hero-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-color: #0f172a;
  background-image: url('https://cdn.converty.shop/images/fd5bdea45526de9b628f65db5581f4a39404157d84d5c9aacf31b8a03d9a1116_lg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 3rem 1.5rem;
}

@media (min-width: 900px) {
  .converty-hero-banner {
    min-height: 600px;
    background-image: url('https://cdn.converty.shop/images/6fe6d5ba1bceb882e980dbf6719b43ced2c074367011dca9a71529db663e1cb1_lg.webp');
    padding: 4.5rem 3.5rem;
  }
}

.hero-overlay-content {
  max-width: 620px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-eyebrow-line {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow-line::before,
.hero-eyebrow-line::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.hero-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .hero-main-title {
    font-size: 2.1rem;
  }
}

.hero-sub-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #111111;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: 0px;
  border: 1px solid #111111;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: #222222;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: 0px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Value Props / Trust Badges Strip */
.converty-value-props {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.25rem 0;
}

.value-props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .value-props-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.value-prop-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.value-prop-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-200);
}

.value-prop-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.value-prop-info h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.value-prop-info p {
  font-size: 0.84rem;
  color: var(--color-text-muted);
}

/* Promo Countdown Split Section (Full Width Edge-to-Edge) */
.converty-countdown-promo {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #ffffff;
}

.countdown-promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  background: #f4f5f7;
  overflow: hidden;
  border-radius: 0px;
}

@media (min-width: 900px) {
  .countdown-promo-grid {
    grid-template-columns: 1.15fr 1fr;
    min-height: 460px;
    align-items: stretch;
  }
}

.countdown-info-side {
  position: relative;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.countdown-info-side::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
  pointer-events: none;
}

.countdown-content-inner {
  position: relative;
  z-index: 1;
}

.countdown-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.countdown-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.countdown-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* 4 Countdown Boxes */
.countdown-timer-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.timer-box-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-box-card {
  width: 58px;
  height: 58px;
  background: #ffffff;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  font-feature-settings: "tnum";
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  margin-bottom: 0.35rem;
}

.timer-unit-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.btn-countdown-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 0px;
  transition: var(--transition);
}

.btn-countdown-buy:hover {
  background: #000000;
  transform: translateY(-2px);
}

.countdown-image-side {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: #e5e7eb;
}

.countdown-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Catalog Section (كل المنتجات) */
.catalog-section-wrap {
  padding: 4rem 0 3.5rem;
}

.catalog-header-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
}

.catalog-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.catalog-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.catalog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.converty-product-card {
  background: #f4f5f7;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.converty-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #111111;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 0px;
  z-index: 2;
}

.card-image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f4f5f7;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.converty-product-card:hover .card-image-box img {
  transform: scale(1.06);
}

.card-details-box {
  padding: 1rem 1.25rem 1.25rem;
  text-align: center;
}

.card-product-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  font-feature-settings: "tnum";
}

.card-price-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.card-price-compare {
  font-size: 0.88rem;
  color: var(--primary-100);
  text-decoration: line-through;
}

/* 2-Column Split FAQ Accordion (Matching Screenshot 4) */
.converty-faq-section {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

.faq-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .faq-split-layout {
    grid-template-columns: 1fr 1.35fr;
    gap: 4.5rem;
    align-items: start;
  }
}

.faq-info-column h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.faq-info-column p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
}

.faq-accordion-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}

.faq-accordion-item:first-child {
  padding-top: 0;
}

.faq-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-circle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--secondary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-circle-btn {
  background: #111111;
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-circle-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.faq-item-body {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  display: none;
}

.faq-accordion-item.active .faq-item-body {
  display: block;
}

/* ---------- 9. Converty Exact Footer ---------- */
.site-footer {
  background: var(--primary-200); /* #1a1a1a Converty Charcoal */
  color: #ffffff;
  padding: 2.5rem 0 1.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top .header-right-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1); /* Invert logo to pure crisp white */
  object-fit: contain;
}

.social-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--primary-100); /* #838383 Converty Muted */
  font-feature-settings: "tnum";
}

/* ==========================================================================
   Converty Bundle Selector Cards (Exact 1:1 Match to Screenshot)
   ========================================================================== */
.bundle-selector-container {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.bundle-option-card {
  background: #e5e7eb;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 0.75rem 1.4rem;
  display: flex;
  direction: ltr !important;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  min-height: 68px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.bundle-option-card:hover {
  background: #d1d5db;
}

.bundle-option-card.selected {
  background: #88a396 !important;
  border: 2.2px solid #1c3426 !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.bundle-left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
}

.bundle-label-text {
  font-weight: 900;
  font-size: 1.05rem;
  color: #000000;
  line-height: 1.2;
}

.bundle-badge {
  font-size: 0.76rem;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 6px;
  color: #ffffff;
  letter-spacing: 0.2px;
  line-height: 1;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.bundle-badge.green {
  background: linear-gradient(135deg, #10b981, #22c55e);
}
.bundle-badge.red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.bundle-badge.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.bundle-right-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.15rem;
}

.bundle-compare-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #5c6b73;
  text-decoration: line-through;
  line-height: 1.1;
}

.bundle-sale-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: #000000;
  line-height: 1.2;
}


