/* ═══════════════════════════════════════
   Casual Look — style.css
   ═══════════════════════════════════════ */
:root {
  --blue: #284980;
  --blue-light: #3a5fa0;
  --blue-dark: #1a3260;
  --blue-glow: rgba(40,73,128,0.25);
  --white: #ffffff;
  --off-white: #f4f6fa;
  --gray: #e8ecf3;
  --text-dark: #111827;
  --text-muted: #6b7280;
}
* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }
body { font-family: 'Cairo', sans-serif; background: var(--off-white); color: var(--text-dark); min-height: 100vh; direction: rtl; }

/* ── HEADER ── */
header { background: var(--blue); padding: 0 28px; height: 64px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 24px rgba(0,0,0,0.22); }
header .logo { font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: 1px; }
header .logo span { color: #a8c4ff; }
header .tagline { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 400; }

/* ── HERO ── */
.hero { background: var(--blue-dark); color: var(--white); padding: 0; position: relative; overflow: hidden; min-height: 300px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 110% 50%, rgba(58,95,160,0.7) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at -10% 100%, rgba(26,50,96,0.9) 0%, transparent 55%), linear-gradient(135deg, #0d1f45 0%, #1a3260 40%, #284980 100%); z-index: 0; }
.hero-dots { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-dot { position: absolute; border-radius: 50%; background: rgba(168,196,255,0.12); animation: floatDot linear infinite; }
@keyframes floatDot { 0%{transform:translateY(0) scale(1);opacity:0.12;} 50%{opacity:0.3;} 100%{transform:translateY(-110vh) scale(0.4);opacity:0;} }
.hero-content { position: relative; z-index: 2; padding: 52px 32px 48px; max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 40px; }
.hero-text { flex: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(168,196,255,0.14); border: 1px solid rgba(168,196,255,0.28); padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; color: #a8c4ff; margin-bottom: 14px; backdrop-filter: blur(4px); }
.hero h1 { font-size: clamp(28px, 5vw, 54px); font-weight: 900; line-height: 1.18; margin-bottom: 12px; }
.hero h1 .line1 { display: block; color: #fff; }
.hero h1 .line2 { display: block; color: #a8c4ff; }
.hero-desc { font-size: clamp(13px, 1.8vw, 15px); color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 460px; margin-bottom: 22px; }
.hero-stats { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat strong { font-size: 22px; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat span { font-size: 11px; color: rgba(255,255,255,0.48); font-weight: 600; }
.hero-badges { display: flex; flex-direction: column; gap: 9px; flex-shrink: 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); padding: 10px 18px; border-radius: 14px; font-size: 13px; color: rgba(255,255,255,0.82); font-weight: 700; backdrop-filter: blur(8px); white-space: nowrap; transition: background 0.2s; }
.hero-badge:hover { background: rgba(255,255,255,0.12); }
.hero-badge .badge-icon { font-size: 18px; }
@media(max-width:700px) { .hero-content{flex-direction:column;padding:36px 18px 32px;gap:20px;} .hero-badges{flex-direction:row;flex-wrap:wrap;} .hero-stat strong{font-size:18px;} }

/* ── FILTER BAR ── */
.filter-bar-wrap { background: #fff; border-bottom: 1px solid var(--gray); box-shadow: 0 2px 14px rgba(40,73,128,0.07); position: sticky; top: 64px; z-index: 90; }
.filter-bar { max-width: 1200px; margin: 0 auto; padding: 11px 24px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-search { flex: 1; min-width: 150px; max-width: 230px; position: relative; }
.filter-search input { width: 100%; padding: 8px 12px 8px 36px; border: 1.5px solid var(--gray); border-radius: 10px; font-family: 'Cairo', sans-serif; font-size: 13px; color: var(--text-dark); background: var(--off-white); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.filter-search input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.filter-search .search-icon { position: absolute; top: 50%; left: 10px; transform: translateY(-50%); color: var(--text-muted); font-size: 14px; pointer-events: none; }
.filter-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.cat-chip { padding: 6px 13px; border-radius: 999px; border: 1.5px solid var(--gray); background: var(--off-white); font-family: 'Cairo', sans-serif; font-size: 12px; font-weight: 700; cursor: pointer; transition: all 0.18s; color: var(--text-muted); white-space: nowrap; user-select: none; }
.cat-chip:hover { border-color: var(--blue); color: var(--blue); }
.cat-chip.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.filter-selects { display: flex; gap: 8px; flex-wrap: wrap; margin-right: auto; }
.filter-select { padding: 7px 28px 7px 12px; border: 1.5px solid var(--gray); border-radius: 10px; font-family: 'Cairo', sans-serif; font-size: 12px; font-weight: 700; color: var(--text-dark); background: var(--off-white); outline: none; cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23284980' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 10px center; transition: border-color 0.2s, box-shadow 0.2s; }
.filter-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.filter-reset { padding: 7px 13px; border-radius: 10px; border: 1.5px solid #ef4444; background: #fff5f5; color: #ef4444; font-family: 'Cairo', sans-serif; font-size: 12px; font-weight: 700; cursor: pointer; transition: all 0.2s; white-space: nowrap; display: none; }
.filter-reset:hover { background: #ef4444; color: #fff; }
.filter-reset.visible { display: inline-flex; align-items: center; gap: 5px; }

/* ── SECTION HEADER ── */
.section-header { display: flex; align-items: center; gap: 12px; padding: 22px 24px 14px; max-width: 1200px; margin: 0 auto; }
.section-header h2 { font-size: clamp(18px, 3.5vw, 26px); font-weight: 900; color: var(--blue); }
.section-header .line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--blue), transparent); border-radius: 2px; }
.section-header .count { background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }

/* ── PRODUCTS GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; padding: 0 24px 60px; max-width: 1200px; margin: 0 auto; }

/* ── PRODUCT CARD ── */
.product-card { background: var(--white); border-radius: 20px; overflow: hidden; cursor: pointer; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease; box-shadow: 0 3px 14px rgba(40,73,128,0.09); border: 1px solid rgba(40,73,128,0.06); display: flex; flex-direction: column; position: relative; }
.product-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 18px 46px rgba(40,73,128,0.2); }
.product-card:active { transform: scale(0.98); transition: transform 0.1s; }
.product-card.hidden { display: none; }

/* ── CARD IMAGE with skeleton loader ── */
.card-img { width: 100%; aspect-ratio: 4/3; background: linear-gradient(145deg, #eef1f7, #dce3f0); display: flex; align-items: center; justify-content: center; font-size: 64px; color: #c5d3e8; position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); opacity: 0; transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.card-img img.loaded { opacity: 1; }
.product-card:hover .card-img img { transform: scale(1.09); }

/* Skeleton shimmer */
.img-skeleton { position: absolute; inset: 0; background: linear-gradient(90deg, #e8ecf3 25%, #f4f6fa 50%, #e8ecf3 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.img-skeleton.hidden { display: none; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.card-badge { position: absolute; top: 11px; right: 11px; background: var(--blue); color: #fff; font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 999px; box-shadow: 0 2px 8px rgba(40,73,128,0.4); z-index: 2; }
.card-cat-tag { position: absolute; bottom: 11px; left: 11px; background: rgba(255,255,255,0.93); color: var(--blue); font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 999px; backdrop-filter: blur(4px); box-shadow: 0 1px 6px rgba(0,0,0,0.1); z-index: 2; }
.card-zoom-hint { position: absolute; inset: 0; background: rgba(40,73,128,0.0); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.25s; font-size: 28px; }
.product-card:hover .card-zoom-hint { opacity: 1; background: rgba(40,73,128,0.1); }

.card-body { padding: 15px 17px 17px; flex: 1; display: flex; flex-direction: column; }
.card-name { font-size: 15px; font-weight: 900; color: var(--text-dark); margin-bottom: 3px; line-height: 1.3; }
.card-subtitle { font-size: 11px; color: var(--text-muted); margin-bottom: 13px; font-weight: 600; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 8px; }
.card-price-wrap { display: flex; flex-direction: column; gap: 1px; }
.card-price { font-size: 20px; font-weight: 900; color: var(--blue); line-height: 1; }
.card-price span { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.card-old-price { font-size: 11px; color: #c0c0c0; text-decoration: line-through; font-weight: 600; }
.card-btn { background: var(--blue); color: #fff; border: none; padding: 9px 16px; border-radius: 10px; font-family: 'Cairo', sans-serif; font-weight: 800; font-size: 12px; cursor: pointer; transition: background 0.2s, transform 0.15s; white-space: nowrap; flex-shrink: 0; }
.card-btn:hover { background: var(--blue-dark); transform: scale(1.04); }

.no-results { text-align: center; padding: 60px 20px; color: var(--text-muted); font-size: 15px; font-weight: 700; display: none; grid-column: 1/-1; }
.no-results .no-icon { font-size: 46px; display: block; margin-bottom: 10px; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,20,45,0.75); backdrop-filter: blur(6px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal { background: var(--white); border-radius: 22px; width: 100%; max-width: 580px; max-height: 93vh; overflow-y: auto; transform: translateY(30px) scale(0.97); transition: transform 0.3s ease; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal::-webkit-scrollbar { width: 5px; }
.modal::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

.modal-header { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; padding: 20px 24px 16px; border-radius: 22px 22px 0 0; position: relative; }
.modal-close { position: absolute; top: 14px; left: 14px; width: 32px; height: 32px; background: rgba(255,255,255,0.15); border: none; border-radius: 50%; color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; line-height: 1; }
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-product-name { font-size: 20px; font-weight: 900; margin-bottom: 4px; }
.modal-product-sub { font-size: 13px; color: rgba(255,255,255,0.7); }
.modal-price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 10px; }
.modal-price { font-size: 26px; font-weight: 900; color: #a8c4ff; }
.modal-price-old { font-size: 14px; color: rgba(255,255,255,0.42); text-decoration: line-through; }

/* ── GALLERY ── */
.gallery-container { position: relative; background: #1a1a2e; overflow: hidden; height: 270px; cursor: zoom-in; }
.gallery-track { display: flex; height: 100%; transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.gallery-slide { min-width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 80px; color: #555; flex-shrink: 0; position: relative; overflow: hidden; }
.gallery-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: #f8f9fa; opacity: 0; transition: opacity 0.35s ease; }
.gallery-slide img.loaded { opacity: 1; }
/* Skeleton inside gallery */
.gallery-slide .img-skeleton { background: linear-gradient(90deg,#23273a 25%,#2e3450 50%,#23273a 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: 0; }

.gallery-slide video { width: 100%; height: 100%; object-fit: contain; background: #000; cursor: default; }
.gallery-slide.is-video { cursor: default; }
.gallery-slide.is-video .video-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); transition: background 0.2s; pointer-events: none; z-index: 3; }
.gallery-slide.is-video.playing .video-play-overlay { opacity: 0; }
.video-play-btn { width: 62px; height: 62px; background: rgba(40,73,128,0.88); border: 3px solid rgba(255,255,255,0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; cursor: pointer; transition: transform 0.2s, background 0.2s; position: relative; z-index: 4; pointer-events: all; }
.video-play-btn:hover { background: var(--blue); transform: scale(1.1); }
.gallery-thumb.is-video, .lightbox-thumb.is-video { background: #1a1a2e; display: flex; align-items: center; justify-content: center; position: relative; }
.gallery-thumb.is-video::after, .lightbox-thumb.is-video::after { content: '▶'; font-size: 18px; color: #fff; position: absolute; text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
.gallery-thumb.is-video img, .lightbox-thumb.is-video img { opacity: 0.3; }

.gallery-zoom-hint-modal { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.52); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(4px); font-family: 'Cairo', sans-serif; pointer-events: none; z-index: 5; }
.gallery-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(40,73,128,0.85); border: none; color: #fff; width: 38px; height: 38px; border-radius: 50%; font-size: 18px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.3); backdrop-filter: blur(4px); }
.gallery-btn:hover { background: var(--blue); transform: translateY(-50%) scale(1.1); }
.gallery-btn.prev { right: 10px; }
.gallery-btn.next { left: 10px; }
.gallery-btn.hidden { display: none; }
.gallery-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s, transform 0.2s; border: none; }
.gallery-dot.active { background: #fff; transform: scale(1.25); }
.gallery-counter { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.55); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; font-family: 'Cairo', sans-serif; backdrop-filter: blur(4px); }
.gallery-thumbs { display: flex; gap: 6px; padding: 10px 14px; background: #f0f2f7; overflow-x: auto; scrollbar-width: thin; }
.gallery-thumbs::-webkit-scrollbar { height: 3px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
.gallery-thumb { min-width: 54px; height: 54px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s, transform 0.2s; background: #fff; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--blue); transform: scale(1.05); }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 92vw; max-height: 80vh; object-fit: contain; border-radius: 8px; display: block; transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.lightbox-video { max-width: 92vw; max-height: 80vh; border-radius: 8px; display: none; background: #000; }
.lightbox-video.active-media { display: block; }
.lightbox-img.active-media { display: block; }
.lightbox-img:not(.active-media) { display: none; }
.lightbox-close { position: fixed; top: 14px; left: 14px; width: 44px; height: 44px; background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.25); border-radius: 50%; color: #fff; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 9010; }
.lightbox-close:hover { background: rgba(255,255,255,0.28); }
.lightbox-btn { position: fixed; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(40,73,128,0.85); border: 2px solid rgba(255,255,255,0.2); border-radius: 50%; color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; z-index: 9010; }
.lightbox-btn:hover { background: var(--blue); transform: translateY(-50%) scale(1.08); }
.lightbox-btn.lb-prev { right: 14px; }
.lightbox-btn.lb-next { left: 14px; }
.lightbox-btn.hidden { display: none; }
.lightbox-counter { position: fixed; top: 18px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.6); color: #fff; font-size: 13px; font-weight: 700; padding: 5px 16px; border-radius: 999px; font-family: 'Cairo', sans-serif; z-index: 9010; }
.lightbox-thumbs { position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 9010; max-width: 90vw; overflow-x: auto; scrollbar-width: none; padding: 4px; }
.lightbox-thumbs::-webkit-scrollbar { display: none; }
.lightbox-thumb { width: 50px; height: 50px; border-radius: 7px; overflow: hidden; cursor: pointer; border: 2px solid rgba(255,255,255,0.2); flex-shrink: 0; transition: border-color 0.2s, transform 0.2s; background: #333; }
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-thumb.active { border-color: #fff; transform: scale(1.12); }

/* ── DESC TABS ── */
.desc-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--gray); padding: 0 16px; overflow-x: auto; background: #fff; scrollbar-width: none; }
.desc-tabs::-webkit-scrollbar { display: none; }
.desc-tab { padding: 10px 16px; font-family: 'Cairo', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-muted); background: none; border: none; border-bottom: 3px solid transparent; cursor: pointer; white-space: nowrap; transition: color 0.2s, border-color 0.2s; margin-bottom: -2px; }
.desc-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.desc-tab:hover { color: var(--blue); }
.desc-panels { padding: 14px 20px; border-bottom: 1px solid var(--gray); }
.desc-panel { display: none; }
.desc-panel.active { display: block; }
.desc-panel p { font-size: 14px; color: var(--text-muted); line-height: 1.8; white-space: pre-line; }

/* ── COLORS & SIZES ── */
.modal-colors { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.modal-color-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #ddd; cursor: pointer; transition: transform 0.2s, border-color 0.2s; }
.modal-color-dot:hover, .modal-color-dot.active { border-color: var(--blue); transform: scale(1.18); }
.size-label { font-size: 12px; font-weight: 700; color: var(--blue); margin-bottom: 6px; display: block; }
.size-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.size-chip { padding: 6px 14px; border-radius: 8px; border: 1.5px solid var(--gray); background: var(--off-white); font-family: 'Cairo', sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.18s; color: var(--text-dark); user-select: none; }
.size-chip:hover { border-color: var(--blue); color: var(--blue); }
.size-chip.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── ORDER FORM ── */
.modal-form { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.modal-form h4 { font-size: 15px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--blue); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 9px 12px; border: 1.5px solid var(--gray); border-radius: 8px; font-family: 'Cairo', sans-serif; font-size: 13px; color: var(--text-dark); background: var(--off-white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.form-group textarea { resize: vertical; min-height: 70px; }
.btn-order { background: var(--blue); color: #fff; border: none; padding: 14px; border-radius: 10px; font-family: 'Cairo', sans-serif; font-size: 16px; font-weight: 900; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-order:hover { background: var(--blue-dark); }
.btn-order:active { transform: scale(0.98); }

/* ── FOOTER ── */
footer { background: var(--blue-dark); color: rgba(255,255,255,0.72); text-align: center; padding: 24px; font-size: 13px; }
footer strong { color: #fff; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 30px; right: 50%; transform: translateX(50%) translateY(20px); background: var(--blue); color: #fff; padding: 12px 24px; border-radius: 999px; font-size: 14px; font-weight: 700; z-index: 9999; opacity: 0; transition: opacity 0.3s, transform 0.3s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(50%) translateY(0); }

/* ── SWIPE HINT ── */
.swipe-hint { text-align: center; font-size: 11px; color: var(--text-muted); padding: 4px 0 0; display: none; }

/* ── RESPONSIVE ── */
@media(max-width:600px) {
  .swipe-hint { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; padding: 0 12px 50px; }
  .gallery-container { height: 220px; }
  .lightbox-btn { width: 40px; height: 48px; font-size: 20px; }
  .lightbox-btn.lb-prev { right: 8px; }
  .lightbox-btn.lb-next { left: 8px; }
  .filter-bar { gap: 7px; padding: 9px 12px; }
  .filter-search { min-width: 110px; }
  .card-btn { padding: 8px 10px; font-size: 11px; }
}/* ════════════════════════════════════════
   PAGINATION
   ════════════════════════════════════════ */
.pagination-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1.5px solid var(--gray);
  background: var(--white);
  color: var(--text-dark);
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover:not(.disabled):not(.active) {
  border-color: var(--blue);
  color: var(--blue);
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40,73,128,0.15);
}

.page-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(40,73,128,0.35);
  transform: translateY(-2px);
}

.page-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-nav {
  padding: 0 16px;
  font-size: 13px;
  gap: 4px;
}

.page-dots {
  padding: 0 6px;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.pagination-info {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Cairo', sans-serif;
}

@media(max-width:600px) {
  .page-btn { min-width: 36px; height: 36px; font-size: 13px; padding: 0 10px; }
  .page-nav { padding: 0 12px; font-size: 12px; }
  .pagination-wrap { padding: 8px 12px 40px; }
}