/** Shopify CDN: Minification failed

Line 7:0 Unexpected "`"
Line 199:0 Unexpected "`"

**/
```css
/*!
 * Almagrove Jewellers — Shopify theme
 * Handcrafted by Sector 7 · https://sector7hq.co
 * © 2026 Sector7HQ Ltd. All rights reserved.
 */

/* Almagrove category grid — clean tiles with a caption box overlay at bottom */

.alm-cats {
  margin: 0;
  padding: 0;
  background: rgb(var(--color-background));
}

.alm-cats__header {
  max-width: var(--page-width, 144rem);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 7rem) 2rem;
}

.alm-cats__heading {
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: clamp(2rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
}

.alm-cats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.alm-cats__grid--cols-2 {
  grid-template-columns: 1fr 1fr;
}

.alm-cats__grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.alm-cats__grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 989px) {
  .alm-cats__grid--cols-3,
  .alm-cats__grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 549px) {
  .alm-cats__grid--cols-2,
  .alm-cats__grid--cols-3,
  .alm-cats__grid--cols-4 {
    grid-template-columns: 1fr;
  }
}

.alm-cats__item {
  margin: 0;
  padding: 0;
}

.alm-cats__tile {
  position: relative;
  display: block;

  /* Square tiles on all screen sizes */
  aspect-ratio: 1 / 1;

  overflow: hidden;
  isolation: isolate;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  background: rgba(var(--color-foreground), 0.04);
}

/* Keep four-column layouts square as well */
.alm-cats__grid--cols-4 .alm-cats__tile {
  aspect-ratio: 1 / 1;
}

/* Square tiles on mobile */
@media (max-width: 549px) {
  .alm-cats__tile {
    aspect-ratio: 1 / 1;
  }
}

.alm-cats__image {
  /*
   * Fill the tile completely.
   * `cover` crops the image symmetrically so every image
   * occupies the same square dimensions.
   */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  transition: transform 0.6s ease;
}

.alm-cats__tile:hover .alm-cats__image {
  transform: scale(1.04);
}

/* Bottom-centred caption box, cream background, dark text — matches live design */

.alm-cats__caption {
  position: absolute;
  left: 50%;
  bottom: clamp(1.6rem, 3%, 3.2rem);
  transform: translateX(-50%);
  min-width: min(70%, 28rem);
  max-width: calc(100% - 3.2rem);
  padding: 1.4rem 2.4rem 1.6rem;
  text-align: center;
  background: rgba(var(--color-background), 0.94);
  color: rgb(var(--color-foreground));
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}

.alm-cats__title {
  font-family: var(--font-heading-family);
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.2;
  display: block;
}

.alm-cats__count {
  font-family: var(--font-body-family);
  font-size: 0.55em;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.4rem;
  vertical-align: top;
  position: relative;
  top: 0.2em;
}

.alm-cats__btn {
  display: inline-block;
  padding: 0.7rem 2.2rem;
  font-family: var(--font-body-family);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  line-height: 1;
  transition: background-color 200ms ease, color 200ms ease;
}

.alm-cats__tile:hover .alm-cats__btn {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

@media (max-width: 749px) {
  .alm-cats__caption {
    bottom: 1.6rem;
    padding: 1rem 1.6rem 1.2rem;
    min-width: min(80%, 24rem);
    gap: 0.8rem;
  }

  .alm-cats__btn {
    font-size: 1rem;
    padding: 0.6rem 1.8rem;
  }
}
```
