/** Shopify CDN: Minification failed

Line 467:0 Unexpected "<"
Line 469:2 Comments in CSS use "/* ... */" instead of "//"
Line 476:4 Comments in CSS use "/* ... */" instead of "//"
Line 482:4 Comments in CSS use "/* ... */" instead of "//"
Line 487:4 Comments in CSS use "/* ... */" instead of "//"
Line 493:4 Comments in CSS use "/* ... */" instead of "//"
Line 498:4 Comments in CSS use "/* ... */" instead of "//"
Line 503:4 Comments in CSS use "/* ... */" instead of "//"
Line 507:8 Comments in CSS use "/* ... */" instead of "//"
Line 510:8 Comments in CSS use "/* ... */" instead of "//"
... and 27 more hidden warnings

**/
/* --- Menu button for the last item (Express Buy) --- */
@media (min-width: 992px) {
  /* Tighten menu spacing slightly to match demo */
  .site-nav, .main-menu, .header__menu { gap: 28px; }

  /* Last item as a button */
  .site-nav > li:last-child > a,
  .main-menu > li:last-child > a,
  .header__menu > li:last-child > a {
    display: inline-block;
    padding: 10px 18px;
    background: #0a1b58;     /* navy */
    color: #fff !important;
    border-radius: 4px;
    font-weight: 600;
  }

  /* Hover state */
  .site-nav > li:last-child > a:hover,
  .main-menu > li:last-child > a:hover,
  .header__menu > li:last-child > a:hover {
    opacity: .9;
  }
}
/* ===== Engagement Rings Megamenu — ID-targeted (Adena 8) ===== */
@media (min-width: 992px) {

  /* 1) Container: make a 3-column grid */
  #ID_CONTAINER {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;  /* left | middle | right */
    gap: 40px;
    padding: 32px 48px;
  }

  /* 2) Force each block into a column (use YOUR IDs) */
  #ID_LEFT_BANNER  { grid-column: 1; }
  #ID_STYLE        { grid-column: 1; }

  #ID_SHAPE        { grid-column: 2; }
  #ID_CTAS         { grid-column: 2; align-self: start; }

  #ID_METAL        { grid-column: 3; }
  #ID_RIGHT_BANNER { grid-column: 3; }

  /* 3) Split SHAPE list into two columns after 10 items */
  #ID_SHAPE ul {
    display: grid !important;
    grid-auto-flow: column;               /* fill down, then across */
    grid-template-rows: repeat(10, auto); /* exactly 10 items per column */
    gap: 8px 28px;
  }

  /* 4) Turn your CTAs (two links) into buttons */
  #ID_CTAS ul {
    display: flex !important;
    gap: 14px;
    margin-top: 14px;
    flex-wrap: wrap;
  }
  #ID_CTAS li { list-style: none; }
  #ID_CTAS li a {
    display: inline-block;
    text-align: center;
    padding: 12px 18px;
    border: 1px solid #0a1b58;
    background: #0a1b58;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
    border-radius: 2px;
    white-space: nowrap;
    transition: .2s ease;
  }
  /* Make the SECOND link the outline version */
  #ID_CTAS li:last-child a {
    background: transparent;
    color: #0a1b58 !important;
  }
  #ID_CTAS li a:hover {
    opacity: .9;
    transform: translateY(-2px);
  }

  /* 5) Metal color dots on the METAL block */
  #ID_METAL ul li { position: relative; padding-left: 28px; }
  #ID_METAL ul li::before {
    content: ""; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); width: 18px; height: 18px;
    border-radius: 50%; border: 1px solid #ccc; background: #eee;
  }
  #ID_METAL ul li:nth-child(1)::before { background:#efefef; } /* White Gold */
  #ID_METAL ul li:nth-child(2)::before { background:#e9c053; } /* Yellow Gold */
  #ID_METAL ul li:nth-child(3)::before { background:#e8b09a; } /* Rose Gold */
  #ID_METAL ul li:nth-child(4)::before { background:#dfe3e8; } /* 925 Silver */
  #ID_METAL ul li:nth-child(5)::before { background:#cfd6db; } /* 935 Argentium */
  #ID_METAL ul li:nth-child(6)::before { background:#c3c8cd; } /* 950 Platinum */
}
/* METAL COLOR DOTS */
.megamenu-products .menu_item {
    position: relative;
    padding-left: 28px;
}

.megamenu-products .menu_item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #eee;
}

/* WHITE GOLD */
.megamenu-products .menu_item:nth-child(1)::before { background: #fefefe; }

/* YELLOW GOLD */
.megamenu-products .menu_item:nth-child(2)::before { background: #e9c953; }

/* ROSE GOLD */
.megamenu-products .menu_item:nth-child(3)::before { background: #eb809a; }

/* 925 SILVER */
.megamenu-products .menu_item:nth-child(4)::before { background: #df8e3e; }

/* 935 ARGENTIUM SILVER */
.megamenu-products .menu_item:nth-child(5)::before { background: #cfd6db; }

/* 950 PLATINUM */
.megamenu-products .menu_item:nth-child(6)::before { background: #c3c8cd; }

ul li a[href*="white-gold"]::before,
ul li a[href*="yellow-gold"]::before,
ul li a[href*="rose-gold"]::before,
ul li a[href*="925"]::before,
ul li a[href*="argentium"]::before,
ul li a[href*="platinum"]::before {
    content: "";
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    border: 1px solid #ccc !important;
}
/* Remove existing bullet icons */
.megamenu-products .menu_item::before,
.megamenu-products .menu_item span,
.megamenu-products .menu_item svg {
    display: none !important;
}

/* Add CUSTOM colored dots */
.megamenu-products .menu_item {
    position: relative;
    padding-left: 26px !important;
}

.megamenu-products .menu_item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #aaa;
}

/* COLORS MATCHING YOUR LIST ORDER */
.megamenu-products .menu_item:nth-child(1)::after { background: #fefefe; }  /* White Gold */
.megamenu-products .menu_item:nth-child(2)::after { background: #e9c053; } /* Yellow Gold */
.megamenu-products .menu_item:nth-child(3)::after { background: #eb90a9; } /* Rose Gold */
.megamenu-products .menu_item:nth-child(4)::after { background: #dfde3e; } /* 925 Silver */
.megamenu-products .menu_item:nth-child(5)::after { background: #cfc6db; } /* Argentium Silver */
.megamenu-products .menu_item:nth-child(6)::after { background: #3c3c8d; } /* Platinum */

/* ===== Force metal-color dots using link URLs (works in any theme) ===== */
.menu-dropdown__content--megamenu a[href*="white-gold"],
.menu-dropdown__content--megamenu a[href*="yellow-gold"],
.menu-dropdown__content--megamenu a[href*="rose-gold"],
.menu-dropdown__content--megamenu a[href*="925"],
.menu-dropdown__content--megamenu a[href*="argentium"],
.menu-dropdown__content--megamenu a[href*="platinum"] {
  position: relative !important;
  padding-left: 28px !important;
}

/* hide any theme-provided bullet/icon next to these links */
.menu-dropdown__content--megamenu a[href*="white-gold"] > *, 
.menu-dropdown__content--megamenu a[href*="yellow-gold"] > *, 
.menu-dropdown__content--megamenu a[href*="rose-gold"] > *, 
.menu-dropdown__content--megamenu a[href*="925"] > *, 
.menu-dropdown__content--megamenu a[href*="argentium"] > *, 
.menu-dropdown__content--megamenu a[href*="platinum"] > * {
  /* only hides inline icon elements, not the text node */
}

.menu-dropdown__content--megamenu a[href*="white-gold"]::before,
.menu-dropdown__content--megamenu a[href*="yellow-gold"]::before,
.menu-dropdown__content--megamenu a[href*="rose-gold"]::before,
.menu-dropdown__content--megamenu a[href*="925"]::before,
.menu-dropdown__content--megamenu a[href*="argentium"]::before,
.menu-dropdown__content--megamenu a[href*="platinum"]::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  border: 1px solid #bfbfbf !important;
  box-sizing: border-box !important;
}

/* colors */
.menu-dropdown__content--megamenu a[href*="white-gold"]::before   { background: #ffffff !important; }
.menu-dropdown__content--megamenu a[href*="yellow-gold"]::before  { background: #e9c053 !important; }
.menu-dropdown__content--megamenu a[href*="rose-gold"]::before    { background: #e8a0b0 !important; }
.menu-dropdown__content--megamenu a[href*="925"]::before          { background: #e5e9ee !important; }     /* 925 silver */
.menu-dropdown__content--megamenu a[href*="argentium"]::before    { background: #d2d9df !important; }     /* 935 argentium */
.menu-dropdown__content--megamenu a[href*="platinum"]::before     { background: #c5cbd2 !important; }     /* 950 platinum */
/* Center CTA row under columns */
.menu-dropdown__content--megamenu .shopify-block:nth-last-child(1) {
  grid-column: 2 / span 2;
  text-align: center;
  margin-top: 30px;
}
/* ===== ER megamenu: center the last block (CTAs) under the 3 middle columns ===== */
@media (min-width: 992px){
  /* Use the exact container ID with the DOUBLE underscore */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy{
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);  /* left | style | shape | metal | right */
    gap: 36px;
    align-items: start;
  }

  /* Target the CTA block: the last .shopify-block inside this container */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy > .shopify-block:last-of-type{
    grid-column: 2 / span 3;                /* spans columns 2, 3, 4 */
    justify-self: center;
    text-align: center;
    margin-top: 24px;
  }

  /* Lay out the two CTA links on one centered row */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy > .shopify-block:last-of-type ul{
    display: flex !important;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
}
/* ===== Engagement Rings megamenu: 2-col Shape + centered CTAs ===== */
@media (min-width: 992px){

  /* 1) Grid for the ER dropdown */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy{
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0,1fr));  /* left | style | shape | metal | right */
    gap: 36px;
    align-items: start;
  }

  /* Keep first 5 blocks in the top row */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy > .shopify-block:nth-child(1){ grid-column:1; }
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy > .shopify-block:nth-child(2){ grid-column:2; }
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy > .shopify-block:nth-child(3){ grid-column:3; }  /* SHAPE block */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy > .shopify-block:nth-child(4){ grid-column:4; }
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy > .shopify-block:nth-child(5){ grid-column:5; }

  /* 2) Split the SHAPE list (the 3rd block) into two columns */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > .shopify-block:nth-child(3) ul{
    display: grid !important;
    grid-auto-flow: column;                /* fill down, then across */
    grid-template-rows: repeat(10, auto);  /* ~10 rows per sub-column */
    gap: 8px 28px;                         /* row gap | column gap */
  }

  /* 3) CTA block (place it centered under columns 2–4) */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > .shopify-block:last-of-type{
    grid-column: 2 / span 3;               /* under STYLE + SHAPE + METAL */
    justify-self: center;
    text-align: center;
    margin-top: 24px;
  }
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > .shopify-block:last-of-type ul{
    display: flex !important;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
}
/* ===== ER Megamenu: 2-col SHAPE + centered CTAs ===== */
@media (min-width: 992px){

  /* Your real container (note the double underscore) */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy{
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0,1fr)) !important; /* left | style | shape | metal | right */
    gap: 36px !important;
    align-items: start !important;
  }

  /* --- SHAPE column: detect the block that contains the link to "round" --- */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > .shopify-block:has(a[href*="round"]) ul{
    /* Fallback multi-column (works everywhere) */
    columns: 2 !important;
    column-gap: 28px !important;
  }

  /* Prefer grid when possible (neater balance) */
  @supports (grid-auto-flow: column){
    #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
    > .shopify-block:has(a[href*="round"]) ul{
      display: grid !important;
      grid-auto-flow: column !important;     /* fill down, then across */
      grid-template-rows: repeat(10, auto) !important;  /* ~10 rows per sub-column */
      gap: 8px 28px !important;              /* row gap | column gap */
      columns: initial !important;           /* disable the fallback */
    }
  }

  /* --- CTA block: detect block containing either link (book/explore) and center it --- */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > .shopify-block:has(a[href*="book-appointment"]),
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > .shopify-block:has(a[href*="explore"]) {
    grid-column: 2 / span 3 !important;      /* under STYLE + SHAPE + METAL */
    justify-self: center !important;
    text-align: center !important;
    margin-top: 24px !important;
  }

  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > .shopify-block:has(a[href*="book-appointment"]) ul,
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > .shopify-block:has(a[href*="explore"]) ul{
    display: flex !important;
    justify-content: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
  }
}
/* ===============================
   ENGAGEMENT RINGS – FINAL LAYOUT
   =============================== */
@media (min-width: 992px){

  /* 1) Grid container (use YOUR id with double underscore) */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy{
    display: grid !important;
    grid-template-columns: 260px 1fr 1fr 1fr 260px !important; /* Left img | STYLE | SHAPE | METAL | Right img */
    gap: 36px !important;
    align-items: start !important;
    grid-auto-flow: dense !important;
  }

  /* Only consider real block nodes (ignore Shopify inline <style> etc.) */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy > [id^="shopify-block-"]{
    display: block !important;
  }

  /* 2) Place banners (left/right) by detecting the banner wrapper */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > [id^="shopify-block-"] .megamenu-banner{
    display:block !important;
  }
  /* Left banner goes to col 1 */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > [id^="shopify-block-"]:has(.megamenu-banner){
    grid-column: 1 !important;
  }
  /* Right banner = the second banner encountered → push to col 5 */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > [id^="shopify-block-"]:has(.megamenu-banner):nth-of-type(2){
    grid-column: 5 !important;
  }

  /* 3) Place the three menu columns by what they contain */
  /* STYLE column (has 'classic', safe unique) */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > [id^="shopify-block-"]:has(a[href*="classic"]){
    grid-column: 2 !important;
  }

  /* SHAPE column (has 'round') */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > [id^="shopify-block-"]:has(a[href*="round"]){
    grid-column: 3 !important;
  }

  /* METAL column (has 'white-gold') */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > [id^="shopify-block-"]:has(a[href*="white-gold"]){
    grid-column: 4 !important;
  }

  /* 4) Split SHAPE list into two sub-columns (grid first, column fallback) */
  @supports (grid-auto-flow: column){
    #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
    > [id^="shopify-block-"]:has(a[href*="round"]) ul{
      display: grid !important;
      grid-auto-flow: column !important;      /* fill down then across */
      grid-template-rows: repeat(10, auto) !important; /* ~10 rows/two sides */
      gap: 8px 28px !important;
      columns: initial !important;
    }
  }
  /* Fallback if grid isn’t applied for any reason */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > [id^="shopify-block-"]:has(a[href*="round"]) ul{
    columns: 2 !important;
    column-gap: 28px !important;
    break-inside: avoid-column !important;
  }

  /* 5) CTA block = contains /book-appointment or /explore → center under columns 2..4 */
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > [id^="shopify-block-"]:has(a[href*="book-appointment"]),
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > [id^="shopify-block-"]:has(a[href*="explore"]){
    grid-column: 2 / 5 !important;     /* spans STYLE + SHAPE + METAL */
    justify-self: center !important;
    text-align: center !important;
    margin-top: 20px !important;
  }
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > [id^="shopify-block-"]:has(a[href*="book-appointment"]) ul,
  #shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy
  > [id^="shopify-block-"]:has(a[href*="explore"]) ul{
    display: flex !important;
    justify-content: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
  }
}
<script>
(function () {
  // Engagement Rings megamenu container (you confirmed this id)
  var CONTAINER_ID = 'shopify-block-AQW4e3G9VMO5lOGRod__megamenu_container_zUenxy';

  function fixERMenu() {
    var cont = document.getElementById(CONTAINER_ID);
    if (!cont) return;

    // Force the container to be a 5-col grid (Left | Style | Shape | Metal | Right)
    cont.style.display = 'grid';
    cont.style.gridTemplateColumns = '260px 1fr 1fr 1fr 260px';
    cont.style.gap = '36px';
    cont.style.alignItems = 'start';

    // Grab all direct child blocks (ignore inline <style> nodes)
    var blocks = Array.prototype.filter.call(cont.children, function (el) {
      return el.id && el.id.indexOf('shopify-block-') === 0;
    });

    // Identify key blocks by their content
    var styleBlock = blocks.find(function (b) { return b.querySelector('a[href*="classic"]'); });
    var shapeBlock = blocks.find(function (b) { return b.querySelector('a[href*="round"]'); });
    var metalBlock = blocks.find(function (b) { return b.querySelector('a[href*="white-gold"]'); });
    var ctaBlock   = blocks.find(function (b) { return b.querySelector('a[href*="book-appointment"], a[href*="explore"]'); });

    // Place left/right banners: first .megamenu-banner goes col 1, second goes col 5
    var banners = blocks.filter(function (b) { return b.querySelector('.megamenu-banner'); });
    if (banners[0]) banners[0].style.gridColumn = '1';
    if (banners[1]) banners[1].style.gridColumn = '5';

    // Place the three middle columns
    if (styleBlock) styleBlock.style.gridColumn = '2';
    if (shapeBlock) shapeBlock.style.gridColumn = '3';
    if (metalBlock) metalBlock.style.gridColumn = '4';

    // Split SHAPE list into two sub-columns
    if (shapeBlock) {
      var ul = shapeBlock.querySelector('ul');
      if (ul) {
        // Use CSS columns (works everywhere)
        ul.style.columns = '2';
        ul.style.columnGap = '28px';
        // Try to prefer grid for nicer balance (if supported)
        ul.style.display = 'grid';
        ul.style.gridAutoFlow = 'column';
        ul.style.gridTemplateRows = 'repeat(10, auto)';
        ul.style.gap = '8px 28px';
      }
    }

    // Move & center CTA under columns 2..4
    if (ctaBlock) {
      // Ensure it's physically after the columns inside container
      cont.appendChild(ctaBlock);
      ctaBlock.style.gridColumn = '2 / span 3';
      ctaBlock.style.justifySelf = 'center';
      ctaBlock.style.textAlign = 'center';
      ctaBlock.style.marginTop = '22px';

      var ctaUL = ctaBlock.querySelector('ul');
      if (ctaUL) {
        ctaUL.style.display = 'flex';
        ctaUL.style.justifyContent = 'center';
        ctaUL.style.gap = '14px';
        ctaUL.style.flexWrap = 'wrap';
      }
    }
  }

  // Run when the menu opens (hover/focus) and also after load
  function onNavOpen() {
    // Delay slightly to allow theme JS to finish injecting blocks
    setTimeout(fixERMenu, 50);
  }

  document.addEventListener('DOMContentLoaded', function () {
    // Try once on load (if menu is already open)
    fixERMenu();

    // Also run whenever user hovers / focuses the Engagement Rings item
    var erNavItem = document.querySelector('a[href*="/collections/engagement-rings"]');
    if (erNavItem) {
      var li = erNavItem.closest('li');
      if (li) {
        ['mouseenter','focus','click','touchstart'].forEach(function(evt){
          li.addEventListener(evt, onNavOpen, {passive:true});
        });
      }
    }

    // Safety: run again when window resizes (theme can rebuild menus)
    window.addEventListener('resize', onNavOpen, {passive:true});
  });
})();
</script>
/* --- Force-center banner images inside ALL megamenus (safe) --- */
@media (min-width: 992px){
  /* 1) Make the banner blocks flex containers and center everything */
  .menu-dropdown__content--megamenu .megamenu-banner,
  .menu-dropdown__content--megamenu .banner,
  .menu-dropdown__content--megamenu .megamenu-banner > a,
  .menu-dropdown__content--megamenu .banner > a{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* 2) Make sure the actual image can be centered */
  .menu-dropdown__content--megamenu .megamenu-banner picture,
  .menu-dropdown__content--megamenu .banner picture{
    display: inline-block !important;
  }
  .menu-dropdown__content--megamenu .megamenu-banner img,
  .menu-dropdown__content--megamenu .banner img{
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* 3) Kill any left/right alignment coming from the theme */
  .menu-dropdown__content--megamenu .megamenu-banner *,
  .menu-dropdown__content--megamenu .banner *{
    float: none !important;
  }
}
@media (min-width: 992px){
  .mainmenu-item--JEWELRY .menu-dropdown__content--megamenu .menu-row{
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
    column-gap: 56px !important;
    row-gap: 28px !important;
    align-items: start !important;
  }
  .mainmenu-item--JEWELRY .menu-dropdown__content--megamenu .menu-row > [id^="shopify-block"]:nth-of-type(1){grid-column:1}
  .mainmenu-item--JEWELRY .menu-dropdown__content--megamenu .menu-row > [id^="shopify-block"]:nth-of-type(2){grid-column:2}
  .mainmenu-item--JEWELRY .menu-dropdown__content--megamenu .menu-row > [id^="shopify-block"]:nth-of-type(3){grid-column:3}
  .mainmenu-item--JEWELRY .menu-dropdown__content--megamenu .menu-row > [id^="shopify-block"]:nth-of-type(4){grid-column:4}
  .mainmenu-item--JEWELRY .menu-dropdown__content--megamenu .menu-row > [id^="shopify-block"]:nth-of-type(5){grid-column:1}
  .mainmenu-item--JEWELRY .menu-dropdown__content--megamenu .menu-row > [id^="shopify-block"]:nth-of-type(6){grid-column:2}

  .mainmenu-item--JEWELRY .menu-dropdown__content--megamenu .menu-row > [id^="shopify-block"]:nth-of-type(7),
  .mainmenu-item--JEWELRY .menu-dropdown__content--megamenu .menu-row > [id^="shopify-block"]:nth-of-type(8){
    grid-column: span 2 !important;
    justify-self: center !important;
    text-align: center !important;
    margin-top: 10px !important;
  }
  .mainmenu-item--JEWELRY .megamenu-heading{
    font-weight: 600 !important;
    text-transform: uppercase !important;
    margin: 0 0 14px !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  .mainmenu-item--JEWELRY .menu-list li{
    position: relative; padding-left: 18px !important; margin: 6px 0 !important; line-height: 1.5;
  }
  .mainmenu-item--JEWELRY .menu-list li::before{
    content:""; position:absolute; left:0; top:11px; width:6px; height:6px; border:2px solid #bfc6d3; border-radius:50%;
  }
  .mainmenu-item--JEWELRY .menu-list a{ color:#242a38 !important; text-decoration:none !important; }
  .mainmenu-item--JEWELRY .menu-list a:hover{ color:#0a2a63 !important; }

  .mainmenu-item--JEWELRY .menu-row > [id^="shopify-block"]:nth-of-type(7) .menu-list a,
  .mainmenu-item--JEWELRY .menu-row > [id^="shopify-block"]:nth-of-type(8) .menu-list a{
    display:inline-block !important; padding:12px 22px !important; border-radius:4px !important;
    background:#0a2a63 !important; color:#fff !important; font-weight:600 !important;
    text-transform:uppercase !important; letter-spacing:.02em !important;
  }
  .mainmenu-item--JEWELRY .menu-row > [id^="shopify-block"]:nth-of-type(7) .menu-list a:hover,
  .mainmenu-item--JEWELRY .menu-row > [id^="shopify-block"]:nth-of-type(8) .menu-list a:hover{ filter:brightness(1.07) }
}
/* ========= LOOSE DIAMONDS mega menu layout & alignment ========= */

/* 1) Two equal halves + vertical divider */
.megamenu-loose-diamonds {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  padding: 30px 0;
}

/* Divider line */
.megamenu-loose-diamonds::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 50%;
  width: 1px;
  background: #e5e7eb;
  pointer-events: none;
}

/* 2) Headings centered */
.megamenu-loose-diamonds .mm-title {
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* 3) Two-column list inside each half */
.megamenu-loose-diamonds .mm-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
}

/* 4) Icon + label row */
.megamenu-loose-diamonds .mm-link {
  display: grid;
  grid-template-columns: 22px auto;
  align-items: center;
  gap: 10px;
}

/* 5) Rainbow gradient for FANCY COLOR title */
.megamenu-loose-diamonds .mm-title.fancy {
  background: linear-gradient(90deg,#ff5db1,#ffb457,#9be15d,#29abe2,#9b59b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* 6) Mobile stack */
@media (max-width: 990px) {
  .megamenu-loose-diamonds {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .megamenu-loose-diamonds::before {
    display: none;
  }
}
.shop-by-shape .shape-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 28px;margin:10px 0 0;padding:0;list-style:none}
.shop-by-shape .shape-link{display:flex;align-items:center;gap:10px;text-decoration:none}
.shop-by-shape .shape-icon{width:24px;height:24px;display:grid;place-items:center;flex:0 0 24px}
.shop-by-shape .shape-icon img{width:24px;height:24px;display:block;filter:grayscale(100%);opacity:.9;transition:.2s}
.shop-by-shape .shape-link:hover .shape-icon img{filter:none;opacity:1;transform:translateY(-1px)}
/* === Icons for SHOP BY SHAPE (Engagement Rings mega menu) === */
/* Base look for each shape row (only applied to the shapes listed below) */
.menu-dropdown__content a[href*="/collections/round"],
.menu-dropdown__content a[href*="/collections/pear"],
.menu-dropdown__content a[href*="/collections/oval"],
.menu-dropdown__content a[href*="/collections/marquise"],
.menu-dropdown__content a[href*="/collections/princess"],
.menu-dropdown__content a[href*="/collections/heart"],
.menu-dropdown__content a[href*="/collections/radiant"],
.menu-dropdown__content a[href*="/collections/emerald"],
.menu-dropdown__content a[href*="/collections/asscher"],
.menu-dropdown__content a[href*="/collections/cushion"],
.menu-dropdown__content a[href*="/collections/hexagon"],
.menu-dropdown__content a[href*="/collections/octagon"],
.menu-dropdown__content a[href*="/collections/lily"],
.menu-dropdown__content a[href*="/collections/trapazoid"],
.menu-dropdown__content a[href*="/collections/cadillac"],
.menu-dropdown__content a[href*="/collections/half-moon"],
.menu-dropdown__content a[href*="/collections/triangle"],
.menu-dropdown__content a[href*="/collections/old-mine-cut"],
.menu-dropdown__content a[href*="/collections/baguette"] {
  position: relative;
  display: flex;
  align-items: center;
  gap: .4rem;
  padding-left: 32px;         /* space for the icon */
  line-height: 1.9;           /* comfortable spacing */
}

/* Icon base */
.menu-dropdown__content a[href*="/collections/round"]::before,
.menu-dropdown__content a[href*="/collections/pear"]::before,
.menu-dropdown__content a[href*="/collections/oval"]::before,
.menu-dropdown__content a[href*="/collections/marquise"]::before,
.menu-dropdown__content a[href*="/collections/princess"]::before,
.menu-dropdown__content a[href*="/collections/heart"]::before,
.menu-dropdown__content a[href*="/collections/radiant"]::before,
.menu-dropdown__content a[href*="/collections/emerald"]::before,
.menu-dropdown__content a[href*="/collections/asscher"]::before,
.menu-dropdown__content a[href*="/collections/cushion"]::before,
.menu-dropdown__content a[href*="/collections/hexagon"]::before,
.menu-dropdown__content a[href*="/collections/octagon"]::before,
.menu-dropdown__content a[href*="/collections/lily"]::before,
.menu-dropdown__content a[href*="/collections/trapazoid"]::before,
.menu-dropdown__content a[href*="/collections/cadillac"]::before,
.menu-dropdown__content a[href*="/collections/half-moon"]::before,
.menu-dropdown__content a[href*="/collections/triangle"]::before,
.menu-dropdown__content a[href*="/collections/old-mine-cut"]::before,
.menu-dropdown__content a[href*="/collections/baguette"]::before {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .9;
  filter: grayscale(100%);
}
.menu-dropdown__content a:hover::before { filter: none; opacity: 1; }

/* Individual mappings */
.menu-dropdown__content a[href*="/collections/round"]::before        { background-image: url({{ '1.svg'  | asset_url }}); }
.menu-dropdown__content a[href*="/collections/pear"]::before         { background-image: url({{ '2.svg'  | asset_url }}); }
.menu-dropdown__content a[href*="/collections/oval"]::before         { background-image: url({{ '3.svg'  | asset_url }}); }
.menu-dropdown__content a[href*="/collections/marquise"]::before     { background-image: url({{ '4.svg'  | asset_url }}); }
.menu-dropdown__content a[href*="/collections/princess"]::before     { background-image: url({{ '5.svg'  | asset_url }}); }
.menu-dropdown__content a[href*="/collections/heart"]::before        { background-image: url({{ '6.svg'  | asset_url }}); }
.menu-dropdown__content a[href*="/collections/radiant"]::before      { background-image: url({{ '7.svg'  | asset_url }}); }
.menu-dropdown__content a[href*="/collections/emerald"]::before      { background-image: url({{ '8.svg'  | asset_url }}); }
.menu-dropdown__content a[href*="/collections/asscher"]::before      { background-image: url({{ '9.svg'  | asset_url }}); }
.menu-dropdown__content a[href*="/collections/cushion"]::before      { background-image: url({{ '10.svg' | asset_url }}); }
.menu-dropdown__content a[href*="/collections/hexagon"]::before      { background-image: url({{ '11.svg' | asset_url }}); }
.menu-dropdown__content a[href*="/collections/octagon"]::before      { background-image: url({{ '12.svg' | asset_url }}); }
.menu-dropdown__content a[href*="/collections/lily"]::before         { background-image: url({{ '13.svg' | asset_url }}); }
.menu-dropdown__content a[href*="/collections/trapazoid"]::before    { background-image: url({{ '14.svg' | asset_url }}); }
.menu-dropdown__content a[href*="/collections/cadillac"]::before     { background-image: url({{ '15.svg' | asset_url }}); }
.menu-dropdown__content a[href*="/collections/half-moon"]::before    { background-image: url({{ '16.svg' | asset_url }}); }
.menu-dropdown__content a[href*="/collections/triangle"]::before     { background-image: url({{ '17.svg' | asset_url }}); }
.menu-dropdown__content a[href*="/collections/old-mine-cut"]::before { background-image: url({{ '18.svg' | asset_url }}); }
.menu-dropdown__content a[href*="/collections/baguette"]::before     { background-image: url({{ '19.svg' | asset_url }}); }
/* --- Shop by Shape icons --- */
.shop-by-shape li,
.shop-by-shape .menu_item,
.shop-by-shape .menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 28px;
}

.shape-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
}
.shape-icon img { width: 100%; height: 100%; display: block; }
/* == Mega menu styles == */
.mega-menu {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  background: #fff;
  padding: 40px 60px;
  align-items: start;
  color: #222;
  z-index: 9999; /* ensure above header */
}
.mega-column { display:flex; flex-direction: column; gap: 20px; }
.mega-column .thumb img { max-width: 220px; width:100%; object-fit:cover; }

.center { text-align:center; }
.col-title { font-weight:700; letter-spacing:2px; margin-bottom:10px; }

.shapes-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px 40px; justify-items:center; }

.shape-list, .style-list, .metal-list { list-style:none; margin:0; padding:0; }
.shape-list li, .style-list li, .metal-list li {
  display:flex; align-items:center; gap:12px; margin:10px 0; font-size:14px;
}

.icon-wrap { width:34px; height:34px; display:inline-flex; align-items:center; justify-content:center; }
.icon { width:22px; height:22px; fill:none; stroke:#222; stroke-width:1.2; vector-effect:non-scaling-stroke; }

.shape-list a { color:#222; text-decoration:none; }
.shape-list a:hover { text-decoration:underline; }

.cta-row { display:flex; gap:20px; justify-content:center; margin-top:20px; }
.btn { background:#0b1440; color:#fff; padding:12px 18px; text-decoration:none; border-radius:4px; font-size:13px; }

@media (max-width:900px) {
  .mega-menu { grid-template-columns:1fr; padding:24px; }
  .shapes-grid { grid-template-columns:1fr 1fr; gap:8px; }
}
