/** Shopify CDN: Minification failed

Line 56:19 Unexpected "*"

**/
/* ============================================
   ROM TIL ROM — Custom Theme Overrides
   Scandinavian Minimal Aesthetic
   ============================================ */

/* --- Typography Overrides --- */
:root {
  --font-body-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Refined heading styles */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5 {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.h0 {
  font-weight: 400;
  letter-spacing: -0.03em;
}

/* Body text refinement */
body {
  letter-spacing: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Spacing & Layout --- */
.page-width {
  padding: 0 2.4rem;
}

@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 4rem;
  }
}

@media screen and (min-width: 990px) {
  .page-width {
    padding: 0 5rem;
  }
}

/* Generous section spacing */
.section-template--*,
.shopify-section {
  --spacing-sections-desktop: 64px;
  --spacing-sections-mobile: 40px;
}

/* --- Header Refinements --- */
.header {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

@media screen and (min-width: 990px) {
  .header {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Clean header typography */
.header__menu-item {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Subtle header border */
.header-wrapper--border-bottom {
  border-bottom: 1px solid rgb(var(--color-foreground), 0.08);
}

/* Header icons — thinner, more refined */
.header__icon .icon {
  width: 2rem;
  height: 2rem;
}

/* Cart count bubble — minimal style */
.cart-count-bubble {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  font-size: 1rem;
  font-weight: 500;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
}

/* --- Buttons — Sharp, Minimal --- */
.button,
button,
.shopify-challenge__button {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  border-radius: 0;
  transition: all 0.2s ease;
}

.button:hover,
button:hover {
  opacity: 0.85;
}

/* Secondary button — outlined */
.button--secondary {
  background-color: transparent;
  border: 1px solid rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
}

.button--secondary:hover {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

/* --- Product Cards — Clean & Airy --- */
.card-wrapper {
  margin-bottom: 0.8rem;
}

.card__heading {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
}

.card__heading a {
  text-decoration: none;
}

/* Product card vendor/brand display */
.card__information .caption-with-letter-spacing {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.4rem;
}

/* Price styling */
.price-item {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0;
}

/* Remove card borders and shadows for clean look */
.card--card {
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.card--standard .card__inner {
  border: none;
  box-shadow: none;
}

/* Subtle hover effect on product images */
.card__media .media img {
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.card-wrapper:hover .card__media .media img {
  transform: scale(1.03);
}

.card__media {
  overflow: hidden;
}

/* --- Collection Cards --- */
.collection-card-wrapper .card__heading {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* --- Image Banner / Hero --- */
.banner__heading {
  font-weight: 400;
  letter-spacing: -0.03em;
}

.banner__text {
  font-size: 1.5rem;
  font-weight: 300;
  max-width: 50rem;
}

.banner__box {
  padding: 3rem;
}

@media screen and (min-width: 750px) {
  .banner__box {
    padding: 5rem;
  }
}

/* --- Collection Page --- */
.collection-hero__title {
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Facets/filters — cleaner styling */
.facets__label {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Product Page --- */
.product__title {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media screen and (min-width: 750px) {
  .product__title {
    font-size: 3.2rem;
  }
}

.product__text {
  font-size: 1.4rem;
  line-height: 1.7;
}

/* Vendor/brand on product page */
.product__text .caption-with-letter-spacing {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Variant pills */
.product-form__input--pill .product-form__input {
  border-radius: 0;
  border: 1px solid rgb(var(--color-foreground), 0.2);
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0.8rem 1.6rem;
}

/* --- Footer Refinements --- */
.footer {
  border-top: 1px solid rgb(var(--color-foreground), 0.08);
}

.footer-block__heading {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.footer-block__details-content .link {
  font-size: 1.3rem;
  font-weight: 400;
}

/* Newsletter input in footer */
.footer__newsletter .field__input {
  border-radius: 0;
  border: 1px solid rgb(var(--color-foreground), 0.2);
  font-size: 1.3rem;
}

/* --- Newsletter Section --- */
.newsletter-section .newsletter-form__field-wrapper {
  max-width: 44rem;
  margin: 0 auto;
}

/* --- General Refinements --- */

/* Links — clean underline on hover */
a:not(.button) {
  text-underline-offset: 0.3em;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.6;
}

/* Announcement bar */
.announcement-bar {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgb(var(--color-foreground), 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(var(--color-foreground), 0.3);
}

/* Selection color */
::selection {
  background: rgb(var(--color-foreground), 0.08);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* --- Mega Menu Refinements --- */
.mega-menu__content {
  padding: 3.2rem 0;
}

.mega-menu__link {
  font-size: 1.3rem;
  font-weight: 400;
  padding: 0.6rem 0;
}

.mega-menu__link--level-2 {
  font-weight: 400;
  opacity: 0.7;
}

.mega-menu__link--level-2:hover {
  opacity: 1;
}

/* --- Search --- */
.search__input {
  border-radius: 0;
  font-size: 1.4rem;
}

/* --- Cart Drawer --- */
.cart-drawer__head {
  border-bottom: 1px solid rgb(var(--color-foreground), 0.08);
}

/* --- Responsive Grid Improvements --- */
@media screen and (min-width: 990px) {
  .collection .grid--4-col-desktop {
    --grid-desktop-horizontal-spacing: 20px;
    --grid-desktop-vertical-spacing: 40px;
  }
}

/* --- Print Styles --- */
@media print {
  .header-wrapper,
  .footer,
  .announcement-bar-section {
    display: none;
  }
}
