/* =========================
   GLOBAL
========================= */
body {
  font-family: 'Rubik', sans-serif;
  background: linear-gradient(135deg, #eef2ff, #f8fbff);
  direction: rtl;
  color: #1f2937;
}

/* =========================
   HEADER (GLASS)
========================= */
.header {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 20px;
  text-align: center;
}

.logo {
  width: 120px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

/* =========================
   TABS (INSTAGRAM STYLE)
========================= */
.tabs-container {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  margin: 10px;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  background: rgba(255,255,255,0.5);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.tab-btn {
  border: none;
  background: transparent;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #6b7280;
  transition: 0.3s;
}

.tab-btn i {
  font-size: 22px;
  margin-bottom: 2px;
}

.tab-btn.active {
  color: #6366f1;
  text-shadow: 0 0 10px rgba(99,102,241,0.4);
}

/* =========================
   CONTENT
========================= */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* =========================
   HERO (GLOW)
========================= */
.hero-main {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: white;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(99,102,241,0.3);
  margin-bottom: 15px;
}

.hero-main h1 {
  font-weight: 700;
  font-size: 24px;
}

.hero-main p {
  opacity: 0.9;
}

/* =========================
   GLASS SECTIONS
========================= */
.section {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.6);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.section h4 {
  color: #6366f1;
}

/* =========================
   HIGHLIGHT
========================= */
.highlight {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 1px solid #fed7aa;
}

/* =========================
   VIDEO
========================= */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

/* =========================
   CARDS (GLASS + GLOW)
========================= */
.shop-card, .category-card {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.6);
  border-radius: 20px;
  padding: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.shop-card:hover, .category-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(99,102,241,0.2);
}

.shop-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 10px;
}

.category-card i.categorie-icon {
  font-size: 32px;
  color: #6366f1;
  text-shadow: 0 0 12px rgba(99,102,241,0.5);
}

/* =========================
   BUTTONS (INSTAGRAM STYLE)
========================= */
button {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  border: none;
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(99,102,241,0.5);
}

/* =========================
   COUNTDOWN (GLOW)
========================= */
.countdown-flex {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.badge {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: white;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(99,102,241,0.5);
  transition: 0.3s;
}

.badge.animate {
  transform: scale(1.2);
}

.label {
  text-align: center;
  margin-top: 5px;
  font-size: 13px;
}

/* =========================
   FOOTER
========================= */
.footer {
  margin-top: 20px;
  padding: 15px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}


.icon-wrapper {
  width: 55px;
  height: 55px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(99,102,241,0.5);
}

.icon-wrapper i {
  color: white;
  font-size: 26px;
}

.btn-open {
  margin-top: 8px;
  font-size: 12px;
  padding: 6px 12px;
}