/* =========================================================
   Global / base
   ========================================================= */
body {
  font-family: 'Segoe UI', sans-serif;
}

.card-title {
  font-size: 1rem;
}

.card-text {
  font-size: 0.9rem;
}

/* Image inside cards */
.card-img-top {
  object-fit: contain;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 10px;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.02);
}

/* Responsive button spacing */
.card .btn {
  margin-top: 10px;
}

/* =========================================================
   Hero section – stick directly under header
   ========================================================= */
.hero-wallpaper {
  margin: 0 10px 10px;          /* NO top gap under header */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  position: relative;
}

.hero-wallpaper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-wallpaper .hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-wallpaper .container {
  position: relative;
  z-index: 2;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .hero-wallpaper {
    margin: 0 10px 10px;       /* keep attached to header */
  }
}

/* =========================================================
   Brand variables / wordmark
   ========================================================= */
:root {
  --brand-accent: #C49273;      /* bronze (icon + divider) */
  --brand-word:   #1B2230;      /* deep slate */

  /* HEADER COLORS */
  --header-bg:       #ffffff;   /* white header */
  --header-bg-soft:  #f3f4f6;   /* light grey for search bar & circles */
  --header-accent:   #f97316;   /* your orange */
}


.navbar-brand {
  display: flex;
  align-items: center;
  margin: 0;
}

/* Monogram */
.brand-icon {
  height: clamp(40px, 7vw, 72px);
  width: auto;
  display: block;
  color: var(--brand-accent);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.12));
}

/* Divider */
.brand-divider {
  display: inline-block;
  height: clamp(32px, 6vw, 60px);
  width: 1px;
  margin: 0 .8rem;
  background: var(--brand-accent);
  opacity: .9;
  border-radius: 2px;
}

/* Wordmark */
.brand-word {
  display: inline-flex;
  align-items: center;
  gap: .22rem;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .06em;
  font-size: clamp(22px, 4.2vw, 36px);
  line-height: 1;
  color: var(--brand-word);
}

/* Plain MOBILAB wordmark (not currently used but harmless) */
.brand-word-text {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .06em;
  font-size: clamp(22px, 4.2vw, 36px);
  line-height: 1;
  color: #0a0a0a;
}

.brand-A {
  height: 0.92em;
  width: auto;
  display: inline-block;
  color: var(--brand-word);
  transform: translateY(0.04em);
}

/* Keep actions wrapping on small screens */
.header-actions {
  min-width: 0;
  flex-wrap: wrap;
}

/* =========================================================
   Special offers
   ========================================================= */
.special-offers {
  background: url('../images/lines.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.special-offers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00A2D3, #7C4BAE, #fff5fe);
  opacity: 0.4;
  z-index: 1;
  border-radius: 20px;
}

.special-offers .card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  z-index: 2;
  background-color: white;
  cursor: pointer;
}

.special-offers .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

@media (max-width: 768px) {
  .special-offers .card {
    transition: box-shadow 0.15s ease-out;
  }
  .special-offers .card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  }
}

/* =========================================================
   Featured — colorful theme
   ========================================================= */
.featured-colored {
  position: relative;
  background:
    radial-gradient(120% 80% at 0% 0%,   #e8f1ff 0%, transparent 50%),
    radial-gradient(120% 80% at 100% 0%, #f1e9ff 0%, transparent 50%),
    radial-gradient(120% 80% at 50% 100%,#ffeef3 0%, transparent 52%),
    #f7faff;
}

.featured-colored .section-head { margin-bottom: 1rem; }
.featured-colored .seeall {
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .85rem;
}

/* Card */
.feat-card {
  border: 1px solid #e9eef5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(17,24,39,.06);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}

.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(17,24,39,.09);
}

.feat-media {
  background:#f6f9ff;
  aspect-ratio: 1 / 1;
  display:grid; place-items:center;
  padding:10px;
}
.feat-media img { max-width:92%; max-height:92%; object-fit:contain; }

.feat-body { padding:.9rem; }
.feat-title { font-size:.98rem; font-weight:600; margin:0 0 .35rem; line-height:1.25; }
.feat-price { color:#111827; font-weight:700; margin-bottom:.7rem; }
.btn-pill { border-radius:999px; }

/* =========================================================
   Footer theme
   ========================================================= */
.site-footer { background:#0f172a; }
.site-footer .footer-accent {
  height:4px;
  background: linear-gradient(90deg,#4f46e5,#06b6d4,#22c55e);
  opacity:.9;
}
.site-footer .nav .nav-link:hover { color:#ffffff !important; }

.site-footer .ig-handle {
  background: linear-gradient(90deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.site-footer .btn.btn-light {
  background: #ffffff;
  color: #0f172a;
  border: none;
}

/* =========================================================
   Floating WhatsApp button
   ========================================================= */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  z-index: 1100;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.whatsapp-fab:hover {
  background:#1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
}
.whatsapp-fab i {
  font-size: 1.6rem;
  line-height: 1;
}
.whatsapp-fab::after {
  content:"";
  position:absolute; inset:0;
  border-radius:50%;
  border:2px solid rgba(37,211,102,.45);
  animation: wspulse 2s infinite;
}
@keyframes wspulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =========================================================
   HEADER – Decoluxe-style dark block
   ========================================================= */

/* Header container (top bar + search share same bg) */
.header-dark {
  background: var(--header-bg);
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
}

//* NAVBAR – compact row with logo + icons */
.header-dark .navbar {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}


.header-dark .navbar .container.header-bar {
  padding-inline: 0.9rem;
  display: grid;
  grid-template-columns: auto 1fr auto;  /* left | center | right */
  align-items: center;
  column-gap: 0.75rem;
}

/* center logo inside middle column */
.header-bar .navbar-brand {
  justify-self: center;
}

/* keep left & right groups nice and tight */
.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}




/* BIG MOBILAB LOGO – like CLASS */
.header-logo {
  height: 52px;           /* base size */
  width: auto;
  display: block;
  filter: brightness(0);  /* keep it solid black */
  transform: none;        /* no scaling tricks */
}

/* Small phones – a bit smaller so it fits */
@media (max-width: 576px) {
  .header-logo {
    height: 44px;
  }
}

/* Large screens – even bolder */
@media (min-width: 992px) {
  .header-logo {
    height: 64px;
  }
}





/* HEADER ACTION ICONS (menu, cart, etc.) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  flex-wrap: nowrap;
}

/* --- HEADER DROPDOWN (categories menu) ----------------------- */

/* Make header & dropdown a positioning context */
.header-dark {
  position: relative;
}

/* Base dropdown style (desktop + tablet) */
.header-dark .dropdown-menu {
  z-index: 2000;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: .4rem 0;
  box-shadow: 0 14px 32px rgba(15,23,42,.18);
  font-size: 0.95rem;
  min-width: 220px;
  max-height: 60vh;
  overflow-y: auto;
}

/* menu items */
.header-dark .dropdown-menu .dropdown-item {
  padding: .55rem 1rem;
  font-weight: 500;
}

.header-dark .dropdown-menu .dropdown-item:hover {
  background: #f3f4f6;
}

/* Mobile: make it a neat panel under the header, almost full width */
@media (max-width: 768px) {
  .header-left .dropdown {
    position: relative; /* anchor panel to the icon */
  }

  .header-dark .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0.25rem;
    right: 0.25rem;
    margin-top: 0.45rem;
    border-radius: 16px;
  }
}















/* Round icon buttons – light grey circle */
.action-circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f3f4f6;                 /* light grey */
  border: 1px solid #e5e7eb;           /* subtle border */
  color: var(--header-accent);         /* orange icon */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(15,23,42,.06);
  transition: transform .15s ease,
              box-shadow .15s ease,
              background .15s ease;
}

.action-circle i {
  font-size: 1rem;
  line-height: 1;
}


/* Any pill-style buttons */
.action-pill {
  min-height: 40px;
  padding: 0 .8rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #111827;
  box-shadow: 0 2px 6px rgba(15,23,42,.06);
  gap: .4rem;
  display: inline-flex;
  align-items: center;
}

.action-pill i {
  font-size: 1.1rem;
  line-height: 1;
}

.action-circle:hover,
.action-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15,23,42,.16);
}

.action-circle:hover {
  background:#e5e7eb;
  box-shadow: 0 3px 8px rgba(15,23,42,.12);
  transform: translateY(-1px);
}


/* Focus ring for keyboard users */
.action-circle:focus-visible,
.action-pill:focus-visible {
  outline:2px solid #4f46e5;
  outline-offset:2px;
}

/* Small screens: tighter spacing */
@media (max-width: 576px){
  .header-actions {
    gap:.3rem;
  }
}

/* Ultra-small phones: show only icons in pills */
@media (max-width: 400px){
  .action-label { display:none !important; }
  .action-pill { min-width:44px; padding:0 .65rem; }
}




/* =========================================================
   Second row search bar – same dark block
   ========================================================= */
.header-search {
  background: var(--header-bg);      /* same as top header */
}

.header-search .container {
  padding-top: 0.25rem;
  padding-bottom: 0.55rem;
  margin-top: 0;                     /* no step between rows */
}

/* Search input bubble */
.header-search-form {
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: var(--header-bg-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 0 1px rgba(15,23,42,.9);
}

.header-search-icon {
  color: #9ca3af;
  font-size: 1rem;
}

/* Input cleanup */
.header-search-input {
  padding-left: 0;
  border: none;
  background: transparent;
  color: #f9fafb;
}

.header-search-input::placeholder {
  color: #6b7280;
}

.header-search-input:focus {
  outline: none;
  box-shadow: none;
}

/* Suggestions dropdown stays readable */
.autocomplete-suggestions {
  border: 1px solid #1f2933;
}

/* =========================================================
   Home video ads: horizontal feed
   ========================================================= */
.video-ads {
  background: radial-gradient(120% 160% at 0% 0%,
    rgba(111, 132, 255, 0.12),
    #ffffff 60%);
}

/* Scrollable rail */
.video-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.video-rail::-webkit-scrollbar {
  display: none;
}

/* Each card behaves like a "post" */
.video-card {
  flex: 0 0 78%;
  max-width: 78%;
  scroll-snap-align: start;
  border-radius: 22px;
  background: #ffffff;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* tablets: show almost 2 full cards */
@media (min-width: 576px) {
  .video-card {
    flex-basis: 55%;
    max-width: 55%;
  }
}

/* small laptops: 2+ cards visible */
@media (min-width: 768px) {
  .video-card {
    flex-basis: 40%;
    max-width: 40%;
  }
}

/* desktops: around 3 cards visible */
@media (min-width: 992px) {
  .video-card {
    flex-basis: 30%;
    max-width: 30%;
  }
}

.video-frame {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-meta {
  padding-inline: 0.15rem;
  margin-top: 0.25rem;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

/* Admin footer */
.admin-footer {
  background-color: #f8f9fa;
}





/* BIG MOBILAB WORDMARK – like CLASS */

.brand-word-large {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  color: #000000;

  /* mobile → desktop */
  font-size: clamp(30px, 7vw, 44px);
}

/* Make sure the brand can grow and sit nicely in the navbar */
.navbar-brand {
  display: flex;
  align-items: center;
  margin: 0;
}
