/** Shopify CDN: Minification failed

Line 23:13 Expected identifier but found whitespace
Line 23:15 Unexpected "{"
Line 23:25 Expected ":"
Line 24:15 Expected identifier but found whitespace
Line 24:17 Unexpected "{"
Line 24:27 Expected ":"
Line 25:17 Expected identifier but found whitespace
Line 25:19 Unexpected "{"
Line 25:29 Expected ":"
Line 26:16 Expected identifier but found whitespace
... and 17 more hidden warnings

**/
/* ============================================
   Aela Daily - Shopify Theme
   Wabi-Sabi Aesthetic Design System
   ============================================ */

/* === CSS Custom Properties === */
:root {
  --color-bg: {{ settings.color_bg }};
  --color-text: {{ settings.color_text }};
  --color-accent: {{ settings.color_accent }};
  --color-muted: {{ settings.color_muted }};
  --color-body: {{ settings.color_body }};
  --color-white: #FFFFFF;

  --font-heading: {{ settings.type_heading_font.family }}, {{ settings.type_heading_font.fallback_families }};
  --font-body: {{ settings.type_body_font.family }}, {{ settings.type_body_font.fallback_families }};

  --max-width: 1200px;
  --gutter: 40px;
  --spacing-xl: 60px;
  --spacing-lg: 40px;
  --spacing-md: 24px;
  --spacing-sm: 16px;
  --spacing-xs: 8px;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 24px;

  --shadow-sm: 0 2px 8px rgba(31, 27, 22, 0.06);
  --shadow-md: 0 4px 16px rgba(31, 27, 22, 0.08);

  --transition: 0.25s ease;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

/* === Accessibility === */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--color-text);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.skip-to-content:focus {
  top: 16px;
}

/* === Utility Classes === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-spacing {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #7A5F3E;
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.btn-full {
  width: 100%;
}

/* === Header === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-muted);
  padding: 16px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.header__logo-icon {
  color: var(--color-text);
  flex-shrink: 0;
}

.header__logo-text {
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-accent);
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text);
  position: relative;
}

.header__cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: all var(--transition);
}

/* Mobile Nav Open */
.header__nav--open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  right: 0;
  background: var(--color-bg);
  padding: 24px;
  gap: 16px;
  box-shadow: var(--shadow-md);
  z-index: 99;
}

.no-scroll {
  overflow: hidden;
}

/* === Hero Section === */
.hero {
  position: relative;
  background: var(--color-muted);
  padding: 100px 0 120px;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(139, 111, 71, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(31, 27, 22, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #E8E4DF 0%, #D9D3CC 100%);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31, 27, 22, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.4;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--color-body);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero__cta {
  margin-top: 12px;
}

/* === Product Card === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  background: var(--color-muted);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__info {
  padding: 16px;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
}

.product-card__compare-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

/* === Section Headings === */
.section-heading {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-heading__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.section-heading__subtitle {
  font-size: 16px;
  color: var(--color-body);
}

/* === Footer === */
.footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 60px 0 30px;
  margin-top: var(--spacing-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__brand {
  font-size: 14px;
  color: #8B8B8B;
  line-height: 1.8;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 14px;
  color: #8B8B8B;
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #8B8B8B;
}

.footer__payment-icons {
  display: flex;
  gap: 8px;
  font-size: 24px;
}

/* === Product Detail === */
.product-main {
  display: flex;
  gap: 60px;
  padding: 60px 0;
}

.product-main__media {
  flex: 0 0 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-muted);
}

.product-main__media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.product-main__info {
  flex: 1;
}

.product-main__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.product-main__price {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.product-main__description {
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-main__specs {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.product-main__specs h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-main__specs p {
  font-size: 13px;
  color: var(--color-body);
  margin-bottom: 6px;
}

.product-main__specs p:last-child {
  margin-bottom: 0;
}

.product-form__quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.product-form__quantity label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-body);
}

.product-form__quantity input {
  width: 70px;
  padding: 10px;
  border: 1px solid var(--color-muted);
  border-radius: var(--radius-sm);
  font-size: 16px;
  text-align: center;
  font-family: var(--font-body);
}

.product-form__add-to-cart {
  width: 100%;
  max-width: 300px;
}

/* === Collection Page === */
.collection-banner {
  background: var(--color-muted);
  padding: 80px 0;
  text-align: center;
}

.collection-banner__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.collection-banner__description {
  font-size: 16px;
  color: var(--color-body);
  max-width: 500px;
  margin: 0 auto;
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-muted);
  margin-bottom: 32px;
}

.collection-toolbar__sort select {
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--color-muted);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235A5048'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* === Cart === */
.cart-page {
  padding: 60px 0;
}

.cart-page__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.cart__empty {
  text-align: center;
  padding: 80px 0;
}

.cart__empty-icon {
  font-size: 64px;
  margin-bottom: 16px;
  color: var(--color-muted);
}

.cart__empty-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cart__empty-subtitle {
  font-size: 14px;
  color: var(--color-body);
  margin-bottom: 24px;
}

.cart__items {
  margin-bottom: 32px;
}

.cart-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-muted);
  align-items: center;
}

.cart-item__image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-muted);
  flex-shrink: 0;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__details {
  flex: 1;
}

.cart-item__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-item__variant {
  font-size: 13px;
  color: var(--color-body);
  margin-bottom: 8px;
}

.cart-item__quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__quantity-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-muted);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cart-item__quantity-value {
  font-size: 14px;
  font-weight: 500;
  min-width: 24px;
  text-align: center;
}

.cart-item__remove {
  font-size: 12px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  margin-top: 8px;
}

.cart-item__price {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.cart-summary {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--color-body);
}

.cart-summary__row--total {
  border-top: 2px solid var(--color-text);
  padding-top: 16px;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.cart-summary__checkout {
  margin-top: 20px;
}

/* === FAQ === */
.faq-section {
  padding: 60px 0;
}

.faq-categories {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-category-btn {
  padding: 10px 24px;
  border: 1px solid var(--color-muted);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--color-body);
}

.faq-category-btn:hover,
.faq-category-btn.active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item__arrow {
  font-size: 12px;
  transition: transform var(--transition);
}

.faq-item.open .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item__answer {
  display: none;
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.8;
}

.faq-item.open .faq-item__answer {
  display: block;
}

/* === Contact === */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-body);
  margin-bottom: 6px;
}

.contact-form__group input,
.contact-form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-muted);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact-form__group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 14px;
  color: var(--color-body);
}

.contact-hours {
  margin-top: 12px;
}

.contact-hours__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-hours__text {
  font-size: 14px;
  color: var(--color-body);
}

/* === Shipping === */
.shipping-section {
  padding: 60px 0;
}

.shipping-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.shipping-table th,
.shipping-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
}

.shipping-table th {
  background: var(--color-text);
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}

.shipping-table td {
  border-bottom: 1px solid var(--color-muted);
  color: var(--color-body);
}

.shipping-table tr:last-child td {
  border-bottom: none;
}

.shipping-table .highlight {
  color: var(--color-accent);
  font-weight: 700;
}

.returns-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.returns-step {
  text-align: center;
}

.returns-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 auto 16px;
}

.returns-step__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.returns-step__desc {
  font-size: 13px;
  color: var(--color-body);
  line-height: 1.6;
}

/* === About === */
.about-section {
  padding: 60px 0;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-content p {
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin: 32px 0 16px;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cart-item {
    flex-wrap: wrap;
  }

  .returns-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 24px;
    --spacing-xl: 40px;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .hero__title {
    font-size: 38px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-card__title {
    font-size: 13px;
  }

  .product-card__price {
    font-size: 14px;
  }

  .product-main {
    flex-direction: column;
    gap: 32px;
  }

  .product-main__media {
    flex: 0 0 auto;
  }

  .product-main__media img {
    height: auto;
    aspect-ratio: 1;
  }

  .product-main__title {
    font-size: 22px;
  }

  .product-main__price {
    font-size: 24px;
  }

  .product-form__add-to-cart {
    max-width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .shipping-table {
    font-size: 13px;
  }

  .shipping-table th,
  .shipping-table td {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 16px;
    --spacing-xl: 32px;
    --spacing-lg: 24px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .section-heading__title {
    font-size: 24px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cart-page__title {
    font-size: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .collection-banner {
    padding: 60px 0;
  }

  .collection-banner__title {
    font-size: 28px;
  }

  .returns-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* === Hide Shopify default badges === */
.shopify-name-fade,
.shopify-buy-frame,
.shopify-buy__modal,
.shopify-buy__toggle,
.shopify-challenge__container iframe,
iframe[name="__shopify-buy-frame"],
#admin-bar-iframe,
.shopify-section-preload,
#__shopify-cart-v2,
#shopify-buy-widget,
.shopify-cleanslate,
a[href*="shopify"][class*="made-with"],
.made-with-shopify,
.shopify-badges,
.shopify-attribution,
p[data-shopify-attribution],
.shopify-powered,
#preview-bar-iframe,
.shopify-app-block {
  display: none !important;
}

.header__cart-count:empty,
.header__cart-count[data-cart-count="0"],
.header__cart-count[hidden] {
  display: none;
}

.header__cart-count {
  min-width: 18px;
  padding: 0 5px;
}
