/** Shopify CDN: Minification failed

Line 495:0 Expected "}" to go with "{"

**/
/* ═══════════════════════════════════════
   OMAR AL-KHATTAB — Shopify Theme CSS
   ═══════════════════════════════════════ */

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

:root {
  --black:    #0d0d0d;
  --dark:     #1a1a1a;
  --sand:     #c9a96e;
  --sand-lt:  #e8d5b0;
  --white:    #ffffff;
  --gray:     #888888;
  --olive:    #3d4022;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  direction: rtl;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sand); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  border: 1.5px solid var(--sand);
  color: var(--sand);
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--sand); color: var(--black); }

.btn-dark {
  display: inline-block;
  padding: 14px 36px;
  background: var(--sand);
  border: 1.5px solid var(--sand);
  color: var(--black);
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.btn-dark:hover { background: transparent; color: var(--sand); }

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-family: 'Amiri', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}
.section-link {
  color: var(--sand);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.section-link:hover { gap: 14px; }

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--dark);
  cursor: pointer;
  transition: transform .25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  display: block;
}
.product-card {
  border: 1px solid rgba(201,169,110,.15);
  transition: all .35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(201,169,110,.25);
  border-color: rgba(201,169,110,.45);
}

.product-card:hover .product-img {
  opacity: 1;
}

.product-img {
  aspect-ratio: 1/1.1;
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.product-img img {
  transition: all .4s ease;
}

.product-card {
    overflow: visible !important;
}

.product-img {
    overflow: visible !important;
}

.product-card:hover {
    box-shadow: 0 0 35px rgba(201,169,110,.35);
}

.product-card:hover .product-img img {
    transform: scale(1.03);
}
.product-info { padding: 16px; }
.product-name { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.product-price { font-size: 13px; color: var(--sand); font-weight: 600; }

.product-add {
  position: absolute;
  bottom: 70px;
  left: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  cursor: pointer;
  color: var(--black);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
  text-decoration: none;
}
.product-card:hover .product-add { opacity: 1; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid rgba(201,169,110,.15);
  border-bottom: 1px solid rgba(201,169,110,.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(201,169,110,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 22px; }
.trust-title { font-size: 14px; font-weight: 700; }
.trust-sub { font-size: 12px; color: var(--gray); }

/* ── CART NOTIFICATION ── */
.cart-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--sand);
  color: var(--black);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 2px;
  z-index: 9999;
  transition: transform .3s ease;
  pointer-events: none;
}
.cart-notification.show { transform: translateX(-50%) translateY(0); }

/* ── COLLECTION PAGE ── */
.collection-page { padding: 120px 48px 80px; }
.collection-page .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── PRODUCT PAGE ── */
.product-page {
  padding: 120px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-page__gallery img {
  width: 100%;
  border-radius: 2px;
}
.product-page__info {}
.product-page__title {
  font-family: 'Amiri', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
.product-page__price {
  font-size: 20px;
  color: var(--sand);
  font-weight: 700;
  margin-bottom: 24px;
}
.product-page__desc {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 2;
  margin-bottom: 32px;
}
.variant-selector {
  margin-bottom: 28px;
}
.variant-selector label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
  color: var(--sand-lt);
}
.variant-selector select {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark);
  border: 1px solid rgba(201,169,110,.3);
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  cursor: pointer;
}
.add-to-cart-btn {
  width: 100%;
  padding: 16px;
  background: var(--sand);
  border: none;
  color: var(--black);
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: opacity .2s;
}
.add-to-cart-btn:hover { opacity: .85; }

/* ── CART PAGE ── */
.cart-page { padding: 120px 48px 80px; max-width: 800px; margin: 0 auto; }
.cart-page h1 {
  font-family: 'Amiri', serif;
  font-size: 40px;
  margin-bottom: 40px;
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cart-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cart-item__title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.cart-item__price { color: var(--sand); font-size: 14px; }
.cart-item__remove { color: var(--gray); font-size: 12px; cursor: pointer; background: none; border: none; margin-top: 8px; display: block; }
.cart-total { text-align: left; padding-top: 32px; }
.cart-total__amount { font-size: 24px; font-weight: 700; color: var(--sand); margin-bottom: 20px; }

/* ── PAGE / BLOG ── */
.page-content { padding: 120px 48px 80px; max-width: 800px; margin: 0 auto; }
.page-content h1 {
  font-family: 'Amiri', serif;
  font-size: 48px;
  margin-bottom: 32px;
}
.page-content p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 2; margin-bottom: 20px; }

/* ── 404 ── */
.not-found { text-align: center; padding: 160px 20px; }
.not-found h1 { font-family: 'Amiri', serif; font-size: 80px; color: var(--sand); }
.not-found p { font-size: 18px; color: var(--gray); margin: 16px 0 32px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .collection-page .products-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-page { padding: 100px 20px 60px; }
  .product-page { grid-template-columns: 1fr; padding: 20px 20px 60px; gap: 40px; }
  .cart-page { padding: 100px 20px 60px; }
  .page-content { padding: 100px 20px 60px; }
}
.product__title,
.product-title,
h1.product__title {
    font-size: 32px !important;
    line-height: 1.2 !important;
}
/* ══════════════════════════════════════
   VARIANT BUTTONS — Visual Selectors
   ══════════════════════════════════════ */

.variant-group {
  margin-bottom: 20px;
}

.variant-group__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--sand-lt);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.variant-selected-label {
  color: var(--sand);
  font-weight: 400;
  letter-spacing: 1px;
}

.variant-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* ── SIZE BUTTONS ── */
.size-btn {
  min-width: 52px;
  height: 48px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--sand-lt, #d4b896);
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.size-btn:hover {
  border-color: var(--sand, #C9A96E);
  color: var(--sand, #C9A96E);
  background: rgba(201,169,110,0.06);
}

.size-btn.active {
  background: var(--sand, #C9A96E);
  border-color: var(--sand, #C9A96E);
  color: #0a0a0a;
}

.size-btn.sold-out {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ── COLOR BUTTONS ── */
.color-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  padding: 3px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-btn:hover {
  border-color: var(--sand, #C9A96E);
  transform: scale(1.08);
}

.color-btn.active {
  border-color: var(--sand, #C9A96E);
}

.color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Common Shopify color mappings */
.color-black          { background: #0e0e0e; }
.color-white          { background: #ffffff; border-color: rgba(0,0,0,0.25) !important; }
.color-navy-blazer,
.color-navy           { background: #1b2229; }
.color-vintage-black  { background: #363533; }
.color-charcoal       { background: #3d3d3d; }
.color-gray,
.color-grey           { background: #888; }
.color-dark-grey,
.color-dark-gray      { background: #363533; }
.color-sand           { background: #c9a96e; }
.color-beige          { background: #d4b896; }
.color-brown          { background: #6b4c2a; }
.color-red            { background: #c0392b; }
.color-burgundy       { background: #6d1e3a; }
.color-green          { background: #2d6a4f; }
.color-olive          { background: #6b6b35; }
.color-blue           { background: #2c5f8a; }
.color-cream          { background: #f0e8d8; }
.product-thumbs-grid{
.product-thumbs-grid{
    display:flex;
    gap:12px;
    overflow-x:auto;
    margin-top:20px;
}

.product-thumb{
    width:85px !important;
    height:85px !important;
    object-fit:cover;
    flex-shrink:0;
    cursor:pointer;
}

.product-main-img{
    width:100%;
}
.product-thumbs-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:3px;
}

.product-thumb{
    height:50px !important;
}
