/** Shopify CDN: Minification failed

Line 1493:16 Expected identifier but found whitespace
Line 1493:44 Unexpected "{"
Line 1493:53 Expected ":"
Line 1493:72 Expected ":"
Line 1494:26 Expected identifier but found whitespace
Line 1494:28 Expected identifier but found "%"
Line 1494:81 Expected identifier but found "%"
Line 1494:97 Expected identifier but found "%"
Line 1525:4 Unexpected "{"
Line 1525:5 Expected identifier but found "%"
... and 2 more hidden warnings

**/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Stack+Sans+Notch:wght@400;500;700&display=swap');

/* ==========================================================================
   idecorr Brand Styling System (Shopify CSS Tokens)
   ========================================================================== */

:root {
  /* Colors */
  --bg-primary: #FDFDFB;      /* Warm Linen / Canvas white */
  --bg-secondary: #E7E2DC;    /* Soft Beige / Greige */
  --color-taupe: #7E766B;     /* Signature Earthy Taupe */
  --color-black: #141414;     /* Premium Carbon Black */
  --color-border: #C3C3C3;    /* Clean Architectural Grid Line */
  --color-white: #FFFFFF;
  --color-gray-light: #F9F8F7;
  --color-gray-dark: #5A5A5A;
  
  /* Fonts */
  --font-heading: 'Stack Sans Notch', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing & Borders */
  --border-thin: 1px solid var(--color-border);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container-width: 1440px;
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--color-black);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Fluid Typography Mapped to Phone/Tablet/Desktop PDFs
   ========================================================================== */

h1, .h1 {
  font-family: var(--font-heading);
  /* Phone: ~32px (2rem), Tablet: ~43px (2.7rem), Desktop: ~64px (4rem) */
  font-size: clamp(2rem, 5.5vw, 4rem); 
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h2, .h2 {
  font-family: var(--font-heading);
  /* Phone: ~22px (1.38rem), Tablet: ~24px (1.5rem), Desktop: ~40px (2.5rem) */
  font-size: clamp(1.35rem, 3.2vw, 2.5rem); 
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}

h3, .h3 {
  font-family: var(--font-heading);
  /* Phone: ~18px (1.125rem), Tablet: ~22px (1.375rem), Desktop: ~36px (2.25rem) */
  font-size: clamp(1.125rem, 2.5vw, 2.25rem); 
  font-weight: 500;
  line-height: 1.25;
}

h4, .h4 {
  font-family: var(--font-heading);
  /* Phone: ~16px (1rem), Tablet: ~18px (1.125rem), Desktop: ~24px (1.5rem) */
  font-size: clamp(1rem, 2vw, 1.5rem); 
  font-weight: 500;
  line-height: 1.35;
}

p, .body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-black);
}

.body-large {
  /* Phone: ~14px (0.875rem), Tablet: ~15px (0.95rem), Desktop: ~20px (1.25rem) */
  font-size: clamp(0.95rem, 1.5vw, 1.25rem); 
  line-height: 1.5;
  font-weight: 300;
}

.text-muted {
  color: var(--color-gray-dark);
}

.uppercase {
  text-transform: uppercase;
}

/* ==========================================================================
   Layout Helpers
   ========================================================================== */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

.grid-5-col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

@media (max-width: 1024px) {
  .grid-5-col {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .container {
    padding: 0 4%;
  }
}

@media (max-width: 768px) {
  .grid-5-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3-col, .grid-2-col {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 24px;
  }
}

/* ==========================================================================
   Borders & Grid Dividers
   ========================================================================== */

.border-bottom {
  border-bottom: var(--border-thin);
}

.border-top {
  border-top: var(--border-thin);
}

.border-all {
  border: var(--border-thin);
}

/* Reusable Grid divider class */
.grid-divider {
  border-top: var(--border-thin);
  border-bottom: var(--border-thin);
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--color-black);
  padding-bottom: 4px;
  transition: var(--transition-smooth);
}

.btn-link:hover {
  border-bottom-color: var(--color-taupe);
  color: var(--color-taupe);
}

.btn-primary {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 12px 28px;
  border: 1px solid var(--color-black);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-black);
}

/* ==========================================================================
   Micro-animations & Interactive States
   ========================================================================== */

.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-zoom:hover img {
  transform: scale(1.05);
}

.fade-in-on-hover {
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.fade-in-on-hover:hover {
  opacity: 1;
}


/* ==========================================================================
   Styles from: product-card.liquid
   ========================================================================== */

.idecorr-product-card {
      background-color: transparent;
      border: none;
      display: flex;
      flex-direction: column;
      position: relative;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      transition: var(--transition-smooth);
    }
    
    .idecorr-product-card__media {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: #ECECEC;
      aspect-ratio: 1 / 1;
      border-radius: 12px; /* Smooth rounded corners matching Figma design */
    }
    
    .idecorr-product-card__media.portrait {
      aspect-ratio: 3 / 4;
      border-radius: 12px;
    }
    
    .idecorr-product-card__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .idecorr-product-card:hover .idecorr-product-card__image {
      transform: scale(1.03);
    }
    
    .idecorr-product-card__badges {
      position: absolute;
      top: 12px;
      left: 12px;
      display: flex;
      flex-direction: column;
      z-index: 2;
    }
    
    /* Capsule shapes matching Figma designs */
    .idecorr-product-card__badge {
      font-family: var(--font-body); /* Clean body font (Inter) */
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: none;
      padding: 4px 12px;
      border-radius: 100px;
      display: inline-block;
      background-color: #C4A07E; /* Soft gold-taupe from Figma */
      color: var(--color-white);
    }
    
    .idecorr-product-card__content {
      padding: 12px 0 0 0; /* Clean borderless padding spacing */
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
      border-top: none;
    }
    
    .idecorr-product-card__info {
      margin-bottom: 6px;
    }
    
    /* Title typography: Clean body font (Inter) */
    .idecorr-product-card__title {
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--color-black);
      line-height: 1.35;
      margin-bottom: 4px;
      text-transform: none; /* No forced uppercase */
    }
    
    .idecorr-product-card__subtitle {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--color-gray-dark);
      font-weight: 400;
      line-height: 1.4;
    }
    
    .idecorr-product-card__price-wrapper {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: auto;
    }
    
    .idecorr-product-card__price {
      font-family: var(--font-body);
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--color-black);
    }
    
    /* Compare-at price: styled in a beautiful soft gold-taupe accent */
    .idecorr-product-card__price--compare {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: #C4A07E; /* Soft gold-taupe from Figma */
      text-decoration: line-through;
      font-weight: 400;
    }

/* ==========================================================================
   Styles from: about-pillars.liquid
   ========================================================================== */

.idecorr-about {
    position: relative;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-bottom: var(--border-thin);
  }

  .idecorr-about__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .idecorr-about__wrapper {
    position: relative;
    z-index: 2;
  }

  /* Top Intro Row layout */
  .idecorr-about__intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
  }

  /* Headings & Texts are White (#FFFFFF) to pop elegantly against the room background photo */
  .idecorr-about__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #FFFFFF;
  }

  .idecorr-about__intro-text {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.55;
    font-weight: 400;
    color: #FFFFFF;
  }

  /* Pillars wrapper - no border top since they float as card modules */
  .idecorr-about__pillars-wrapper {
    padding-top: 20px;
  }

  .idecorr-about__pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* Card gap */
    width: 100%;
  }

  /* Floating Frosted-Glass Card Modules */
  .idecorr-about__pillar {
    background: rgba(253, 253, 252, 0.85); /* Semi-translucent warm white */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    transition: var(--transition-smooth);
  }

  .idecorr-about__pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    background: rgba(253, 253, 252, 0.9);
  }

  .idecorr-about__pillar-icon-wrapper {
    display: flex;
    align-items: center;
  }

  /* Rich brown capsule circular icon wrapper */
  .idecorr-about__pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #4B2805; /* Rich wood-brown from design */
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Pillar title: Rich gold-brown (#4B2805) */
  .idecorr-about__pillar-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 500;
    line-height: 1.35;
    text-transform: none; /* Mixed-case as in screenshot */
    color: #4B2805;
  }

  /* Pillar description: Soft gold-brown (#8A735C) */
  .idecorr-about__pillar-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    color: #8A735C;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .idecorr-about__intro {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 50px;
    }
    
    .idecorr-about__pillars-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }

  @media (max-width: 768px) {
    .idecorr-about {
      padding-top: 60px;
      padding-bottom: 60px;
    }
  }

/* ==========================================================================
   Styles from: best-sellers-grid.liquid
   ========================================================================== */

.idecorr-best-sellers {
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: var(--border-thin);
  }

  .idecorr-best-sellers__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    width: 100%;
  }

  .idecorr-best-sellers__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 0;
  }

  /* 
    Minimalist borderless grid layout:
    Grid container has no borders, using crisp gaps between clean card components.
    Gap: 49px matches desktop design coordinates.
  */
  .idecorr-best-sellers__grid-wrapper {
    width: 100%;
  }

  .idecorr-best-sellers__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; /* Reduced gap from 49px to 20px for tighter, premium clustering */
    width: 100%;
  }

  /* Responsive Adjustments */
  @media (max-width: 1200px) {
    .idecorr-best-sellers__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .idecorr-best-sellers {
      padding-top: 60px;
      padding-bottom: 60px;
    }
    
    .idecorr-best-sellers__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    
    .idecorr-best-sellers__header {
      margin-bottom: 30px;
    }
  }

  @media (max-width: 480px) {
    .idecorr-best-sellers__grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }

/* ==========================================================================
   Styles from: curated-style-grid.liquid
   ========================================================================== */

.idecorr-curated {
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: var(--border-thin);
  }

  /* 
    Top Large Horizontal Banner Card:
    Image left (60%), Solid warm beige box right (40%).
    Fully rounded, no outer borders.
  */
  .idecorr-curated__banner-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(20, 20, 20, 0.02);
  }

  .idecorr-curated__banner-media {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #ECECEC;
  }

  .idecorr-curated__banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .idecorr-curated__banner-content {
    width: 100%;
    min-width: 0;
    padding: 60px 40px;
    display: flex;
    align-items: center;
  }

  .idecorr-curated__content-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
  }

  .idecorr-curated__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 500;
    text-transform: none; /* Mixed-case as in screenshot */
    line-height: 1.2;
  }

  .idecorr-curated__subheading {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .idecorr-curated__btn {
    align-self: flex-start;
  }

  /* 
    Pill/Capsule Button styling matching Figma perfectly:
    Soft tan background #CDBCAB, rounded capsule, black text, flame outline vector.
  */
  .btn-capsule {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-black);
    background-color: #CDBCAB;
    padding: 10px 24px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
  }

  .btn-capsule:hover {
    background-color: #BEAC9A;
    transform: translateY(-2px);
  }

  .btn-capsule__icon {
    display: flex;
    align-items: center;
  }

  /* Bottom 3 cards row with gaps and rounded corners */
  .idecorr-curated__grid-wrapper {
    width: 100%;
  }

  .idecorr-curated__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* Space between cards, no grid outline lines */
    width: 100%;
  }

  .idecorr-curated__card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 25px rgba(20, 20, 20, 0.02);
  }

  .idecorr-curated__card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #ECECEC;
  }

  .idecorr-curated__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .idecorr-curated__card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 16px;
  }

  .idecorr-curated__card-title {
    font-family: var(--font-body); /* Mixed-case Inter */
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: none;
  }

  .idecorr-curated__card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
  }

  .idecorr-curated__card-btn {
    align-self: flex-start;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .idecorr-curated__banner-card {
      grid-template-columns: 1fr;
    }
    .idecorr-curated__banner-media {
      aspect-ratio: 16 / 10;
    }
    .idecorr-curated__banner-content {
      padding: 40px 30px;
    }
    .idecorr-curated__grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }

  @media (max-width: 768px) {
    .idecorr-curated {
      padding-top: 60px;
      padding-bottom: 60px;
    }
  }

/* ==========================================================================
   Styles from: footer.liquid
   ========================================================================== */

.idecorr-footer {
    background-color: #BCB8B1; /* Medium warm grey */
    padding: 60px 0 30px 0;
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  /* 
    Top White Card:
    Floats inside the footer, completely rounded corners, solid white background.
  */
  .idecorr-footer__white-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #141414;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  }

  /* Split into two parts: top and bottom */
  .idecorr-footer__card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }

  /* Left: Logo Column */
  .idecorr-footer__logo-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 150px;
  }

  .idecorr-footer__logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .idecorr-footer__logo-icon {
    display: flex;
    align-items: center;
    color: #141414;
  }

  .idecorr-footer__logo-text {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #141414;
    text-transform: lowercase; /* Matches "idecorr" logo standard */
  }

  /* Middle: 3 directories columns */
  .idecorr-footer__menus-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    flex-grow: 1;
    max-width: 700px;
    padding: 0 20px;
  }

  .idecorr-footer__menu-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .idecorr-footer__menu-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #141414;
  }

  .idecorr-footer__menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .idecorr-footer__menu-links a {
    color: #141414;
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.85;
    transition: var(--transition-smooth);
    display: inline-block;
  }

  .idecorr-footer__menu-links a:hover {
    opacity: 1;
    transform: translateX(2px);
  }

  /* Right: Contacts info */
  .idecorr-footer__contact-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
    font-size: 0.9rem;
    line-height: 1.4;
    min-width: 200px;
  }

  .idecorr-footer__contact-col p {
    color: #141414;
    opacity: 0.85;
  }

  .idecorr-footer__contact-col a {
    color: #141414;
    font-weight: 500;
    transition: var(--transition-smooth);
  }

  .idecorr-footer__contact-col a:hover {
    color: var(--color-taupe);
  }

  /* Card Bottom part */
  .idecorr-footer__card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #ECECEC; /* Subtle division line */
  }

  /* Left: Social Icons */
  .idecorr-footer__socials {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .idecorr-footer__social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #141414;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
  }

  .idecorr-footer__social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  /* Middle: Address */
  .idecorr-footer__address-text {
    font-size: 0.9rem;
    color: #141414;
    opacity: 0.8;
    text-align: center;
    font-weight: 400;
  }

  /* Right: Corporate Entity name */
  .idecorr-footer__entity-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: #141414;
    letter-spacing: 0.05em;
    text-align: right;
  }

  /* 
    Bottom Block: Newsletter & Copy
  */
  .idecorr-footer__bottom-section {
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    color: #FFFFFF;
  }

  .idecorr-footer__promo-text {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.8vw, 1.85rem);
    font-weight: 500;
    line-height: 1.3;
    color: #FFFFFF;
    max-width: 520px;
    text-transform: none; /* No forced uppercase */
  }

  .idecorr-footer__newsletter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .idecorr-footer__newsletter-desc {
    font-size: 0.95rem;
    color: #FFFFFF;
    opacity: 0.95;
    line-height: 1.4;
  }

  /* Input Form Capsule style */
  .idecorr-footer__form-capsule {
    position: relative;
    width: 100%;
    max-width: 480px;
  }

  .idecorr-footer__input-capsule {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 100px;
    padding: 15px 60px 15px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #141414;
    outline: none;
    transition: var(--transition-smooth);
  }

  .idecorr-footer__input-capsule::placeholder {
    color: #5A5A5A;
    opacity: 0.8;
  }

  .idecorr-footer__input-capsule:focus {
    box-shadow: 0 0 0 3px rgba(20, 20, 20, 0.15);
  }

  .idecorr-footer__submit-circle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #141414;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
  }

  .idecorr-footer__submit-circle:hover {
    background-color: #000000;
    transform: translateY(-50%) scale(1.05);
  }

  /* Copyright at the very bottom */
  .idecorr-footer__copyright-row {
    padding: 30px 20px 10px 20px;
    color: #FFFFFF;
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 400;
  }

  /* 
    Responsive Breakpoints for Footer 
  */
  @media (max-width: 1024px) {
    .idecorr-footer__card-top {
      flex-direction: column;
      align-items: stretch;
      gap: 40px;
    }

    .idecorr-footer__logo-col {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }

    .idecorr-footer__contact-col {
      text-align: left;
    }

    .idecorr-footer__menus-group {
      gap: 30px;
      padding: 0;
    }

    .idecorr-footer__bottom-section {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 10px 0;
    }

    .idecorr-footer__copyright-row {
      padding: 20px 0 10px 0;
    }
  }

  @media (max-width: 768px) {
    .idecorr-footer {
      padding: 40px 15px 20px 15px;
      gap: 35px;
    }

    .idecorr-footer__white-card {
      padding: 30px 20px;
      gap: 35px;
    }

    .idecorr-footer__menus-group {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .idecorr-footer__card-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .idecorr-footer__address-text {
      text-align: left;
    }

    .idecorr-footer__entity-text {
      text-align: left;
    }
  }

/* ==========================================================================
   Styles from: header.liquid
   ========================================================================== */

.idecorr-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    /* Frosted glassmorphism background matching Figma screenshot:
       Fill: #FDFDFC at 15% opacity, Stroke: #FFFFFF at 100% inside.
    */
    background-color: rgba(253, 253, 252, 0.15) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
    transition: var(--transition-smooth);
  }
  
  .idecorr-header--sticky {
    position: fixed;
    background-color: rgba(253, 253, 252, 0.25) !important; /* Slightly more opaque when sticky for text readability */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  }

  .idecorr-header__wrapper {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .idecorr-header__logo {
    display: flex;
    align-items: center;
  }

  .idecorr-header__logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: inherit;
  }

  .idecorr-header__nav {
    display: block;
  }

  .idecorr-header__nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
  }

  .idecorr-header__nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: inherit;
    opacity: 0.75;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
  }

  .idecorr-header__nav-link:hover,
  .idecorr-header__nav-link--active {
    opacity: 1;
    border-bottom-color: currentColor;
  }

  .idecorr-header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .idecorr-header__action-link {
    color: inherit;
    display: flex;
    align-items: center;
    opacity: 0.85;
    transition: var(--transition-smooth);
  }

  .idecorr-header__action-link:hover {
    opacity: 1;
    transform: scale(1.05);
  }

  .idecorr-header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: inherit;
  }

  .idecorr-header__burger-line {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: var(--transition-smooth);
    transform-origin: left center;
  }

  /* Mobile Drawer */
  .idecorr-header__mobile-drawer {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: var(--bg-primary);
    z-index: 99;
    padding: 40px 20px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .idecorr-header__mobile-drawer[aria-hidden="false"] {
    transform: translateX(0);
    display: block;
  }

  .idecorr-header__mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .idecorr-header__mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-black);
    display: block;
  }

  /* Responsive styling */
  @media (max-width: 768px) {
    .idecorr-header__nav {
      display: none;
    }
    .idecorr-header__burger {
      display: flex;
    }
    
    /* Animation for burger menu open state */
    .idecorr-header__burger[aria-expanded="true"] .idecorr-header__burger-line:nth-child(1) {
      transform: rotate(45deg) translateY(-2px);
    }
    .idecorr-header__burger[aria-expanded="true"] .idecorr-header__burger-line:nth-child(2) {
      opacity: 0;
    }
    .idecorr-header__burger[aria-expanded="true"] .idecorr-header__burger-line:nth-child(3) {
      transform: rotate(-45deg) translateY(2px);
    }
  }

/* ==========================================================================
   Styles from: hero-banner.liquid
   ========================================================================== */

.idecorr-hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: var(--border-thin);
  }

  .idecorr-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .idecorr-hero__wrapper {
    position: relative;
    z-index: 2;
    padding-top: 152px; /* 80px base padding + 72px header height offset to account for absolute header overlay */
    padding-bottom: 80px;
  }

  .idecorr-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: end;
  }

  .idecorr-hero__headline-col {
    display: flex;
    flex-direction: column;
  }

  .idecorr-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 7.5vw, 5.8rem); 
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
  }
  
  .idecorr-hero__title-line-2 {
    padding-left: 15%; 
    transition: var(--transition-smooth);
  }

  .idecorr-hero__desc-col {
    display: flex;
    justify-content: flex-end;
  }

  .idecorr-hero__desc-box {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .idecorr-hero__desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.8vw, 1.4rem);
    line-height: 1.5;
    font-weight: 300;
  }

  .idecorr-hero__btn {
    align-self: flex-start;
    margin-top: 10px;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .idecorr-hero {
      min-height: 550px;
    }
    .idecorr-hero__wrapper {
      padding-top: 132px; /* 60px base padding + 72px header height */
    }
    .idecorr-hero__grid {
      grid-template-columns: 1fr;
      gap: 50px;
      align-items: start;
    }
    .idecorr-hero__title-line-2 {
      padding-left: 18%; 
    }
    .idecorr-hero__desc-col {
      justify-content: flex-start;
    }
    .idecorr-hero__desc-box {
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .idecorr-hero__wrapper {
      padding-top: 132px;
      padding-bottom: 60px;
    }
    .idecorr-hero__title-line-2 {
      padding-left: 18%; 
    }
  }

  @media (max-width: 480px) {
    .idecorr-hero {
      min-height: 480px;
    }
    .idecorr-hero__wrapper {
      padding-top: 112px; /* 40px base padding + 72px header */
    }
    .idecorr-hero__grid {
      gap: 35px;
    }
    .idecorr-hero__title-line-2 {
      padding-left: 15%; 
    }
  }

  /* Giant background watermark overlay */
  .idecorr-hero__watermark {
    position: absolute;
    bottom: -6%;
    left: 5%;
    font-family: var(--font-heading);
    font-size: clamp(6rem, 18vw, 15rem);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.12); /* Extremely translucent white watermark */
    user-select: none;
    pointer-events: none;
    z-index: 2;
    text-transform: lowercase; /* Matches lowercase logo */
  }

/* ==========================================================================
   Styles from: marquee-text.liquid
   ========================================================================== */

.idecorr-marquee {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      display: flex;
      align-items: center;
      border-bottom: var(--border-thin);
    }
    
    .idecorr-marquee__track {
      display: inline-flex;
      animation: idecorr-marquee-animation {{ section.settings.speed }}s linear infinite;
      animation-direction: {% if section.settings.direction == 'right' %}reverse{% else %}normal{% endif %};
    }
    
    .idecorr-marquee__item {
      font-family: var(--font-heading);
      font-size: clamp(1.2rem, 3vw, 2rem);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0 40px;
      display: flex;
      align-items: center;
      gap: 30px;
    }
    
    .idecorr-marquee__star {
      display: inline-block;
      font-size: 1.5rem;
      opacity: 0.6;
    }
    
    @keyframes idecorr-marquee-animation {
      0% {
        transform: translate3d(0, 0, 0);
      }
      100% {
        transform: translate3d(-50%, 0, 0);
      }
    }

    /* Pause animation on hover if selected */
    {% if section.settings.pause_on_hover %}
    .idecorr-marquee:hover .idecorr-marquee__track {
      animation-play-state: paused;
    }
    {% endif %}

/* ==========================================================================
   Styles from: testimonials.liquid
   ========================================================================== */

.idecorr-testimonials {
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: var(--border-thin);
    text-align: center;
  }

  .idecorr-testimonials__wrapper {
    max-width: 900px; /* Centered narrow container for text readability */
    margin: 0 auto;
  }

  .idecorr-testimonials__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 50px;
  }

  .idecorr-testimonials__slider-container {
    position: relative;
    width: 100%;
    min-height: 220px;
  }

  .idecorr-testimonials__slide {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .idecorr-testimonials__slide.active {
    display: flex;
    opacity: 1;
  }

  .idecorr-testimonials__rating {
    display: flex;
    gap: 4px;
    justify-content: center;
  }

  .idecorr-testimonials__star {
    color: var(--color-black);
    font-size: 1.1rem;
  }

  .idecorr-testimonials__quote {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    line-height: 1.5;
    font-weight: 300;
    max-width: 780px;
    margin: 0 auto;
    letter-spacing: -0.01em;
    font-style: normal;
  }

  .idecorr-testimonials__author {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 0.05em;
    opacity: 0.7;
  }

  .idecorr-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
  }

  .idecorr-testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--color-black);
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-smooth);
  }

  .idecorr-testimonials__dot.active {
    background-color: var(--color-black);
    transform: scale(1.2);
  }

  @media (max-width: 768px) {
    .idecorr-testimonials {
      padding-top: 60px;
      padding-bottom: 60px;
    }
  }