/** Shopify CDN: Minification failed

Line 776:21 Expected identifier but found whitespace
Line 776:23 Unexpected "{"
Line 776:32 Expected ":"
Line 794:10 Expected identifier but found whitespace
Line 794:12 Unexpected "{"
Line 794:21 Expected ":"
Line 800:10 Expected identifier but found whitespace
Line 800:12 Unexpected "{"
Line 800:21 Expected ":"
Line 827:15 Expected identifier but found whitespace
... and 111 more hidden warnings

**/


/* CSS from section stylesheet tags */
.error-404 {
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem var(--page-margin);
  }

  .error-404__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .error-404__content {
    border-radius: 30px;
    padding: 4rem 3rem;
  }

  .error-404__code {
    font-family: 'Kaisei Decol', serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(80px, 15vw, 160px);
    line-height: 1;
    color: #5a5a3d;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
  }

  .error-404__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0 0 1.5rem;
  }

  .error-404__message {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 160%;
    color: #4a4a4a;
    margin: 0 0 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .error-404__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #5a5a3d;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    border-radius: 8px;
    transition: all 0.3s;
  }

  .error-404__button:hover {
    background-color: #4a4a30;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 90, 61, 0.3);
  }

  @media (max-width: 768px) {
    .error-404 {
      padding: 3rem var(--page-margin);
    }

    .error-404__content {
      padding: 3rem 2rem;
    }
  }

  @media (max-width: 600px) {
    .error-404 {
      padding: 2rem var(--page-margin);
    }

    .error-404__content {
      padding: 2.5rem 1.5rem;
    }

    .error-404__button {
      padding: 0.875rem 2rem;
      font-size: 16px;
    }
  }
.about-product {
    padding: 4rem var(--page-margin) 3rem;
  }

  .about-product__container {
    max-width: var(--page-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .about-product__icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-product__icon img {
    width: auto;
    height: 80px;
    object-fit: contain;
  }

  .about-product__text {
    max-width: 1100px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 150%;
    color: #5a5a4d;
    letter-spacing: 0.01em;
  }

  .about-product__text strong {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    color: #4a4a3d;
  }

  .about-product__features {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    color: #5a5a3d;
    text-align: center;
  }

  @media (max-width: 768px) {
    .about-product {
      padding: 3rem var(--page-margin) 2.5rem;
    }

    .about-product__container {
      gap: 2.5rem;
    }

    .about-product__icon img {
      height: 60px;
    }

    .about-product__text {
      font-size: 24px;
    }

    .about-product__text strong {
      font-size: 22px;
    }

    .about-product__features {
      font-size: 20px;
    }
  }
.article {
    background-color: #ffffff;
    padding: 4rem var(--page-margin) 6rem;
  }

  .article__container {
    max-width: 900px;
    margin: 0 auto;
  }

  /* Comments Section */
  .article__comments-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid #e8e8e8;
  }

  .article__comments-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    color: #1a1a1a;
    margin: 0 0 2.5rem;
  }

  .article__comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .article__comment {
    padding: 1.75rem;
    background-color: #f8f8f6;
    border-radius: 20px;
  }

  .article__comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  .article__comment-author {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
  }

  .article__comment-date {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #888888;
  }

  .article__comment-content {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
  }

  /* Comment Form */
  .article__comment-form {
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: #f8f8f6;
    border-radius: 30px;
  }

  .article__comment-form-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
  }

  .article__form-success {
    padding: 1rem 1.5rem;
    background-color: #d4f4dd;
    color: #2d5f3c;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
  }

  .article__form-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .article__form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .article__form-field--full {
    grid-column: 1 / -1;
  }

  .article__form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #2a2a2a;
  }

  .article__form-input,
  .article__form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2a2a2a;
    transition: border-color 0.2s;
    background-color: #ffffff;
  }

  .article__form-input:focus,
  .article__form-textarea:focus {
    outline: none;
    border-color: #5a5a3d;
  }

  .article__form-textarea {
    min-height: 150px;
    resize: vertical;
  }

  .article__form-submit {
    padding: 1rem 2.5rem;
    background-color: #5a5a3d;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
  }

  .article__form-submit:hover {
    background-color: #4a4a30;
    transform: translateY(-2px);
  }

  .article__pagination {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
  }

  @media (max-width: 768px) {
    .article {
      padding: 3rem var(--page-margin) 4rem;
    }

    .article__comments-section {
      margin-top: 4rem;
      padding-top: 3rem;
    }

    .article__comments-title {
      font-size: 28px;
      margin-bottom: 2rem;
    }

    .article__comment-form {
      padding: 2rem 1.5rem;
      border-radius: 20px;
    }

    .article__form-fields {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
  }
.blog-hero {
    background-color: #ffffff;
    padding: 3rem var(--page-margin);
  }

  .blog-hero__container {
    max-width: 900px;
    margin: 0 auto;
  }

  .blog-hero__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 2.5rem;
    text-align: left;
  }

  .blog-hero__image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 30px;
    background-color: #f8f8f6;
  }

  .blog-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .blog-hero {
      padding: 2rem var(--page-margin);
    }

    .blog-hero__title {
      margin-bottom: 2rem;
    }

    .blog-hero__image-wrapper {
      border-radius: 20px;
    }
  }
.blog-related-articles {
    background-color: #f8f8f6;
    padding: 5rem var(--page-margin);
  }

  .blog-related-articles__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .blog-related-articles__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 3rem;
    text-align: left;
  }

  .blog-related-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .blog-related-article {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .blog-related-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .blog-related-article__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: #e8e8e8;
  }

  .blog-related-article__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .blog-related-article:hover .blog-related-article__image {
    transform: scale(1.08);
  }

  .blog-related-article__content {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .blog-related-article__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
  }

  .blog-related-article__author {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #888888;
    margin: 0;
  }

  @media (max-width: 900px) {
    .blog-related-articles {
      padding: 4rem var(--page-margin);
    }

    .blog-related-articles__title {
      margin-bottom: 2.5rem;
    }

    .blog-related-articles__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .blog-related-article:last-child {
      grid-column: 1 / -1;
      max-width: 50%;
      margin: 0 auto;
    }
  }

  @media (max-width: 600px) {
    .blog-related-articles {
      padding: 3rem var(--page-margin);
    }

    .blog-related-articles__title {
      margin-bottom: 2rem;
    }

    .blog-related-articles__grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .blog-related-article:last-child {
      max-width: 100%;
    }

    .blog-related-article__content {
      padding: 1.5rem 1.25rem;
    }
  }
.blog-text-image {
    padding: 3rem var(--page-margin);
    background-color: #ffffff;
  }

  .blog-text-image__container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .blog-text-image--image-left .blog-text-image__container {
    grid-template-columns: 1fr 1fr;
  }

  .blog-text-image--image-right .blog-text-image__container {
    grid-template-columns: 1fr 1fr;
  }

  .blog-text-image--image-right .blog-text-image__image-wrapper {
    order: 2;
  }

  .blog-text-image--image-right .blog-text-image__content {
    order: 1;
  }

  .blog-text-image__image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 30px;
    background-color: #f8f8f6;
  }

  .blog-text-image__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blog-text-image__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .blog-text-image__heading {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
  }

  .blog-text-image__text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
  }

  .blog-text-image__text p {
    margin: 0 0 1.25rem;
  }

  .blog-text-image__text p:last-child {
    margin-bottom: 0;
  }

  .blog-text-image__text strong {
    font-weight: 600;
    color: #2a2a2a;
  }

  .blog-text-image__text a {
    color: #5a5a3d;
    text-decoration: underline;
    transition: color 0.2s;
  }

  .blog-text-image__text a:hover {
    color: #d4b875;
  }

  @media (max-width: 900px) {
    .blog-text-image {
      padding: 2.5rem var(--page-margin);
    }

    .blog-text-image__container,
    .blog-text-image--image-left .blog-text-image__container,
    .blog-text-image--image-right .blog-text-image__container {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    /* Image always on top for mobile */
    .blog-text-image--image-left .blog-text-image__image-wrapper {
      order: 1;
    }

    .blog-text-image--image-left .blog-text-image__content {
      order: 2;
    }

    .blog-text-image--image-right .blog-text-image__image-wrapper {
      order: 1;
    }

    .blog-text-image--image-right .blog-text-image__content {
      order: 2;
    }

    .blog-text-image__image-wrapper {
      border-radius: 20px;
    }
  }

  @media (max-width: 768px) {
    .blog-text-image {
      padding: 2rem var(--page-margin);
    }

    .blog-text-image__container {
      gap: 2rem;
    }

    .blog-text-image__content {
      gap: 1.25rem;
    }

    .blog-text-image__text {
      font-size: 15px;
    }
  }
.blog-text {
    padding: 3rem var(--page-margin);
  }

  .blog-text__container {
    max-width: 900px;
    margin: 0 auto;
  }

  .blog-text__heading {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
  }

  .blog-text__content {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
  }

  .blog-text__content p {
    margin: 0 0 1.25rem;
  }

  .blog-text__content p:last-child {
    margin-bottom: 0;
  }

  .blog-text__content strong {
    font-weight: 600;
    color: #2a2a2a;
  }

  .blog-text__content a {
    color: #5a5a3d;
    text-decoration: underline;
    transition: color 0.2s;
  }

  .blog-text__content a:hover {
    color: #d4b875;
  }

  @media (max-width: 768px) {
    .blog-text {
      padding: 2rem var(--page-margin);
    }

    .blog-text__heading {
      margin-bottom: 1.25rem;
    }

    .blog-text__content {
      font-size: 15px;
    }
  }
.blog-section {
    padding: 4rem var(--page-margin);
    background-color: {{ section.settings.background_color }};
  }

  .blog-section__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .blog-section__header {
    margin-bottom: 3rem;
    text-align: center;
  }

  .blog-section__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    color: {{ section.settings.heading_color }};
    margin: 0 0 0.5rem;
  }

  .blog-section__count {
    font-size: 16px;
    color: {{ section.settings.text_color | color_modify: 'alpha', 0.7 }};
    margin: 0;
  }

  /* Grid Layouts */
  .blog-grid {
    display: grid;
    gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
    margin-bottom: 3rem;
  }

  .blog-grid--2-columns {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 500px), 1fr));
  }

  .blog-grid--3-columns {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
  }

  .blog-grid--4-columns {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  }

  /* Blog Card */
  .blog-card {
    background: {{ section.settings.card_background }};
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: {{ section.settings.card_shadow }};
    height: 100%;
  }

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }

  .blog-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .blog-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: #f8f8f6;
  }

  .blog-card__image-wrapper--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

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

  .blog-card__placeholder {
    width: 60%;
    height: 60%;
    opacity: 0.2;
  }

  .blog-card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: {{ section.settings.category_background }};
    color: {{ section.settings.category_text_color }};
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .blog-card__content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 2.5vw, 20px);
    line-height: 1.4;
    color: {{ section.settings.heading_color }};
    margin: 0 0 1rem;
    transition: color 0.3s ease;
  }

  .blog-card:hover .blog-card__title {
    color: {{ section.settings.accent_color }};
  }

  .blog-card__excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: {{ section.settings.text_color }};
    margin-bottom: 1rem;
    flex-grow: 1;
  }

  .blog-card__author {
    font-size: 14px;
    color: {{ section.settings.text_color | color_modify: 'alpha', 0.7 }};
    margin: 0 0 1.5rem;
  }

  .blog-card__button {
    display: inline-block;
    background: #E5C766;
    color: #2C2C2C;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
  }

  .blog-card__button:hover {
    background: #D4B855;
    transform: translateY(-2px);
  }

  /* Pagination */
  .blog-section__pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .blog-section {
      padding: 3rem var(--page-margin);
    }

    .blog-section__header {
      margin-bottom: 2rem;
    }

    .blog-grid {
      grid-template-columns: 1fr !important;
      gap: {{ section.settings.grid_gap | divided_by: 1.5 }}px;
    }

    .blog-card__content {
      padding: 1.5rem;
    }

    .blog-card__category {
      top: 0.75rem;
      left: 0.75rem;
      padding: 0.4rem 0.8rem;
      font-size: 11px;
    }
  }
.cart-main {
    background-color: #ffffff;
    padding: 5rem var(--page-margin) 6rem;
  }

  .cart-main__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .cart-main__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0 0 3rem;
    text-align: center;
  }

  /* Content Grid */
  .cart-main__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
  }

  /* Items */
  .cart-main__items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .cart-main__items-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8e8e8;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .cart-main__header-quantity,
  .cart-main__header-total {
    text-align: center;
  }

  .cart-main__items-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  /* Cart Item */
  .cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 150px 120px;
    gap: 2rem;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 16px;
    align-items: center;
  }

  .cart-item__image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
  }

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

  .cart-item__details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .cart-item__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #2a2a2a;
    text-decoration: none;
    transition: color 0.3s;
  }

  .cart-item__title:hover {
    color: #5a5a3d;
  }

  .cart-item__variant {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #888;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .cart-item__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #2a2a2a;
  }

  .cart-item__price-sale {
    color: #d4b875;
  }

  .cart-item__price-original {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
  }

  .cart-item__remove {
    margin-top: 0.5rem;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: color 0.3s;
  }

  .cart-item__remove:hover {
    color: #d44;
  }

  .cart-item__quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
  }

  .cart-item__quantity-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .cart-item__quantity-button:hover {
    background-color: #f5f5f5;
  }

  .cart-item__quantity-button svg {
    width: 16px;
    height: 16px;
    color: #2a2a2a;
  }

  .cart-item__quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 2px solid #e8e8e8;
    border-right: 2px solid #e8e8e8;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
  }

  .cart-item__quantity-input::-webkit-inner-spin-button,
  .cart-item__quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-item__total {
    text-align: center;
  }

  .cart-item__total-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #2a2a2a;
  }

  .cart-main__actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
  }

  .cart-main__update {
    padding: 0.75rem 2rem;
    background-color: #e8e8e8;
    color: #2a2a2a;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .cart-main__update:hover {
    background-color: #d8d8d8;
  }

  /* Summary */
  .cart-summary {
    position: sticky;
    top: 6rem;
    background-color: #fafafa;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cart-summary__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #2a2a2a;
    margin: 0 0 1rem;
  }

  .cart-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #4a4a4a;
  }

  .cart-summary__line--total {
    padding-top: 1.5rem;
    border-top: 2px solid #e8e8e8;
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
  }

  .cart-summary__price,
  .cart-summary__total {
    font-weight: 700;
    color: #2a2a2a;
  }

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

  .cart-summary__discounts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .cart-summary__discount {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #d4b875;
  }

  .cart-summary__note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888;
    margin: 0;
  }

  .cart-summary__order-note {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .cart-summary__note-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #2a2a2a;
  }

  .cart-summary__note-textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    resize: vertical;
  }

  .cart-summary__checkout {
    width: 100%;
    padding: 1.25rem 2rem;
    background-color: #5a5a3d;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }

  .cart-summary__checkout:hover {
    background-color: #4a4a30;
    transform: translateY(-2px);
  }

  .cart-summary__continue {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #888;
    text-decoration: underline;
    transition: color 0.3s;
  }

  .cart-summary__continue:hover {
    color: #5a5a3d;
  }

  /* Empty Cart */
  .cart-main__empty {
    text-align: center;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .cart-main__empty-icon {
    width: 80px;
    height: 80px;
    color: #d8d8d8;
  }

  .cart-main__empty-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #2a2a2a;
    margin: 0;
  }

  .cart-main__empty-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #888;
    margin: 0;
  }

  .cart-main__empty-button {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    background-color: #5a5a3d;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
  }

  .cart-main__empty-button:hover {
    background-color: #4a4a30;
    transform: translateY(-2px);
  }

  @media (max-width: 1024px) {
    .cart-main__content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .cart-summary {
      position: static;
    }
  }

  @media (max-width: 768px) {
    .cart-main {
      padding: 4rem var(--page-margin);
    }

    .cart-main__title {
      font-size: 32px;
      margin-bottom: 2rem;
    }

    .cart-item {
      grid-template-columns: 80px 1fr;
      gap: 1.5rem;
    }

    .cart-item__image {
      width: 80px;
      height: 80px;
    }

    .cart-item__quantity {
      grid-column: 1 / -1;
      justify-self: start;
    }

    .cart-item__total {
      grid-column: 1 / -1;
      text-align: left;
      padding-top: 1rem;
      border-top: 1px solid #e8e8e8;
    }

    .cart-main__items-header {
      display: none;
    }
  }

  @media (max-width: 600px) {
    .cart-main {
      padding: 3rem var(--page-margin);
    }

    .cart-summary {
      padding: 2rem;
    }
  }
.collection-banner {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f3e8 0%, #e8e6d8 100%);
  }

  .collection-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .collection-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collection-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 243, 232, 0.85) 0%, rgba(232, 230, 216, 0.75) 100%);
    z-index: 2;
  }

  .collection-banner__container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 var(--page-margin);
  }

  .collection-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .collection-banner__title {
    font-family: 'Kaisei Decol', serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(36px, 7vw, 72px);
    line-height: 1.1;
    color: #2a2a2a;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .collection-banner__description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: #4a4a4a;
  }

  @media (max-width: 900px) {
    .collection-banner {
      height: 400px;
    }

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

    .collection-banner__description {
      font-size: 18px;
    }
  }

  @media (max-width: 600px) {
    .collection-banner {
      height: 350px;
    }

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

    .collection-banner__description {
      font-size: 16px;
    }
  }
.collection-products-list {
    padding: 3rem var(--page-margin);
    background-color: #ffffff;
  }

  .collection-products-list__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .collection-products-list__card {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    transition: box-shadow 0.3s ease;
  }

  .collection-products-list__card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .collection-products-list__image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .collection-products-list__image-wrapper:hover {
    opacity: 0.8;
  }

  .collection-products-list__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .collection-products-list__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .collection-products-list__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
  }

  .collection-products-list__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .collection-products-list__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
  }

  .collection-products-list__checkmark {
    flex-shrink: 0;
  }

  .collection-products-list__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    min-width: 200px;
  }

  .collection-products-list__price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #1a1a1a;
    text-align: right;
  }

  .collection-products-list__price-note {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #6a6a6a;
    margin-top: 0.25rem;
  }

  .collection-products-list__form {
    width: 100%;
  }

  .collection-products-list__button {
    width: 100%;
    padding: 0.75rem 2rem;
    background-color: #5a5a3d;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
  }

  .collection-products-list__button:hover {
    background-color: #4a4a32;
  }

  .collection-products-list__button:disabled {
    background-color: #d0d0d0;
    cursor: not-allowed;
  }

  .collection-products-list__empty {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #6a6a6a;
    padding: 3rem;
  }

  @media (max-width: 900px) {
    .collection-products-list__card {
      grid-template-columns: 140px 1fr;
      gap: 1.5rem;
    }

    .collection-products-list__actions {
      grid-column: 2;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      min-width: 0;
    }

    .collection-products-list__price {
      text-align: left;
    }

    .collection-products-list__form {
      width: auto;
    }

    .collection-products-list__button {
      padding: 0.65rem 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .collection-products-list {
      padding: 2rem var(--page-margin);
    }

    .collection-products-list__container {
      gap: 1rem;
    }

    .collection-products-list__card {
      grid-template-columns: 1fr;
      padding: 1.5rem;
      gap: 1.25rem;
    }

    .collection-products-list__image-wrapper {
      max-width: 160px;
      margin: 0 auto;
    }

    .collection-products-list__content {
      text-align: center;
    }

    .collection-products-list__feature {
      justify-content: center;
    }

    .collection-products-list__actions {
      grid-column: 1;
      flex-direction: column;
      align-items: stretch;
    }

    .collection-products-list__price {
      text-align: center;
      font-size: 18px;
    }

    .collection-products-list__form {
      width: 100%;
    }

    .collection-products-list__button {
      width: 100%;
    }
  }
.collection-products {
    background-color: #ffffff;
    padding: 5rem var(--page-margin) 6rem;
  }

  .collection-products__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .collection-products__header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .collection-products__heading {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    color: #888;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }

  .collection-products__count {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #4a4a4a;
    margin: 0;
  }

  /* Product Grid */
  .collection-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }

  .product-card-collection {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
  }

  .product-card-collection:hover {
    transform: translateY(-8px);
  }

  .product-card-collection__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #f8f8f6;
    border-radius: 20px;
    margin-bottom: 1.5rem;
  }

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

  .product-card-collection:hover .product-card-collection__image {
    transform: scale(1.08);
  }

  .product-card-collection__badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem 0.85rem;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    z-index: 2;
    backdrop-filter: blur(10px);
  }

  .product-card-collection__badge--sale {
    background-color: rgba(212, 184, 117, 0.95);
    color: #1a1a1a;
  }

  .product-card-collection__badge--sold-out {
    background-color: rgba(42, 42, 42, 0.85);
    color: #ffffff;
  }

  .product-card-collection__info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .product-card-collection__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #2a2a2a;
    margin: 0;
  }

  .product-card-collection__price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }

  .product-card-collection__price {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: #2a2a2a;
  }

  .product-card-collection__price--sale {
    color: #d4b875;
  }

  .product-card-collection__price--compare {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
  }

  .collection-products__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 6rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #888;
  }

  .collection-products__pagination {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
  }

  @media (max-width: 1024px) {
    .collection-products__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .collection-products {
      padding: 4rem var(--page-margin);
    }

    .collection-products__header {
      margin-bottom: 3rem;
    }

    .collection-products__grid {
      gap: 2.5rem 1.5rem;
    }
  }

  @media (max-width: 600px) {
    .collection-products {
      padding: 3rem var(--page-margin);
    }

    .collection-products__header {
      margin-bottom: 2.5rem;
    }

    .collection-products__grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .product-card-collection__image-wrapper {
      aspect-ratio: 1;
    }
  }
.collections-list {
    background-color: #ffffff;
    padding: 5rem var(--page-margin) 6rem;
  }

  .collections-list__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .collections-list__header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .collections-list__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
  }

  .collections-list__description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: #4a4a4a;
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
  }

  /* Grid */
  .collections-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }

  .collection-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
  }

  .collection-card:hover {
    transform: translateY(-8px);
  }

  .collection-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #f8f8f6;
    border-radius: 20px;
    margin-bottom: 1.5rem;
  }

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

  .collection-card:hover .collection-card__image {
    transform: scale(1.08);
  }

  .collection-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .collection-card:hover .collection-card__overlay {
    opacity: 1;
  }

  .collection-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .collection-card__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #2a2a2a;
    margin: 0;
  }

  .collection-card__count {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #888;
    margin: 0;
  }

  @media (max-width: 1024px) {
    .collections-list__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .collections-list {
      padding: 4rem var(--page-margin);
    }

    .collections-list__header {
      margin-bottom: 4rem;
    }

    .collections-list__title {
      font-size: 48px;
    }

    .collections-list__description {
      font-size: 18px;
    }

    .collections-list__grid {
      gap: 2.5rem 1.5rem;
    }
  }

  @media (max-width: 600px) {
    .collections-list {
      padding: 3rem var(--page-margin);
    }

    .collections-list__header {
      margin-bottom: 3rem;
    }

    .collections-list__title {
      font-size: 32px;
    }

    .collections-list__description {
      font-size: 16px;
    }

    .collections-list__grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .collection-card__image-wrapper {
      aspect-ratio: 1;
    }
  }
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.faq {
    background-color: #ffffff;
    padding: 5rem var(--page-margin);
  }

  .faq__container {
    max-width: var(--page-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
  }

  .faq__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 6rem;
  }

  .faq__title {
    font-family: 'Kaisei Decol', serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.2;
    color: #5a5a3d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
  }

  .faq__text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.7;
    color: #4a4a4a;
  }

  .faq__text p {
    margin: 0;
  }

  .faq__accordion {
    display: flex;
    flex-direction: column;
  }

  .faq__item {
    border-bottom: 1px solid rgba(90, 90, 61, 0.2);
  }

  .faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    color: #2a2a2a;
    transition: color 0.3s;
  }

  .faq__question:hover {
    color: #5a5a3d;
  }

  .faq__icon {
    width: 3rem;
    height: 3rem;
    color: #5a5a3d;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
  }

  .faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(45deg);
  }

  .faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  .faq__answer-content {
    padding: 0 0 1.5rem 0;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 24px;
    line-height: 1.7;
    color: #4a4a4a;
  }

  .faq__answer-content p {
    margin: 0 0 1rem 0;
  }

  .faq__answer-content p:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 900px) {
    .faq {
      padding: 4rem var(--page-margin);
    }

    .faq__container {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .faq__content {
      position: static;
    }
  }

  @media (max-width: 600px) {
    .faq {
      padding: 3rem var(--page-margin);
    }

    .faq__title {
      font-size: 36px;
    }

    .faq__text {
      font-size: 20px;
    }

    .faq__question {
      font-size: 24px;
      padding: 1.25rem 0;
    }

    .faq__answer-content {
      font-size: 20px;
    }
  }
.features-benefits {
    padding: 5rem var(--page-margin);
  }

  .features-benefits__container {
    max-width: var(--page-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .features-benefits__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 2rem;
  }

  .features-benefits__title {
    font-family: 'Kaisei Decol', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    color: #5a5a3d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
  }

  .features-benefits__subtitle {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 24px;
    color: #2a2a2a;
    margin: 0;
  }

  .features-benefits__text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 24px;
    line-height: 1.7;
    color: #4a4a4a;
  }

  .features-benefits__text p {
    margin: 0 0 1rem 0;
  }

  .features-benefits__text p:last-child {
    margin-bottom: 0;
  }

  .features-benefits__button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #d4b875;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 0.25rem;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
    margin-top: 0.5rem;
  }

  .features-benefits__button:hover {
    background-color: #c9a960;
    transform: translateY(-2px);
  }

  .features-benefits__features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .features-benefits__feature--with-image {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .features-benefits__feature-image {
    width: 100px;
    height: 100px;
    border-radius: 0.5rem;
    overflow: hidden;
  }

  .features-benefits__feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .features-benefits__feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .features-benefits__feature-title {
    font-family: 'Kaisei Decol', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    color: #2a2a2a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .features-benefits__feature-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
  }

  @media (max-width: 900px) {
    .features-benefits {
      padding: 4rem var(--page-margin);
    }

    .features-benefits__container {
      grid-template-columns: 1fr;
      gap: 4rem;
    }

    .features-benefits__content {
      padding-right: 0;
    }

    .features-benefits__title {
      font-size: 36px;
    }

    .features-benefits__subtitle {
      font-size: 24px;
    }

    .features-benefits__text {
      font-size: 20px;
    }
  }

  @media (max-width: 600px) {
    .features-benefits {
      padding: 3rem var(--page-margin);
    }

    .features-benefits__container {
      gap: 3rem;
    }

    .features-benefits__features {
      gap: 2rem;
    }

    .features-benefits__feature--with-image {
      grid-template-columns: 80px 1fr;
      gap: 1rem;
    }

    .features-benefits__feature-image {
      width: 80px;
      height: 80px;
    }

    .features-benefits__feature-title {
      font-size: 20px;
    }

    .features-benefits__feature-description {
      font-size: 16px;
    }
  }
.footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 3rem var(--page-margin) 2rem;
  }

  .footer__container {
    max-width: var(--page-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: start;
  }

  .footer__social {
    display: flex;
    gap: 1.5rem;
  }

  .footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    transition: opacity 0.3s;
    border-radius: 4px;
  }

  .footer__social a:hover {
    opacity: 0.7;
  }

  .footer__social svg {
    width: 100%;
    height: 100%;
  }

  .footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .footer__column-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    margin: 0 0 1rem 0;
    color: #ffffff;
  }

  .footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__menu a {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer__menu a:hover {
    color: #ffffff;
  }

  @media (max-width: 900px) {
    .footer__container {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .footer__social {
      justify-content: center;
    }

    .footer__links {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  @media (max-width: 600px) {
    .footer {
      padding: 2.5rem var(--page-margin) 1.5rem;
    }

    .footer__links {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }

    .footer__social {
      gap: 2rem;
    }
  }
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4rem;
    display: flex;
    justify-content: center;
    background-color: rgba(220, 220, 215, 1);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease;
    padding: 0 var(--page-margin);
  }

  .header.scrolled {
    background-color: rgba(220, 220, 215, 0.75);
    backdrop-filter: blur(10px);
  }

  .header__wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: var(--page-width);
    gap: 2rem;
  }

  body {
    padding-top: 4rem;
  }

  .header__left {
    justify-self: start;
    display: flex;
    align-items: center;
  }

  .header__menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #1a1a1a;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__menu-toggle:hover {
    opacity: 0.6;
  }

  .header__menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .header__logo {
    justify-self: center;
  }

  .header__logo-image {
    max-height: 2.5rem;
    width: auto;
    display: block;
  }

  .header__logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    gap: 0.125rem;
  }

  .header__logo-viva {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #5a5a4d;
  }

  .header__logo-balance {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #5a5a4d;
  }

  .header__actions {
    display: flex;
    gap: 1.25rem;
    justify-self: end;
    align-items: center;
  }

  .header__action {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: opacity 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .header__action:hover {
    opacity: 0.6;
  }

  .header__action svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .header__cart-count {
    position: absolute;
    top: -0.4rem;
    right: -0.4rem;
    background-color: #5a5a3d;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.1rem 0.35rem;
    border-radius: 50%;
    min-width: 1.1rem;
    text-align: center;
    line-height: 1.2;
  }

  .header__search-container {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
  }

  .header__search-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__search-close {
    position: absolute;
    top: 0rem;
    right: 0rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #1a1a1a;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__search-close:hover {
    opacity: 0.6;
  }

  .header__search-close svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background-color: #ffffff;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
  }

  .header__mobile-menu.active {
    transform: translateX(0);
  }

  .header__mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
    border-bottom: 1px solid #e8e8e8;
  }

  .header__mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #1a1a1a;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__mobile-menu-close:hover {
    opacity: 0.6;
  }

  .header__mobile-menu-close svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .header__mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
  }

  .header__mobile-menu-link {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: background-color 0.2s;
  }

  .header__mobile-menu-link:hover {
    background-color: #f8f8f6;
  }

  .header__search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .header__search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.2s;
  }

  .header__search-input:focus {
    outline: none;
    border-color: #5a5a3d;
  }

  .header__search-submit {
    padding: 1rem;
    background-color: #5a5a3d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .header__search-submit:hover {
    background-color: #4a4a30;
  }

  .header__search-submit svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  @media (max-width: 900px) {
    .header__search-container {
      padding: 1.5rem;
    }
  }

  @media (max-width: 600px) {
    .header__search-container {
      padding: 1rem;
    }

    .header__search-input {
      font-size: 14px;
      padding: 0.75rem;
    }
  }
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
.hero {
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  @media (min-width: 1400px) {
    .hero {
      height: 90vh;
      max-height: 900px;
    }
  }

  .hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .hero__background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .hero__text {
    max-width: 500px;
    text-align: center;
  }

  .hero__title {
    font-family: 'Kaisei Decol', serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(32px, 6vw, 64px);
    line-height: clamp(52px, 8vw, 93px);
    text-align: center;
    color: #c9b894;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .hero__button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #d4b875;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: 0.25rem;
    transition: background-color 0.3s, transform 0.2s;
  }

  .hero__button:hover {
    background-color: #c9a960;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .hero {
      height: 70vh;
      min-height: 400px;
    }

    .hero__title {
      margin-bottom: 1.5rem;
    }

    .hero__button {
      padding: 0.65rem 1.75rem;
      font-size: 0.9rem;
    }
  }
.how-to-use {
    background-color: #ffffff;
    padding: 0;
  }

  .how-to-use__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .how-to-use__media {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    position: relative;
  }

  .how-to-use__img,
  .how-to-use__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .how-to-use__external-video {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .how-to-use__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .how-to-use__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem var(--page-margin);
    background-color: #ffffff;
  }

  .how-to-use__step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .how-to-use__step-number {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 32px;
    color: #5a5a3d;
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }

  .how-to-use__step-text {
    font-family: 'Kaisei Decol', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    color: #2a2a2a;
    line-height: 1.5;
    margin: 0;
  }

  @media (max-width: 900px) {
    .how-to-use__steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem 1.5rem;
      padding: 2.5rem var(--page-margin);
    }

    .how-to-use__media {
      height: 50vh;
      min-height: 350px;
    }
  }

  @media (max-width: 600px) {
    .how-to-use__steps {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2rem var(--page-margin);
    }

    .how-to-use__media {
      height: 40vh;
      min-height: 300px;
    }

    .how-to-use__step-number {
      font-size: 24px;
    }

    .how-to-use__step-text {
      font-size: 20px;
    }
  }
.info-bar {
    padding: 2rem var(--page-margin);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .info-bar__container {
    max-width: var(--page-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
  }

  .info-bar__item {
    display: flex;
    flex-direction: column;
  }

  /* Rating */
  .info-bar__rating {
    align-items: flex-start;
  }

  .info-bar__rating-stars {
    color: #d4b875;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1rem;
  }

  .info-bar__rating-text {
    font-size: 1rem;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.4;
  }

  /* Quote */
  .info-bar__quote {
    align-items: center;
    text-align: center;
    padding: 0 1rem;
  }

  .info-bar__quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #2a2a2a;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
  }

  .info-bar__quote-text::before {
    content: '„';
  }

  .info-bar__quote-text::after {
    content: '"';
  }

  .info-bar__quote-author {
    font-size: 0.9rem;
    font-style: normal;
    color: #666;
    font-weight: 400;
  }

  /* Features */
  .info-bar__features {
    align-items: flex-end;
    gap: 0.75rem;
  }

  .info-bar__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #2a2a2a;
  }

  .info-bar__checkmark {
    width: 1.25rem;
    height: 1.25rem;
    color: #5a5a3d;
    flex-shrink: 0;
  }

  @media (max-width: 900px) {
    .info-bar__container {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }

    .info-bar__rating {
      align-items: center;
    }

    .info-bar__features {
      align-items: center;
    }

    .info-bar__feature {
      justify-content: center;
    }
  }

  @media (max-width: 600px) {
    .info-bar {
      padding: 1.5rem var(--page-margin);
    }

    .info-bar__container {
      gap: 1.5rem;
    }

    .info-bar__quote-text {
      font-size: 0.9rem;
    }

    .info-bar__rating-text,
    .info-bar__feature {
      font-size: 0.8rem;
    }
  }
.newsletter-signup {
    position: relative;
    min-height: auto;
    display: flex;
    overflow: hidden;
  }

  .newsletter-signup__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .newsletter-signup__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .newsletter-signup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: {{ section.settings.overlay_color }};
    opacity: {{ section.settings.overlay_opacity | divided_by: 100.0 }};
    z-index: 1;
  }

  .newsletter-signup__container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .newsletter-signup__content {
    padding: 9rem 3.5rem;
    max-width: 650px;
    width: 100%;
    background: rgba(255,255,255, 0.33)
  }

  .newsletter-signup__title {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.4;
    color: {{ section.settings.heading_color }};
    margin: 0 0 1.5rem;
  }

  .newsletter-signup__text {
    font-size: 16px;
    line-height: 1.7;
    color: {{ section.settings.text_color }};
    margin-bottom: 2rem;
  }

  .newsletter-signup__form-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
  }

  .newsletter-signup__input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid {{ section.settings.input_border_color }};
    border-radius: 4px;
    font-size: 15px;
    background: {{ section.settings.input_background }};
    color: {{ section.settings.text_color }};
    transition: border-color 0.3s ease;
  }

  .newsletter-signup__input:focus {
    outline: none;
    border-color: {{ section.settings.button_background }};
  }

  .newsletter-signup__input::placeholder {
    color: {{ section.settings.text_color | color_modify: 'alpha', 0.5 }};
  }

  .newsletter-signup__button {
    padding: 0.875rem 2rem;
    background: {{ section.settings.button_background }};
    color: {{ section.settings.button_text_color }};
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .newsletter-signup__button:hover {
    background: {{ section.settings.button_background | color_darken: 10 }};
    transform: translateY(-2px);
  }

  .newsletter-signup__success,
  .newsletter-signup__error {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 14px;
  }

  .newsletter-signup__success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }

  .newsletter-signup__error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }

  /* Mobile Responsiveness */
  @media (max-width: 968px) {
    .newsletter-signup {
      padding: 3rem var(--page-margin);
      min-height: 400px;
    }

    .newsletter-signup__content {
      padding: 2.5rem 2rem;
    }

    .newsletter-signup__form-wrapper {
      flex-direction: column;
    }

    .newsletter-signup__button {
      width: 100%;
    }
  }
.newsletter {
    background-color: #f5f3e8;
    padding: 4rem;
  }

  .newsletter__container {
    max-width: var(--page-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
  }

  .newsletter__image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .newsletter__img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
  }

  .newsletter__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .newsletter__title {
    font-family: 'Kaisei Decol', serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.3;
    color: #5a5a3d;
    margin: 0;
    letter-spacing: 0.01em;
  }

  .newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter__form-wrapper {
    display: flex;
    gap: 1rem;
  }

  .newsletter__input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(90, 90, 61, 0.2);
    border-radius: 0.25rem;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s;
  }

  .newsletter__input:focus {
    outline: none;
    border-color: #5a5a3d;
  }

  .newsletter__input::placeholder {
    color: #999;
  }

  .newsletter__button {
    padding: 0.875rem 2.5rem;
    background-color: #5a5a3d;
    color: #ffffff;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 400;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    white-space: nowrap;
  }

  .newsletter__button:hover {
    background-color: #4a4a30;
    transform: translateY(-2px);
  }

  .newsletter__success {
    padding: 1rem 1.5rem;
    background-color: rgba(90, 150, 90, 0.1);
    border: 1px solid rgba(90, 150, 90, 0.3);
    border-radius: 0.25rem;
    color: #2a5a2a;
    font-size: 0.95rem;
  }

  .newsletter__error {
    padding: 0.75rem 1rem;
    background-color: rgba(200, 50, 50, 0.1);
    border: 1px solid rgba(200, 50, 50, 0.3);
    border-radius: 0.25rem;
    color: #8a1a1a;
    font-size: 0.9rem;
  }

  @media (max-width: 900px) {
    .newsletter {
      padding: 3rem var(--page-margin);
    }

    .newsletter__container {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      text-align: center;
    }

    .newsletter__content {
      align-items: center;
    }

    .newsletter__form-wrapper {
      flex-direction: column;
    }

    .newsletter__button {
      width: 100%;
    }
  }

  @media (max-width: 600px) {
    .newsletter {
      padding: 2.5rem var(--page-margin);
    }

    .newsletter__container {
      gap: 2rem;
    }

    .newsletter__title {
      font-size: 32px;
    }
  }
.page-hero {
    background-color: #ffffff;
    padding: 3rem 0 0;
  }

  .page-hero__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--page-margin) 2.5rem;
  }

  .page-hero__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    text-align: left;
  }

  .page-hero__image-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: #f8f8f6;
  }

  .page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .page-hero {
      padding: 2rem 0 0;
    }

    .page-hero__container {
      padding-bottom: 2rem;
    }
  }
.page-main {
    background-color: #ffffff;
    padding: 5rem var(--page-margin) 6rem;
  }

  .page-main__container {
    max-width: 900px;
    margin: 0 auto;
  }

  .page-main__featured-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
  }

  .page-main__featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-main__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #888;
    margin-bottom: 2rem;
  }

  .page-main__breadcrumb a {
    color: #5a5a3d;
    text-decoration: none;
    transition: opacity 0.3s;
  }

  .page-main__breadcrumb a:hover {
    opacity: 0.7;
  }

  .page-main__content {
    display: flex;
    flex-direction: column;
  }

  .page-main__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0 0 2.5rem;
    letter-spacing: -0.02em;
  }

  .page-main__body {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 180%;
    color: #4a4a4a;
  }

  .page-main__body h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #2a2a2a;
    margin: 3rem 0 1.5rem;
  }

  .page-main__body h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #2a2a2a;
    margin: 2.5rem 0 1.25rem;
  }

  .page-main__body h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.4;
    color: #2a2a2a;
    margin: 2rem 0 1rem;
  }

  .page-main__body p {
    margin: 0 0 1.5rem;
  }

  .page-main__body p:last-child {
    margin-bottom: 0;
  }

  .page-main__body a {
    color: #5a5a3d;
    text-decoration: underline;
    transition: opacity 0.3s;
  }

  .page-main__body a:hover {
    opacity: 0.7;
  }

  .page-main__body ul,
  .page-main__body ol {
    margin: 0 0 1.5rem;
    padding-left: 2rem;
  }

  .page-main__body li {
    margin-bottom: 0.75rem;
  }

  .page-main__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
  }

  .page-main__body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background-color: #f8f8f6;
    border-left: 4px solid #5a5a3d;
    border-radius: 8px;
    font-style: italic;
  }

  .page-main__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
  }

  .page-main__body table th,
  .page-main__body table td {
    padding: 1rem;
    border: 1px solid #e8e8e8;
    text-align: left;
  }

  .page-main__body table th {
    background-color: #f8f8f6;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .page-main {
      padding: 4rem var(--page-margin);
    }

    .page-main__featured-image {
      height: 300px;
      margin-bottom: 2rem;
    }

    .page-main__title {
      font-size: 36px;
      margin-bottom: 2rem;
    }

    .page-main__body {
      font-size: 16px;
    }

    .page-main__body h2 {
      font-size: 28px;
      margin-top: 2.5rem;
    }

    .page-main__body h3 {
      font-size: 22px;
      margin-top: 2rem;
    }

    .page-main__body h4 {
      font-size: 18px;
    }
  }

  @media (max-width: 600px) {
    .page-main {
      padding: 3rem var(--page-margin);
    }

    .page-main__title {
      font-size: 32px;
    }

    .page-main__featured-image {
      height: 250px;
    }
  }
.product-grid {
    background-color: #fff;
    padding: 0 var(--page-margin) 4rem;
  }

  .product-grid__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .product-grid__slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .product-grid__slider {
    overflow: hidden;
    position: relative;
  }

  .product-grid__items {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s ease-out;
    scroll-behavior: smooth;
  }

  .product-grid__slider-wrapper--centered .product-grid__items {
    justify-content: center;
  }

  .product-grid__slider-wrapper--centered .product-grid__nav {
    display: none;
  }

  .product-card {
    background-color: #ffffff;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: calc(33.333% - 1.333rem);
    border-radius: 30px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .product-grid__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(90, 90, 61, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    color: #5a5a3d;
  }

  .product-grid__nav:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.05);
  }

  .product-grid__nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .product-grid__nav svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .product-grid__nav--prev {
    left: -1.5rem;
  }

  .product-grid__nav--next {
    right: -1.5rem;
  }

  .product-grid__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .product-grid__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(90, 90, 61, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
  }

  .product-grid__dot.active {
    background-color: #5a5a3d;
    width: 1.5rem;
    border-radius: 0.25rem;
  }

  .product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
  }

  .product-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #f8f8f6;
    margin: 0;
  }

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

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

  .product-card__footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    width: 100%;
    background-color: #ffffff;
  }

  .product-card__info {
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .product-card__title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
  }

  .product-card__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #2a2a2a;
    margin: 0;
    transition: color 0.2s;
  }

  .product-card__title-link:hover .product-card__title {
    color: #5a5a3d;
  }

  .product-card__price {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #5a5a3d;
    margin: 0;
  }

  .product-card__button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #d4b875;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    border-radius: 0.25rem;
    transition: background-color 0.3s, transform 0.2s;
    flex-shrink: 0;
  }

  .product-card__button:hover {
    background-color: #c9a960;
    transform: translateY(-2px);
  }

  @media (max-width: 900px) {
    .product-card {
      min-width: 100%;
    }

    .product-grid__nav--prev {
      left: 0.5rem;
    }

    .product-grid__nav--next {
      right: 0.5rem;
    }
  }

  @media (max-width: 600px) {
    .product-grid {
      padding: 2rem var(--page-margin) 3rem;
    }

    .product-card {
      padding: 2rem 1.5rem 1.5rem;
      min-width: 100%;
    }

    .product-card__image-wrapper {
      aspect-ratio: 1;
    }

    .product-card__footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }

    .product-card__button {
      text-align: center;
    }

    .product-grid__nav {
      width: 2.5rem;
      height: 2.5rem;
    }

    .product-grid__nav svg {
      width: 1.25rem;
      height: 1.25rem;
    }
  }
.product-main {
    background-color: #ffffff;
    padding: 3rem var(--page-margin);
  }

  .product-main__container {
    max-width: var(--page-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
  }

  /* Gallery */
  .product-main__gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-main__images {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 30px;
    background-color: #f8f8f6;
  }

  .product-main__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .product-main__image-wrapper.active {
    opacity: 1;
  }

  .product-main__image {
    width: 100%;
    height: 100%;
  }

  .product-main__thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
  }

  .product-main__thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s;
    background: none;
    padding: 0;
  }

  .product-main__thumbnail.active {
    border-color: #5a5a3d;
  }

  .product-main__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Product Info */
  .product-main__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 1rem;
  }

  .product-main__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #888;
  }

  .product-main__breadcrumb a {
    color: #5a5a3d;
    text-decoration: none;
    transition: opacity 0.3s;
  }

  .product-main__breadcrumb a:hover {
    opacity: 0.7;
  }

  .product-main__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0;
  }

  .product-main__price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .product-main__price {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    color: #2a2a2a;
  }

  .product-main__price--sale {
    color: #d4b875;
  }

  .product-main__price--compare {
    font-size: 24px;
    font-weight: 400;
    color: #888;
    text-decoration: line-through;
  }

  .product-main__discount-badge {
    padding: 0.35rem 0.75rem;
    background-color: #d4b875;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
  }

  .product-main__description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(90, 90, 61, 0.2);
  }

  .product-main__description p {
    margin: 0 0 1rem;
  }

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

  /* Form */
  .product-main__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-main__variants {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-main__option-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #2a2a2a;
    margin-bottom: 0.75rem;
  }

  .product-main__option-values {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .product-main__option-values input[type="radio"] {
    display: none;
  }

  .product-main__option-value {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(90, 90, 61, 0.2);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2a2a2a;
    cursor: pointer;
    transition: all 0.3s;
  }

  .product-main__option-value:hover {
    border-color: #5a5a3d;
  }

  .product-main__option-values input[type="radio"]:checked + .product-main__option-value {
    border-color: #5a5a3d;
    background-color: #5a5a3d;
    color: #ffffff;
  }

  .product-main__quantity-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #2a2a2a;
    margin-bottom: 0.75rem;
  }

  .product-main__quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 2px solid rgba(90, 90, 61, 0.2);
    border-radius: 8px;
    overflow: hidden;
  }

  .product-main__quantity-button {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f6;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .product-main__quantity-button:hover {
    background-color: #e8e8e6;
  }

  .product-main__quantity-button svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #2a2a2a;
  }

  .product-main__quantity-input {
    width: 4rem;
    height: 3rem;
    text-align: center;
    border: none;
    border-left: 2px solid rgba(90, 90, 61, 0.2);
    border-right: 2px solid rgba(90, 90, 61, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
  }

  .product-main__quantity-input::-webkit-inner-spin-button,
  .product-main__quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .product-main__add-to-cart {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #5a5a3d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }

  .product-main__add-to-cart:hover:not(:disabled) {
    background-color: #4a4a30;
    transform: translateY(-2px);
  }

  .product-main__add-to-cart:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  .product-main__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(90, 90, 61, 0.2);
  }

  .product-main__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
  }

  .product-main__feature svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #5a5a3d;
    flex-shrink: 0;
  }

  @media (max-width: 1024px) {
    .product-main__container {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }

  @media (max-width: 600px) {
    .product-main {
      padding: 2rem var(--page-margin);
    }

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

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

    .product-main__price--compare {
      font-size: 20px;
    }

    .product-main__thumbnail {
      width: 80px;
      height: 80px;
    }
  }
.product-recommendations {
    background-color: #f8f8f6;
    padding: 5rem var(--page-margin);
  }

  .product-recommendations__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .product-recommendations__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #5a5a3d;
    margin: 0 0 3rem;
    text-align: center;
  }

  .product-recommendations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .product-recommendations__card {
    background-color: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .product-recommendations__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .product-recommendations__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }

  .product-recommendations__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #f8f8f6;
  }

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

  .product-recommendations__card:hover .product-recommendations__image {
    transform: scale(1.08);
  }

  .product-recommendations__info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-recommendations__product-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #2a2a2a;
    margin: 0;
  }

  .product-recommendations__price {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: #2a2a2a;
  }

  @media (max-width: 1200px) {
    .product-recommendations__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 900px) {
    .product-recommendations {
      padding: 4rem var(--page-margin);
    }

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

    .product-recommendations__title {
      font-size: 32px;
      margin-bottom: 2.5rem;
    }
  }

  @media (max-width: 600px) {
    .product-recommendations {
      padding: 3rem var(--page-margin);
    }

    .product-recommendations__grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .product-recommendations__title {
      font-size: 28px;
    }

    .product-recommendations__image-wrapper {
      aspect-ratio: 1;
    }
  }
.search {
    background-color: #fff;
    padding: 4rem var(--page-margin);
    min-height: calc(100vh - 4rem);
  }

  .search__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .search__header {
    margin-bottom: 3rem;
  }

  .search__title {
    font-family: 'Kaisei Decol', serif;
    font-weight: 700;
    font-size: clamp(32px, 6vw, 48px);
    color: #1a1a1a;
    margin: 0 0 2rem;
    text-align: center;
  }

  .search__form {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .search__input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.2s;
  }

  .search__input:focus {
    outline: none;
    border-color: #5a5a3d;
  }

  .search__submit {
    padding: 1rem 1.5rem;
    background-color: #5a5a3d;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search__submit:hover {
    background-color: #4a4a30;
  }

  .search__submit svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .search__no-results {
    text-align: center;
    padding: 4rem 2rem;
  }

  .search__no-results-icon {
    color: #d4b875;
    margin-bottom: 1.5rem;
  }

  .search__no-results-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #5a5a5a;
  }

  .search__results-info {
    margin-bottom: 2rem;
    text-align: center;
  }

  .search__results-info p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #5a5a5a;
  }

  .search__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .search-card {
    background-color: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .search-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .search-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .search-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f6;
    border-radius: 20px;
    overflow: hidden;
  }

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

  .search-card:hover .search-card__image {
    transform: scale(1.08);
  }

  .search-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #d4b875;
  }

  .search-card__content {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  .search-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
  }

  .search-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
  }

  .search-card__price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #5a5a3d;
    margin: 0;
  }

  .search-card__button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    background-color: #d4b875;
    color: #1a1a1a;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
    flex-shrink: 0;
  }

  .search-card__button:hover {
    background-color: #c4a865;
  }

  .search-card__type {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #5a5a5a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .search__pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
  }

  .search__pagination a,
  .search__pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #1a1a1a;
    background-color: #f8f8f6;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
  }

  .search__pagination a:hover {
    background-color: #5a5a3d;
    color: #ffffff;
  }

  .search__pagination .current {
    background-color: #5a5a3d;
    color: #ffffff;
  }

  @media (max-width: 900px) {
    .search {
      padding: 3rem var(--page-margin);
    }

    .search__grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1.5rem;
    }
  }

  @media (max-width: 600px) {
    .search {
      padding: 2rem var(--page-margin);
    }

    .search__header {
      margin-bottom: 2rem;
    }

    .search__form {
      flex-direction: column;
    }

    .search__grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .search-card__image-wrapper {
      aspect-ratio: 1;
    }

    .search-card__content {
      padding: 1.5rem 1.25rem;
    }
  }
.testimonials {
    background-color: #ffffff;
    padding: 5rem var(--page-margin);
  }

  .testimonials__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .testimonials__title {
    font-family: 'Kaisei Decol', serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(32px, 6vw, 64px);
    line-height: clamp(48px, 8vw, 93px);
    color: #5a5a3d;
    margin: 0 0 3.5rem 0;
    letter-spacing: 0.01em;
  }

  .testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .testimonial-card__image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
  }

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

  .testimonial-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .testimonial-card__name {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    color: #2a2a2a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .testimonial-card__job-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    color: #666;
    margin: 0 0 0.75rem 0;
  }

  .testimonial-card__quote {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
  }

  .testimonial-card__quote::before {
    content: '"';
    font-size: 1.2em;
  }

  .testimonial-card__quote::after {
    content: '"';
    font-size: 1.2em;
  }

  @media (max-width: 900px) {
    .testimonials {
      padding: 4rem var(--page-margin);
    }

    .testimonials__title {
      margin-bottom: 3rem;
    }

    .testimonials__grid {
      grid-template-columns: 1fr;
      gap: 3rem;
      max-width: 500px;
      margin: 0 auto;
    }
  }

  @media (max-width: 600px) {
    .testimonials {
      padding: 3rem var(--page-margin);
    }

    .testimonials__title {
      font-size: 1.75rem;
      margin-bottom: 2.5rem;
    }

    .testimonials__grid {
      gap: 2.5rem;
    }

    .testimonial-card {
      gap: 1.25rem;
    }
  }
.text-block {
    background-color: #ffffff;
    padding: 5rem var(--page-margin);
  }

  .text-block__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .text-block__title {
    font-family: 'Kaisei Decol', serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.3;
    color: #565729;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .text-block__text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(18px, 3vw, 32px);
    line-height: 1.8;
    color: #565729;
  }

  .text-block__text p {
    margin: 0 0 1.25rem 0;
  }

  .text-block__text p:last-child {
    margin-bottom: 0;
  }

  .text-block__text strong {
    font-weight: 600;
    color: #2a2a2a;
  }

  @media (max-width: 768px) {
    .text-block {
      padding: 4rem var(--page-margin);
    }

    .text-block__title {
      margin-bottom: 1.5rem;
    }
  }

  @media (max-width: 600px) {
    .text-block {
      padding: 3rem var(--page-margin);
    }
  }
.text-with-background {
    position: relative;
    padding: 0 var(--page-margin);
    min-height: {{ section.settings.section_height }}px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .text-with-background__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .text-with-background__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: {{ section.settings.image_position }};
  }

  .text-with-background__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: {{ section.settings.overlay_color }};
    opacity: {{ section.settings.overlay_opacity | divided_by: 100.0 }};
    z-index: 1;
  }

  .text-with-background__container {
    max-width: 1400px;
    width: 66.66%;
    background: rgba(255,255,255, 0.33);
    padding: 50px;
    margin-left: 10%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
  }

  .text-with-background__content {
    background: {{ section.settings.content_background }};
    background: rgba(245, 240, 232, {{ section.settings.content_opacity | divided_by: 100.0 }});
    padding: {{ section.settings.content_padding }}px;
    border-radius: {{ section.settings.content_border_radius }}px;
    max-width: {{ section.settings.content_width }}px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .text-with-background__title {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: clamp(28px, 4vw, {{ section.settings.title_size }}px);
    line-height: 1.4;
    color: {{ section.settings.heading_color }};
    margin: 0 0 2rem;
    letter-spacing: -0.01em;
  }

  .text-with-background__text {
    font-size: {{ section.settings.text_size }}px;
    line-height: 1.8;
    color: {{ section.settings.text_color }};
    margin-bottom: 0;
  }

  .text-with-background__text p {
    margin: 0 0 1.25rem;
  }

  .text-with-background__text p:last-child {
    margin-bottom: 0;
  }

  .text-with-background__button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.875rem 2rem;
    background: {{ section.settings.button_background }};
    color: {{ section.settings.button_text_color }};
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .text-with-background__button:hover {
    background: {{ section.settings.button_background | color_darken: 10 }};
    transform: translateY(-2px);
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .text-with-background {
      padding: 3rem var(--page-margin);
      min-height: auto;
    }

    .text-with-background__content {
      padding: 2rem;
    }

    .text-with-background__title {
      font-size: 24px;
    }

    .text-with-background__text {
      font-size: 15px;
    }
  }

/* CSS from block stylesheet tags */
.article__content {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
  }

  .article__content p {
    margin: 0 0 1.5rem;
  }

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

  .article__content h2,
  .article__content h3,
  .article__content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2.5rem 0 1.25rem;
    line-height: 1.3;
  }

  .article__content h2 {
    font-size: 32px;
  }

  .article__content h3 {
    font-size: 26px;
  }

  .article__content h4 {
    font-size: 22px;
  }

  .article__content strong {
    font-weight: 600;
    color: #2a2a2a;
  }

  .article__content a {
    color: #5a5a3d;
    text-decoration: underline;
    transition: color 0.2s;
  }

  .article__content a:hover {
    color: #d4b875;
  }

  .article__content ul,
  .article__content ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
  }

  .article__content li {
    margin-bottom: 0.5rem;
  }

  .article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 2rem 0;
  }

  .article__content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background-color: #f8f8f6;
    border-left: 4px solid #d4b875;
    border-radius: 8px;
    font-style: italic;
    color: #5a5a5a;
  }

  @media (max-width: 768px) {
    .article__content {
      font-size: 16px;
    }

    .article__content h2 {
      font-size: 28px;
    }

    .article__content h3 {
      font-size: 22px;
    }

    .article__content h4 {
      font-size: 20px;
    }
  }
.article__featured-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 30px;
    background-color: #f8f8f6;
    margin-bottom: 3rem;
  }

  .article__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .article__featured-image {
      border-radius: 20px;
      margin-bottom: 2.5rem;
    }
  }
.article__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .article__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
  }

  .article__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .article__date,
  .article__author {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    color: #888888;
  }

  .article__author::before {
    content: "•";
    margin-right: 1rem;
  }

  .article__reading-time::before {
    content: "•";
    margin: 0 0.5rem;
  }

  @media (max-width: 768px) {
    .article__header {
      margin-bottom: 2.5rem;
    }

    .article__title {
      margin-bottom: 1.25rem;
    }
  }
.author-bio {
    background: var(--author-bg);
    border: 2px solid var(--author-border);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    gap: 2rem;
    align-items: start;
  }

  .author-bio--vertical {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-bio__image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
  }

  .author-bio__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .author-bio__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .author-bio__name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--author-text);
    margin: 0;
  }

  .author-bio__credentials {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--author-text);
    opacity: 0.7;
    margin: 0;
  }

  .author-bio__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--author-text);
  }

  .author-bio__text p {
    margin: 0 0 0.75rem;
  }

  .author-bio__text p:last-child {
    margin-bottom: 0;
  }

  .author-bio__social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .author-bio--vertical .author-bio__social {
    justify-content: center;
  }

  .author-bio__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--author-border);
    color: var(--author-text);
    transition: background 0.3s, transform 0.2s;
  }

  .author-bio__social-link:hover {
    background: var(--author-text);
    color: var(--author-bg);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .author-bio {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.5rem;
      gap: 1.5rem;
    }

    .author-bio__image {
      width: 100px;
      height: 100px;
    }

    .author-bio__name {
      font-size: 20px;
    }

    .author-bio__social {
      justify-content: center;
    }
  }
.data-table-wrapper {
    margin: 2rem 0;
  }

  .data-table__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
  }

  .data-table__description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0 0 1rem;
  }

  .data-table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
  }

  .data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    background: #fff;
  }

  .data-table thead {
    background: #f8f9fa;
  }

  .data-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .data-table td {
    padding: 1rem;
    font-size: 15px;
    color: #4a4a4a;
    border-bottom: 1px solid #f0f0f0;
  }

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

  .data-table tbody tr:hover {
    background: #f8f9fa;
  }

  .data-table--striped tbody tr:nth-child(even) {
    background: #f8f9fa;
  }

  .data-table--striped tbody tr:nth-child(even):hover {
    background: #f0f1f2;
  }

  .data-table--compact th,
  .data-table--compact td {
    padding: 0.75rem;
  }

  @media (max-width: 768px) {
    .data-table th,
    .data-table td {
      padding: 0.75rem;
      font-size: 14px;
    }

    .data-table th {
      font-size: 12px;
    }
  }
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.highlight-box {
    background: var(--highlight-bg);
    border: 2px solid var(--highlight-border);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
  }

  .highlight-box--compact {
    padding: 1.5rem;
  }

  .highlight-box--large {
    padding: 2.5rem;
  }

  .highlight-box__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--highlight-border);
    color: var(--highlight-icon);
  }

  .highlight-box__icon svg {
    width: 24px;
    height: 24px;
  }

  .highlight-box__content {
    flex: 1;
  }

  .highlight-box__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--highlight-text);
    margin: 0 0 1rem;
  }

  .highlight-box__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--highlight-text);
  }

  .highlight-box__text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .highlight-box__text li::before {
    content: '✓';
    color: var(--highlight-icon);
    font-weight: bold;
    margin-right: 0.75rem;
  }

  @media (max-width: 768px) {
    .highlight-box {
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
    }

    .highlight-box__icon {
      width: 36px;
      height: 36px;
    }

    .highlight-box__title {
      font-size: 18px;
    }

    .highlight-box__text {
      font-size: 14px;
    }
  }
.image-block {
    margin: 2.5rem 0;
  }

  .image-block--full-width {
    margin-left: calc(var(--page-margin) * -1);
    margin-right: calc(var(--page-margin) * -1);
    width: calc(100% + var(--page-margin) * 2);
  }

  .image-block__wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
  }

  .image-block--rounded .image-block__wrapper {
    border-radius: 20px;
  }

  .image-block--no-radius .image-block__wrapper {
    border-radius: 0;
  }

  .image-block__link {
    display: block;
  }

  .image-block__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  .image-block__link:hover .image-block__image {
    transform: scale(1.02);
  }

  .image-block--cover .image-block__wrapper {
    aspect-ratio: 16/9;
  }

  .image-block--cover .image-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .image-block--square .image-block__wrapper {
    aspect-ratio: 1/1;
  }

  .image-block--square .image-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .image-block__placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 12px;
  }

  .image-block__placeholder svg {
    width: 100px;
    height: 100px;
    opacity: 0.3;
  }

  .image-block__caption {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 1rem 0 0;
    font-style: italic;
  }

  @media (max-width: 768px) {
    .image-block--full-width {
      margin-left: 0;
      margin-right: 0;
      width: 100%;
    }

    .image-block__wrapper {
      border-radius: 8px;
    }

    .image-block--rounded .image-block__wrapper {
      border-radius: 12px;
    }
  }
.info-box {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid;
  }

  .info-box--info {
    background: #e3f2fd;
    border-color: #2196f3;
    color: #0d47a1;
  }

  .info-box--warning {
    background: #fff3e0;
    border-color: #ff9800;
    color: #e65100;
  }

  .info-box--success {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #1b5e20;
  }

  .info-box--tip {
    background: #f3e5f5;
    border-color: #9c27b0;
    color: #4a148c;
  }

  .info-box__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .info-box--info .info-box__icon {
    color: #2196f3;
  }

  .info-box--warning .info-box__icon {
    color: #ff9800;
  }

  .info-box--success .info-box__icon {
    color: #4caf50;
  }

  .info-box--tip .info-box__icon {
    color: #9c27b0;
  }

  .info-box__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .info-box__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
  }

  .info-box__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
  }

  .info-box__text p {
    margin: 0 0 0.75rem;
  }

  .info-box__text p:last-child {
    margin-bottom: 0;
  }

  .info-box__text ul,
  .info-box__text ol {
    margin: 0;
    padding-left: 1.5rem;
  }

  .info-box__text li {
    margin-bottom: 0.5rem;
  }

  @media (max-width: 768px) {
    .info-box {
      padding: 1.25rem;
      gap: 1rem;
    }

    .info-box__icon {
      width: 28px;
      height: 28px;
    }

    .info-box__title {
      font-size: 15px;
    }

    .info-box__text {
      font-size: 14px;
    }
  }
.numbered-steps {
    margin: 2.5rem 0;
  }

  .numbered-steps__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1a1a1a;
    margin: 0 0 2rem;
  }

  .numbered-steps__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .numbered-steps--compact .numbered-steps__list {
    gap: 1rem;
  }

  .step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--steps-bg);
    border-radius: 12px;
    position: relative;
  }

  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2.5rem;
    bottom: -1rem;
    width: 2px;
    height: 1rem;
    background: var(--steps-accent);
    opacity: 0.3;
  }

  .numbered-steps--compact .step {
    padding: 1.5rem;
  }

  .numbered-steps--compact .step:not(:last-child)::after {
    display: none;
  }

  .step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--steps-accent);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    border-radius: 50%;
  }

  .step__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.25rem;
  }

  .step__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    margin: 0;
  }

  .step__description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
  }

  .step__description p {
    margin: 0 0 0.75rem;
  }

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

  @media (max-width: 768px) {
    .numbered-steps__title {
      font-size: 20px;
      margin-bottom: 1.5rem;
    }

    .step {
      padding: 1.5rem;
      gap: 1.25rem;
    }

    .step__number {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }

    .step__title {
      font-size: 16px;
    }

    .step__description {
      font-size: 14px;
    }
  }
.product-feature {
    background: var(--pf-bg);
    border: 2px solid var(--pf-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
  }

  .product-feature--compact {
    padding: 1.5rem;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
  }

  .product-feature--full-width {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-feature__image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }

  .product-feature--full-width .product-feature__image {
    max-width: 300px;
    margin: 0 auto;
  }

  .product-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-feature__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product-feature__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #4caf50;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    align-self: flex-start;
  }

  .product-feature--full-width .product-feature__badge {
    align-self: center;
  }

  .product-feature__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--pf-text);
    margin: 0;
    line-height: 1.3;
  }

  .product-feature__description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--pf-text);
    margin: 0;
  }

  .product-feature__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-feature__features li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--pf-text);
    padding-left: 1.5rem;
    position: relative;
  }

  .product-feature__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
  }

  .product-feature__rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .product-feature--full-width .product-feature__rating {
    justify-content: center;
  }

  .product-feature__stars {
    display: flex;
    gap: 0.25rem;
  }

  .star {
    font-size: 18px;
    color: #ddd;
  }

  .star--filled {
    color: #ffc107;
  }

  .product-feature__rating-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--pf-text);
  }

  .product-feature__price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .product-feature--full-width .product-feature__price {
    justify-content: center;
  }

  .product-feature__compare-price {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
  }

  .product-feature__current-price {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--pf-text);
  }

  .product-feature__cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #4caf50;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.3s, transform 0.2s;
  }

  .product-feature__cta:hover {
    background: #45a049;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .product-feature {
      grid-template-columns: 1fr;
      padding: 1.5rem;
      gap: 1.5rem;
      text-align: center;
    }

    .product-feature__image {
      max-width: 200px;
      margin: 0 auto;
    }

    .product-feature__badge {
      align-self: center;
    }

    .product-feature__rating {
      justify-content: center;
    }

    .product-feature__price {
      justify-content: center;
    }

    .product-feature__title {
      font-size: 20px;
    }

    .product-feature__cta {
      width: 100%;
    }
  }
.quote-box {
    background: var(--quote-bg);
    border-left: 4px solid var(--quote-border);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    position: relative;
  }

  .quote-box--centered {
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--quote-border);
  }

  .quote-box--large {
    padding: 3rem;
  }

  .quote-box__icon {
    color: var(--quote-border);
    margin-bottom: 1rem;
  }

  .quote-box--centered .quote-box__icon {
    display: flex;
    justify-content: center;
  }

  .quote-box__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .quote-box__text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: var(--quote-text);
  }

  .quote-box--large .quote-box__text {
    font-size: 20px;
  }

  .quote-box__text p {
    margin: 0 0 1rem;
  }

  .quote-box__text p:last-child {
    margin-bottom: 0;
  }

  .quote-box__footer {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .quote-box--centered .quote-box__footer {
    justify-content: center;
  }

  .quote-box__author-image {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0e0e0;
  }

  .quote-box__author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .quote-box__author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .quote-box__author {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    font-style: normal;
    color: var(--quote-text);
  }

  .quote-box__author-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    color: var(--quote-text);
    opacity: 0.7;
  }

  @media (max-width: 768px) {
    .quote-box {
      padding: 1.5rem;
    }

    .quote-box--large {
      padding: 2rem;
    }

    .quote-box__text {
      font-size: 16px;
    }

    .quote-box--large .quote-box__text {
      font-size: 18px;
    }

    .quote-box__author-image {
      width: 40px;
      height: 40px;
    }

    .quote-box__author {
      font-size: 15px;
    }

    .quote-box__author-title {
      font-size: 13px;
    }
  }
.toc {
    background: var(--toc-bg);
    border: 2px solid var(--toc-border);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
  }

  .toc--sticky {
    position: sticky;
    top: 2rem;
    z-index: 10;
  }

  .toc__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--toc-text);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--toc-border);
  }

  .toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .toc-item {
    list-style: none;
  }

  .toc-item__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s, transform 0.2s;
  }

  .toc-item__link:hover {
    color: #1a1a1a;
    transform: translateX(5px);
  }

  .toc-item__link::before {
    content: '→';
    font-size: 14px;
    opacity: 0.5;
    transition: opacity 0.2s;
  }

  .toc-item__link:hover::before {
    opacity: 1;
  }

  @media (max-width: 768px) {
    .toc {
      padding: 1.5rem;
    }

    .toc--sticky {
      position: relative;
      top: 0;
    }

    .toc__title {
      font-size: 18px;
      margin-bottom: 1.25rem;
    }
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
.video-block {
    margin: 2.5rem 0;
  }

  .video-block--full-width {
    margin-left: calc(var(--page-margin) * -1);
    margin-right: calc(var(--page-margin) * -1);
    width: calc(100% + var(--page-margin) * 2);
  }

  .video-block__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
    margin: 0 0 1rem;
  }

  .video-block__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
  }

  .video-block--square .video-block__wrapper {
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
  }

  .video-block--cinema .video-block__wrapper {
    padding-bottom: 42.86%; /* 21:9 Aspect Ratio */
  }

  .video-block__iframe,
  .video-block__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-block__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #999;
  }

  .video-block__placeholder svg {
    width: 100px;
    height: 100px;
    opacity: 0.3;
  }

  .video-block__caption {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 1rem 0 0;
    font-style: italic;
  }

  @media (max-width: 768px) {
    .video-block__wrapper {
      border-radius: 8px;
    }

    .video-block__title {
      font-size: 18px;
    }
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }