/** Shopify CDN: Minification failed

Line 227:2 Unexpected "@font-face"
Line 236:0 Expected "}" to go with "{"

**/
/* =====================================
   MYLIKA – IMAGE GALLERY GRID
===================================== */

.mylika-gallery {
  width: 100%;
}

.mylika-gallery__inner {
  max-width: 1400px; /* 👈 BIGGER section */
  margin: 0 auto;
  padding: 0 24px;
}

.mylika-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.mylika-gallery__item {
  display: block;
  width: 100%;
}

.mylika-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* =====================================
   MYLIKA – EDITORIAL PRODUCT CARD
===================================== */

.mylika-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px; /* smaller space between cards */
}


/* Card container */
.mylika-card {
  background: #ffffff;
  border-radius: 36px; /* bigger radius = bigger feel */
  padding: 0;
  box-shadow: 0 18px 60px rgba(0,0,0,0.08);
  overflow: hidden;
  min-height: 620px; /* 👈 forces BIG cards */
  display: flex;
  flex-direction: column;
}

/* Image */
.mylika-card__image {
  border-radius: 20px;
  overflow: hidden;
}

.mylika-card__image {
  height: 380px; /* 👈 BIG hero image */
}

.mylika-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.mylika-card__content {
  text-align: center;
  padding: 26px 22px 28px;
}

.mylika-card__title {
  font-size: 20px; /* bigger */
  margin: 14px 0 8px;
}

/* Price */
.mylika-card__price {
  font-size: 20px;
  margin-bottom: 22px;
}

/* Button */
/* =====================================
   MYLIKA BUTTON – REFINED COLORS
===================================== */

.mylika-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 0;
  border-radius: 999px;

  background: #f7f5f0;           /* parchment ivory */
  border: 1.5px solid #24344d;   /* MYLIKA navy */

  color: #24344d;                /* MYLIKA navy */
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;

  transition: 
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
}

/* Hover – confident but calm */
.mylika-card__button:hover {
  background: #24344d; /* MYLIKA navy */
  color: #ffffff;
  border-color: #24344d;
}

.mylika-card__button:hover {
  background: #e5e5e5;
}

/* =====================================
   SPACE BETWEEN SECTIONS (VERTICAL)
===================================== */

.mylika-gallery {
  margin-top: 60px;    /* space from section above */
  margin-bottom: 140px; /* space to section below */
}

/* =====================================
   LUXURY HOVER ANIMATION – IMAGE & CARD
===================================== */

/* Smooth base transition */
.mylika-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Image transition */
.mylika-card__image img {
  transition: transform 0.8s ease;
}

/* Hover effect */
.mylika-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* Image zoom on hover */
.mylika-card:hover .mylika-card__image img {
  transform: scale(1.08);
}


/* =====================================
   MOBILE FIX – MYLIKA GALLERY
===================================== */

@media (max-width: 768px) {

  /* 1️⃣ Switch to 2 columns on mobile */
  .mylika-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 12px;
    row-gap: 20px;
  }

  /* 2️⃣ Reduce image height (VERY IMPORTANT) */
  .mylika-card__image {
    height: 220px; /* instead of 380px */
  }

  /* 3️⃣ Fix broken vertical text */
  .mylika-card__title {
    font-size: 15px;
    line-height: 1.3;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  /* 4️⃣ Reduce card height */
  .mylika-card {
    min-height: auto;
    border-radius: 26px;
  }

  /* 5️⃣ Smaller content padding */
  .mylika-card__content {
    padding: 16px 14px 18px;
  }

  /* 6️⃣ Smaller button for mobile */
  .mylika-card__button {
    padding: 10px 18px;
    font-size: 13px;
    letter-spacing: 0.06em;
  }
}

/* =====================================
   EXTRA SMALL PHONES (1 COLUMN)
===================================== */
@media (max-width: 420px) {
  .mylika-gallery__grid {
    grid-template-columns: 1fr;
  }

  .mylika-card__image



  @font-face {
  font-family: 'MyCrestFont';
  src: url('/cdn/shop/files/MADE-Mirage-Regular-PERSONAL-USE.otf?v=1770053509') format('otf');
  font-display: swap;
}

.image-with-text__heading {
  font-family: 'MyCrestFont', serif;
}
