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


/* ===============================
   TOP OFFER BAR (2 ROW LAYOUT)
================================ */

/* OUTER WRAPPER — controls centering */
/* ===============================
   TOP OFFER BAR (2 ROW LAYOUT)
================================ */

/* OUTER WRAPPER — controls centering */
.top-offer-wrap {
  display: flex;
  justify-content: center;
}

/* INNER BAR — visual size */
.top-offer-bar {
  width: 100%;
  max-width: 75%;
  /* SAME as header & hero */
  padding: 20px 28px;
  /* slightly bigger = premium look */
  font-family: Inter, sans-serif;
  background: #ffffff;
}


/* ROWS */
.offer-row {
  display: flex;
  align-items: center;
}

.top-row {
  justify-content: space-between;
  gap: 20px;
}

/* TIMER ROW – FIXED */
.timer-row {
  margin-top: 10px;
  font-size: 14px;
  color: #000000;

  justify-content: flex-start;
  /* 🔥 KEY FIX */
  gap: 5px;
  flex-wrap: wrap;
  /* mobile safe */
}

@media (max-width: 768px) {
  .top-offer-wrap {
    display: none;
  }
}

/* INNER BAR — visual size */
.footer-container {
  max-width: 95%;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 12px;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
}

.coupon {
  color: #2563eb;
  font-weight: 700;
}

.discount {
  color: #dc2626;
  font-weight: 700;
}

/* ===============================
   RIGHT SECTION
================================ */

.offer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.buy-btn {
  background: #ffd54f;
  color: #1f2937;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

/* ===============================
   TIMER
================================ */

.time {
  font-weight: 700;
  font-size: 20px;
}

.red {
  color: #dc2626;
}

/* ===============================
   CLOSE RADIO TOGGLE
================================ */

.close-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.close-toggle input {
  display: none;
}

.close-toggle span {
  width: 18px;
  height: 18px;
  border: 2px solid #999;
  border-radius: 50%;
  position: relative;
}

.close-toggle input:checked+span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: #000000;
  border-radius: 50%;
}


/* ===============================
   HEADER BACKGROUND
================================ */
.header-wrap {
  /* parent bg as seen earlier */
  padding: 24px 0;
  font-family: 'Instrument Sans', sans-serif;
  border-radius: 20px 20px 0px 0px;
}

@media (max-width: 768px) {
  .header-wrap {
    padding: 16px 0;
  }
}

@media (max-width: 480px) {
  .header-wrap {
    padding: 12px 0;
  }
}

/* ===============================
   HEADER PILL
================================ */
.header-pill {
  max-width: 95%;
  margin: 0 auto;
  padding: 10px 10px;

  background: #ffffff;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .header-pill {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .header-pill {
    padding: 12px 16px;
  }
}

/* ===============================
   LOGO
================================ */
.logo-wrap img {
  width: 200px;
  height: auto;
  padding-left:20px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-wrap img {
    width: 110px;
    padding-left:5px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .logo-wrap img {
    width: 90px;
    height: 28px;
  }
}

/* ===============================
   MENU WRAP
================================ */
.menu-wrap {
  max-width: 798px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

@media (max-width: 1024px) {
  .menu-wrap {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .menu-wrap {
    display: none;
  }
}

/* ===============================
   MENU ITEM
================================ */
.menu-item {
  height: 24px;
  padding: 0 2px;
  /* micro breathing space */
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;

  color: #555;
  text-decoration: none;
  white-space: nowrap;
}

.menu-item.active {
  font-weight: 600;
}

.dropdown-new > a {
  color: #555;
  text-decoration:none;
}

/* ===============================
   MOBILE MENU TOGGLE
================================ */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #3E4095;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Header actions wrapper to align cart + toggle */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.right-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 14px;
  background: #3E4095;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
}

.right-btn > a {
    text-decoration:none;
    color: #fff;
    display: contents;
}


.right-btn .user-icon {
  display: block;
}

.right-btn .right-text {
  display: inline-block;
  white-space: nowrap;
  line-height: 1; 
}

  .cart-icon {
    position: relative;
    display: inline-block;
}
  /* Blue count circle */
#CartCount1 {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 5px;
    z-index: 5;
}

/* Hide if zero */
#CartCount1:empty,
#CartCount1[data-count="0"] {
    display: none;
}

@media (max-width: 768px) {

  /* On mobile: show cart icon, hide login text and user icon, keep toggle to the right */
  .right-btn .cart-icon {
    display: inline-block !important;
    font-size: 20px;
  }


  .right-btn .user-icon,
  .right-btn .right-text {
    display: none !important;
  }

  /* Ensure header-actions align to the right side */
  .header-pill .header-actions {
    margin-left: auto;
  }
  .header-actions{
      gap : 2px;
  }
}

/* ===============================
   MOBILE MENU
================================ */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-item {
  padding: 12px 28px;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.mobile-menu-item:hover {
  background: #f5f5f5;
}

/* ===============================
   RIGHT BUTTON
================================ */
.right-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  background: #3E4095;
  border-radius: 999px;

  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  color: #ffffff;

  cursor: pointer;
}

@media (max-width: 768px) {
  .right-btn {
    font-size: 14px;
    padding: 8px 14px;

    background: #ffffff;
    color: #000000;
  }
}

@media (max-width: 480px) {
  .right-btn {
    font-size: 12px;
    padding: 6px 10px;
    background: #ffffff;
    color: #000000;
  }
}

/* ===============================
   USER ICON
================================ */
.user-icon {
  width: 56px;
  height: 56px;

  display: flex !important;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #ffffff;
  color: #000000;

  font-size: 22px;
}



/* ===============================
   MASTER HERO GRADIENT
================================ */
.hero-gradient {
  background: linear-gradient(180deg, #b8b8ec 0%, #ffffff 100%);
}
/* =========================================================
   DESKTOP FIRST (DEFAULT ≥ 992px)
========================================================= */

/* Hide mobile menu on desktop */
.mobile-menu {
    display: none;
}

/* Desktop dropdown */
.menu-wrap .dropdown-new {
    position: relative;
}

.menu-wrap .dropdown-menu-new {
    position: absolute;
    top: 250%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
}

.menu-wrap .dropdown-menu-new a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
}

.menu-wrap .dropdown-menu-new a:hover {
    background: #f4f6ff;
}

/* Show desktop dropdown on hover */
.menu-wrap .dropdown-new:hover .dropdown-menu-new {
    display: block;
}
.dropdown-toggle:hover {
    text-decoration: none !important;
}

.menu-item:hover {
    text-decoration: none !important;
}

.mobile-menu-item > a {
    text-decoration:none;
    color:#000;
}

.dropdown-toggle::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -15px;
  bottom: -40px;
  left: -15px;
}
/* =========================================================
   MOBILE ONLY (≤ 991px)
========================================================= */
@media (max-width: 991px) {

    /* Hide desktop menu */
    .menu-wrap {
        display: none;
    }

    /* Mobile dropdown wrapper */
    .dropdown-mobile-new {
        width: 100%;
    }

    /* Mobile dropdown container */
    .mobile-dropdown-new {
        display: none;          /* closed by default */
        padding-left: 16px;
        margin-top: 6px;
    }

    /* Mobile dropdown links */
    .mobile-dropdown-new a {
        display: block;
        width: 100%;
        padding: 8px 0;
        font-size: 14px;
        color: #000;
        text-decoration: none;
        white-space: normal;
    }

    .mobile-dropdown-new a:hover {
        color: #4c4fb8;
    }

    /* Disable desktop dropdown styles on mobile */
    .menu-wrap .dropdown-menu-new {
        position: static;
        box-shadow: none;
        border-radius: 0;
    }
}




/* ===============================
   FOOTER
================================ */

.site-footer {
  background: linear-gradient(135deg, #3b3fae, #5a5cf0);
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  padding-top: 80px;
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding-top: 40px;
  }
}

.footer-container {
  max-width: 95%;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    /* padding: 0 16px; */
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr !important;
    padding: 0 16px !important;
    gap: 24px !important;
  }

  .footer-col:not(.footer-brand) {
    text-align: left !important;
  }

  .footer-col:not(.footer-brand) h4 {
    font-size: 18px !important;
    margin-bottom: 12px !important;
    text-align: left !important;
  }

  .footer-col:not(.footer-brand) ul li {
    font-size: 14px !important;
    margin-bottom: 8px !important;
    text-align: left !important;
  }

  /* Create 2-column layout for the 4 footer-col divs */
  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:nth-child(4),
  .footer-col:nth-child(5) {
    display: inline-block !important;
    width: calc(50% - 12px) !important;
    vertical-align: top !important;
    margin-right: 24px !important;
  }

  .footer-col:nth-child(3),
  .footer-col:nth-child(5) {
    margin-right: 0 !important;
  }

  .footer-desc {
    font-size: 14px !important;
    margin-bottom: 16px !important;
    text-align: left !important;
  }

  .footer-logo {
    width: 100px !important;
    margin-bottom: 12px !important;
  }

  .footer-social {
    margin-bottom: 16px !important;
  }

  .footer-bottom {
    font-size: 12px !important;
    margin-top: 40px !important;
    padding: 16px 16px !important;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 12px;
    /* left column 60% and right column 40% */
    grid-template-columns: 0.6fr 0.4fr !important;
    gap: 16px !important;
  }

  /* Brand spans full width above the two-column links */
  .footer-col.footer-brand {
    grid-column: 1 / -1 !important;
  }

  /* Ensure .footer-link items behave as grid items (override older inline-block rules) */
  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:nth-child(4),
  .footer-col:nth-child(5) {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    vertical-align: top !important;
  }

  /* Keep simple helper for any footer-link selector too */
  .footer-col.footer-link {
    padding: 0 8px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }
}

/* BRAND */

.footer-logo {
  width: 140px;
  margin-bottom: 16px;
}

.footer-desc {
  opacity: 0.9;
  margin-bottom: 20px;
  font-family: Instrument Sans;
  font-weight: 350;
  font-style: Regular;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;

}

/* SOCIAL */

.footer-social {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #ffffff;
  color: #4b4bb5;
}

/* APPS */

.footer-apps {
  display: flex;
  gap: 12px;
}

.footer-apps img {
  height: 40px;
  cursor: pointer;
}

/* COLUMNS */

.footer-col h4 {
  margin-bottom: 16px;
  font-family: Instrument Sans;
  font-weight: 450;
  font-style: Medium;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-family: Instrument Sans;
  font-weight: 450;
  font-style: Medium;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
}

.footer-col ul li a {
  color: #ffffff;
  opacity: 0.9;
  text-decoration: none;
}

.footer-col ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* CONTACT */

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-contact i {
  opacity: 0.8;
}

/* BOTTOM */

.footer-bottom {
  margin-top: 60px;
  padding: 20px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-family: Instrument Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;

}

.footer-bottom p {
  text-align: center !important;
}



/* Mobile tweaks: ensure headings and list text fit two-column layout */
@media (max-width: 480px) {
  .footer-col h4 {
    font-size: 20px !important;
    margin-bottom: 12px !important;
    line-height: 1.05 !important;
  }

  .footer-col ul li {
    font-size: 15px !important;
    margin-bottom: 8px !important;
    line-height: 1.25 !important;
  }

  /* Add horizontal padding inside each column so text doesn't hug the gutter */
  .footer-col {
    padding: 0 8px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  /* Slightly increase container gap so columns breathe */
  .footer-container {
    gap: 20px !important;
  }
}


/* RESPONSIVE */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

