/** Shopify CDN: Minification failed

Line 1218:0 Unexpected "{"
Line 1218:1 Expected identifier but found "%"
Line 1219:13 Expected identifier but found whitespace
Line 1221:1 Expected identifier but found "%"

**/
/* ===== مارلين ستور - ثيم شوبيفاي ===== */
/* RTL Arabic Shopify Theme */

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Tajawal', 'Cairo', 'Arial', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--text-dark, #1a1a2e);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===== إزالة الفراغات بين السكشنات ===== */
main > section,
main > div > section,
#MainContent > section,
#MainContent > div > section,
.shopify-section + .shopify-section {
  margin-top: 0 !important;
}
.shopify-section {
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ===== شريط إعلاني ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.announcement-bar p { margin: 0; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== الهيدر ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--border-color);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.header-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .header-nav { display: flex; } }

.header-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
  color: #374151;
}
.header-nav a:hover,
.header-nav a.active {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  transition: all 0.2s;
}
.cart-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.cart-btn svg { width: 18px; height: 18px; }

.cart-count {
  position: absolute;
  top: -8px;
  left: -8px;
  background: #fbbf24;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  color: #4b5563;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
}
.mobile-nav.is-open { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--bg-light);
  color: #374151;
  transition: all 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fef7f9 0%, #fffbf5 50%, #fef7f9 100%);
  min-height: auto;
}

.hero-decorative {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-decorative .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.hero-decorative .circle-1 {
  width: 320px; height: 320px;
  top: -80px; right: -80px;
  background: var(--primary-light);
}
.hero-decorative .circle-2 {
  width: 240px; height: 240px;
  bottom: -40px; left: -40px;
  background: var(--primary-color);
  opacity: 0.1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
}
@media (min-width: 1024px) {
  .hero-inner { flex-direction: row; padding: 2rem 0; }
}

.hero-content {
  flex: 1;
  text-align: center;
}
@media (min-width: 1024px) { .hero-content { text-align: right; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(194, 24, 91, 0.1);
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) { .hero-title { font-size: 3rem; } }

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-description {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) { .hero-description { margin-left: 0; margin-right: 0; } }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-buttons { justify-content: flex-start; } }

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-features { justify-content: flex-start; } }
.hero-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.hero-images {
  flex: 1;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  max-width: 32rem;
  flex-wrap: wrap;
}
.hero-product-card {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  text-align: center;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.hero-product-card:hover { transform: translateY(-4px); }
.hero-product-card a { text-decoration: none; color: inherit; display: block; }
.hero-product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.hero-product-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1f2937;
  padding: 0.5rem 0.5rem 0.15rem;
  margin: 0;
}
.hero-product-price {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-color);
  padding: 0 0.5rem 0.5rem;
  margin: 0;
}
@media (min-width: 640px) {
  .hero-product-card { min-width: 150px; max-width: 200px; }
}
@media (min-width: 1024px) {
  .hero-product-card { min-width: 160px; max-width: 220px; }
}
.hero-images img {
  border-radius: 1rem;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* ===== الأزرار ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  transition: all 0.2s;
  text-align: center;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #5d0a2e);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(194, 24, 91, 0.4);
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.875rem;
  background: transparent;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ===== قسم الأقسام ===== */
.categories-section { padding: 1rem 0 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1f2937;
}
.section-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(5, 1fr); } }

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
  text-align: center;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  transition: all 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.category-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.15);
  transform: translateY(-3px);
}
.category-card__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.category-card:hover .category-card__img img {
  transform: scale(1.06);
}
.category-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: var(--bg-light);
}
.category-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1f2937;
  padding: 0.5rem 0.5rem 0.75rem;
}
.category-card:hover .category-card__name {
  color: var(--primary-color);
}

/* ===== بطاقة المنتج ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

.product-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(194, 24, 91, 0.08);
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.18);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f9fafb;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.08); }

.product-card__badges {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.badge-discount {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}
.badge-bestseller {
  background: #fbbf24;
  color: #78350f;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}
.badge-new {
  background: #22c55e;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}
.badge-soldout {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-soldout span {
  background: #1f2937;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.product-card__info { padding: 0.75rem; }
.product-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  min-height: 2.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__prices {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}
.product-card__compare-price {
  font-size: 0.75rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.product-card__add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.product-card__add-btn svg { width: 15px; height: 15px; }

/* ===== بانر خاص ===== */
.promo-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
}
@media (min-width: 1024px) { .promo-banner { padding: 3rem; } }

.promo-banner .decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0.1;
}
.promo-banner .decorative-circle-1 {
  width: 256px; height: 256px; top: 0; left: 0; transform: translate(-50%, -50%);
}
.promo-banner .decorative-circle-2 {
  width: 192px; height: 192px; bottom: 0; right: 0; transform: translate(25%, 25%);
}

.promo-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .promo-inner { flex-direction: row; } }

.promo-content { flex: 1; text-align: center; }
@media (min-width: 1024px) { .promo-content { text-align: right; } }

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.promo-title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.promo-description {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.promo-prices {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
@media (min-width: 1024px) { .promo-prices { justify-content: flex-start; } }
.promo-prices .current { font-size: 1.875rem; font-weight: 900; }
.promo-prices .original { color: rgba(255,255,255,0.5); text-decoration: line-through; font-size: 1.25rem; }
.promo-prices .save-badge {
  background: #fbbf24;
  color: #78350f;
  font-size: 0.875rem;
  font-weight: 900;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.promo-cta {
  display: inline-block;
  background: #fff;
  color: var(--primary-color);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
}
.promo-cta:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

.promo-image img {
  width: 192px;
  height: 192px;
  border-radius: 1rem;
  border: 4px solid rgba(255,255,255,0.3);
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ===== قسم المميزات ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
}
.feature-card .icon { font-size: 2.5rem; }
.feature-card .title { font-weight: 700; color: #1f2937; font-size: 0.875rem; }
.feature-card .desc { font-size: 0.75rem; color: var(--text-muted); }

/* ===== صفحة المنتج التفصيلية ===== */
.product-page { padding: 1.5rem 0; }

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.product-breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.product-breadcrumb a:hover { color: #1f2937; }

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .product-detail { grid-template-columns: 1fr 1fr; }
}

.product-gallery__main {
  border-radius: 1rem;
  overflow: hidden;
  background: #f9fafb;
  border: 2px solid var(--border-color);
  width: 100%;
}
.product-gallery__main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}
@media (min-width: 1024px) {
  .product-gallery__main { aspect-ratio: 4 / 5; }
  .product-gallery__main img { height: 100%; object-fit: cover; }
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
}
.product-gallery__thumb {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover {
  border-color: var(--primary-color);
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info__badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.product-info__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1f2937;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) { .product-info__title { font-size: 1.875rem; } }

.product-info__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.stars { display: flex; gap: 2px; color: var(--gold-color); }

.product-info__prices {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.product-info__price {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--primary-color);
}
.product-info__compare-price {
  font-size: 1.25rem;
  color: #9ca3af;
  text-decoration: line-through;
}
.product-info__savings {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  background: #dcfce7;
  color: #166534;
}

.product-info__description {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-info__quantity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.product-info__quantity label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}
.quantity-selector button {
  padding: 0.5rem 0.75rem;
  background: none;
  border: none;
  color: #4b5563;
  font-size: 1rem;
  transition: background 0.2s;
}
.quantity-selector button:hover { background: #f3f4f6; }
.quantity-selector input {
  width: 3rem;
  text-align: center;
  border: none;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: inherit;
  padding: 0.5rem 0;
}
.quantity-selector input:focus { outline: none; }

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .product-actions { flex-direction: row; } }
.product-actions .btn-primary,
.product-actions .btn-whatsapp { flex: 1; padding: 1rem; font-size: 1rem; }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border-radius: 0.75rem;
  border: none;
  transition: all 0.2s;
}
.btn-whatsapp:hover { opacity: 0.9; }
.btn-whatsapp svg { width: 20px; height: 20px; }

.product-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.guarantee-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: var(--bg-light);
  text-align: center;
}
.guarantee-card .icon { font-size: 1.25rem; }
.guarantee-card .text { font-size: 0.75rem; font-weight: 500; color: #4b5563; }

/* ===== صفحة السلة ===== */
.cart-page { padding: 2rem 0; min-height: 60vh; }
.cart-page__title { font-size: 1.875rem; font-weight: 900; margin-bottom: 1.5rem; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  gap: 1rem;
  text-align: center;
  color: #9ca3af;
}
.cart-empty svg { width: 64px; height: 64px; stroke-width: 1; }
.cart-empty p { font-size: 1.125rem; font-weight: 500; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 2fr 1fr; } }

.cart-items { display: flex; flex-direction: column; gap: 1rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #f9fafb;
  border: 1px solid var(--border-color);
}
.cart-item__image {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; }
.cart-item__title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; }
.cart-item__price { font-size: 0.875rem; font-weight: 700; color: var(--primary-color); }

.cart-item__quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.cart-item__quantity button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.cart-item__qty-btn {
  background: var(--primary-color);
  color: #fff;
}
.cart-item__remove { background: #fee2e2; color: #ef4444; margin-right: auto; }

.cart-summary {
  background: #f9fafb;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.cart-summary__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.cart-summary__total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 2px solid var(--border-color);
  font-weight: 700;
  font-size: 1.125rem;
}
.cart-summary__total .amount { color: var(--primary-color); }

.free-shipping-notice {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
.free-shipping-notice.qualified {
  background: #dcfce7;
  color: #166534;
}
.free-shipping-notice.remaining {
  background: var(--bg-light);
  color: var(--primary-dark);
}

/* ===== صفحة المجموعة (الأقسام) ===== */
.collection-page { padding: 1.5rem 0; }
.collection-header {
  padding: 2rem 0;
  background: linear-gradient(135deg, #fef7f9 0%, #fffbf5 100%);
  margin-bottom: 1.5rem;
}
.collection-header__title { font-size: 1.875rem; font-weight: 900; color: #1f2937; }
.collection-header__count { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.25rem; }

.collection-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  border: none;
  background: #f3f4f6;
  color: #4b5563;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
}

/* ===== الفوتر ===== */
.site-footer {
  background: linear-gradient(135deg, #1a0f14 0%, #150a10 100%);
  color: #fff;
  margin-top: 0;
}
.footer-main { padding: 1.5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-brand img { height: 80px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: #d1d5db; line-height: 1.7; }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  color: #fff;
}
.footer-social a:hover { transform: scale(1.1); }
.footer-social .wa { background: #25d366; }
.footer-social .ig { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); }
.footer-social a svg { width: 20px; height: 20px; }

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-guarantees {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer-guarantees p { font-size: 0.75rem; color: #d1d5db; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: #9ca3af; }

/* ===== الأزرار العائمة ===== */
.floating-social {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 90;
}
.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.floating-btn:hover { transform: scale(1.1); }
.whatsapp-btn { background: #25d366; }
.instagram-btn { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); }
.floating-btn svg { width: 24px; height: 24px; }

/* ===== قسم ذو خلفية ===== */
.bg-section {
  background: var(--bg-light);
  padding: 1rem 0 0;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f9fafb; }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }












{%- comment -%}
  © Daneez | Senior Shopify Developer 
  Custom Theme Architecture • Advanced UX/UI • High Conversion Engineering
{%- endcomment -%}















.mp-video-section {
  margin-top: 28px;
  margin-bottom: 42px;
  padding: 0 12px;
}

.mp-video-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #f1dbe5;
  border-radius: 20px;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.mp-video-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 14px;
}

.mp-product-video-box.vertical-video {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 22px rgba(0,0,0,0.10);
}

.mp-product-video-box.vertical-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* موبايل */
@media (max-width: 767px) {
  .mp-video-section {
    margin-top: 24px;
    margin-bottom: 36px;
    padding: 0 10px;
  }

  .mp-video-card {
    padding: 14px 14px 18px;
    border-radius: 16px;
  }

  .mp-video-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .mp-product-video-box.vertical-video {
    max-width: 280px;
    border-radius: 14px;
  }
}


