    body {
        background: transparent !important;
        color: #f5f4f2 !important;
    }

    .mega-col h3 {
        border-bottom: 2px solid #ff9900;
    }

    #openMegaMenu {
        cursor: pointer;
    }

    .image-modal {
        display: none;
        position: fixed;
        z-index: 99999;
        inset: 0;
        background: rgba(0,0,0,0.85);
        justify-content: center;
        align-items: center;
    }

    .image-modal img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border-radius: 8px;
    }

html, body {
    height: 100%;
    background-image: url('assets/logo/backsplash4.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#deals-grid .grid {
    display: grid;
    grid-template-columns: repeat(4, 260px);
    gap: 24px;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ff3b30;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Group Title */
.mega-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Group Description */
.mega-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

/* Column Titles */
.mega-col h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

/* Links */
.mega-col a {
    display: block;
    font-size: 14px;
    color: #222;
    padding: 3px 0;
}

/* Optional: subtle background tint per group */
.mega-group {
    background: rgba(255, 255, 255, 0.85);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
/* Base group styling */
.mega-group {
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Travel Gear */
.mega-group:nth-child(1) {
    background: rgba(0, 120, 255, 0.06); /* soft blue */
}

/* Travel Tech */
.mega-group:nth-child(2) {
    background: rgba(0, 200, 180, 0.06); /* soft teal */
}

/* Family Travel */
.mega-group:nth-child(3) {
    background: rgba(255, 220, 0, 0.08); /* soft yellow */
}

/* Resort Wear */
.mega-group:nth-child(4) {
    background: rgba(255, 150, 80, 0.07); /* soft peach */
}

/* Relaxing */
.mega-group:nth-child(5) {
    background: rgba(180, 120, 255, 0.07); /* soft lavender */
}
.mega-title {
    font-size: 20px;
    font-weight: 800; /* stronger bold */
    color: #1a1a1a;
    margin-bottom: 4px;
}
.mega-desc {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    margin-bottom: 12px;
}


.mega-col a {
    display: block;
    font-size: 14px;
    color: #111;
    padding: 3px 0;
    font-weight: 500;
}

.mega-content {
    max-height: 80vh;   /* fits inside screen */
    overflow-y: auto;   /* enables scrolling */
    padding-right: 10px; /* avoids scrollbar overlap */
}
#openMegaMenu {
    cursor: pointer !important;
}
.mega-title span[data-i18n="cat_travel_gear"],
.mega-title span[data-i18n="cat_travel_tech"] {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.mega-title span[data-i18n="cat_travel_gear"]::after,
.mega-title span[data-i18n="cat_travel_tech"]::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-40%); /* ← moves underline to the right */
    bottom: 0;

    width: 300px;   /* long */
    height: 2px;    /* thin */
    background-color: #ff9900;
    border-radius: 2px;
}

/* underline under the blurb for the first two sections */
.mega-group:nth-of-type(1) .mega-desc,
.mega-group:nth-of-type(2) .mega-desc {
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 12px;
    border-bottom: 2px solid #ff9900;
}

/* remove any leftover underline on the title */
.mega-title::after,
.mega-title span::after,
.mega-title span[data-i18n]::after {
    content: none !important;
    border: none !important;
}

.mega-desc[data-i18n="cat_relaxing_desc"] {
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 12px;
    border-bottom: 2px solid #ff9900;
}

/* HEADERS — make these blue */
.mega-menu .mega-col h3 {
    color: #003A5C !important;
    font-weight: 700 !important;
    margin-bottom: 6px;
}

/* LINKS — keep these charcoal */
.mega-menu .mega-col a {
    color: #333 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.mega-menu .mega-col a:hover {
    color: #003A5C !important;
    text-decoration: underline !important;
}
  .ld-remind-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        background: #fff;
        border-radius: 12px;
        padding: 0 16px;
        margin-top: 12px;
        border: 1px solid #ddd;
    }
    .ld-remind-panel.open {
        max-height: 200px;
        padding: 16px;
    }
    .ld-remind-panel label {
        font-weight: 600;
        display: block;
        margin-bottom: 6px;
    }
    .ld-remind-panel select {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
    }
    .ld-remind-panel button {
        background: #ff9900;
        color: white;
        padding: 8px 14px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        margin-right: 10px;
    }
    .ld-remind-panel a {
        cursor: pointer;
        color: #555;
        font-size: 14px;
    }

.ld-remind-panel,
.ld-remind-panel * {
    color: #000 !important;
}

    body.homeeseentials-page {
        background: #BCB8B1 !important;
        color: #f5f4f2 !important;
    }
.mega-col h3 {
    border-bottom: 2px solid #ff9900;
}


/* your existing styles... */

    .mega-col h3 {
        border-bottom: 2px solid #ff9900;
    }

    /* FIX: make Categories show pointer cursor */
    #openMegaMenu {
        cursor: pointer;
    }

.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ff3b30;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.limited-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #d40000;
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 20;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.product-image-wrapper {
    position: relative;
    overflow: visible;
}

body.homeessentials-page #home-layout {
    padding-top: 190px;
}

/* Soft tint ONLY for product cards */
#home-layout .grid > div {
    background: rgba(0, 0, 0, 0.50) !important; /* very light tint */
    backdrop-filter: blur(4px) !important;      /* softens background */
    border-radius: 14px !important;
    padding: 12px !important;
}

.deal-price {
    color: #fff !important;          /* bright white for contrast */
    font-size: 22px !important;      /* bigger */
    font-weight: 900 !important;     /* bold */
    text-shadow: 0 0 8px rgba(0, 0, 0, 1) !important; /* strong glow for tablet */
}

.deal-card .travel-source span {
    color: #ffffff !important;
}
.deal-card .remind-me-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(4px) !important;
    text-shadow: 0 0 6px rgba(0,0,0,0.5) !important;
}

#home-layout .grid > div a {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(4px) !important;
    text-shadow: 0 0 6px rgba(0,0,0,0.5) !important;
    display: block !important;
    padding: 10px 14px !important;
    text-align: center !important;
    font-weight: 700 !important;
}

.home-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.home-pill-row .pill {
    padding: 8px 14px;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.he-category-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    padding: 10px 0;
}

.he-pill {
    padding: 8px 16px;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.he-category-bar {
    display: flex;
    justify-content: center;   /* centers horizontally */
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px auto;         /* centers the whole block */
    padding: 10px 0;
    width: 100%;
    max-width: 900px;          /* optional: keeps it tight */
}
/* ==================================================
FLOATING MERENGUE PLAYER — FINAL VERSION
================================================== */

#fmp-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 16px;
  background: rgba(0,0,0,0.78);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fmp-notes {
  font-size: 20px;
  line-height: 1;
}

.fmp-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fmp-title {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fmp-progress {
  width: 180px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}

.fmp-progress-bar {
  width: 0;
  height: 100%;
  background: #ffb347;
  transition: width 0.15s linear;
}

.fmp-btn {
  border: none;
  outline: none;
  cursor: pointer;

  width: 34px;
  height: 34px;

  border-radius: 999px;
  background: #ffb347;
  color: #000;

  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.fmp-eq {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 18px;
}

.eq-bar {
  width: 4px;
  background: #00AEEF;
  border-radius: 4px;
  height: 4px;
  transition: height 0.15s ease-out;
}
