/** Shopify CDN: Minification failed

Line 50:7 Expected ":"
Line 106:1 Expected "}" to go with "{"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/


/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  /* --- Desktop dropdown for Earrings (does NOT affect mobile) --- */
@media screen and (min-width: 768px) {

  /* Navigation layout */
  .header .site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
  }

  .header .site-nav ul li {
    position: relative;
  }

  /* Main menu links */
  .header .site-nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
  }

  /* Dropdown hidden by default */
  .header .site-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    pad
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  /* Force hero text to bottom */
#shopify-section-template--19388144451741__1646028739ae283905 
.t4s-content-position {
  position: absolute !important;
  bottom: 30px !important;
  top: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100% !important;
  display: block !important; /* cancel flex centering */
  text-align: center !important;
}/* Mobile only - make hero heading black */
@media (max-width: 767px) {
  .t4s-content .t4s-heading {
    color: #000 !important; /* black text */
  }
}/* Mobile only - change font color */
@media (max-width: 767px) {
  .YOUR-TEXT-CLASS {
    color: #000 !important; /* black text */
  }
}/* 📱 Mobile only: Move text below the image for this section */
@media (max-width: 480px) {
  .image-with-text__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .image-with-text__content h2,
  .image-with-text__content p {
    order: 2; /* Text goes below */
    text-align: center;
    margin-top: 15px;
  }

  .image-with-text__content img {
    order: 1; /* Image goes first */
    margin: 0 auto;
  }
}
}