/** Shopify CDN: Minification failed

Line 23:15 Expected identifier but found whitespace
Line 23:17 Unexpected "{"
Line 23:26 Expected ":"
Line 24:14 Expected identifier but found whitespace
Line 24:16 Unexpected "{"
Line 24:25 Expected ":"
Line 24:49 Expected ":"
Line 39:10 Expected identifier but found whitespace
Line 39:12 Unexpected "{"
Line 39:21 Expected ":"
... and 127 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about-content (INDEX:1) */
.about-content {
    padding: 4rem 2rem;
    background: {{ section.settings.background_color }};
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .about-content__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }

  .about-content__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 2rem;
    color: {{ section.settings.title_color }};
  }

  .about-content__body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
  }

  .about-content__body p {
    margin: 0 0 1.25rem;
  }

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

  @media (max-width: 768px) {
    .about-content {
      padding: 3rem 1.5rem;
    }

    .about-content__title {
      font-size: 1.75rem;
    }

    .about-content__body {
      font-size: 1rem;
    }
  }
/* END_SECTION:about-content */

/* START_SECTION:about-hero-image (INDEX:2) */
.about-hero-image {
    max-width: {{ section.settings.max_width }}px;
    margin: {{ section.settings.section_margin }}px auto 0;
    border-radius: {{ section.settings.border_radius }}px;
    overflow: hidden;
  }

  .about-hero-image__img {
    display: block;
    width: 100%;
    height: {{ section.settings.image_height }}px;
    object-fit: cover;
  }

  .about-hero-image__placeholder {
    width: 100%;
    background: #e8eaf0;
  }

  .about-hero-image__placeholder svg {
    display: block;
    width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .about-hero-image {
      margin-top: {{ section.settings.section_margin | divided_by: 2 }}px;
    }

    .about-hero-image__img {
      height: 250px;
    }
  }
/* END_SECTION:about-hero-image */

/* START_SECTION:article (INDEX:3) */
.article {
    padding: 4rem 2rem;
    background: var(--article-background-color);
  }

  .article__container {
    max-width: var(--article-max-width);
    margin: 0 auto;
  }

  .article__header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .article__title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--article-title-color);
  }

  .article__meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin: 0;
  }

  .article__image-wrap {
    margin: 0 0 2.5rem;
    border-radius: 12px;
    overflow: hidden;
  }

  .article__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .article__content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
  }

  .article__content > *:first-child {
    margin-top: 0;
  }

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

  .article__content h2,
  .article__content h3,
  .article__content h4 {
    color: var(--article-title-color);
    line-height: 1.3;
    margin: 2.5rem 0 1rem;
  }

  .article__content h2 { font-size: 1.75rem; }
  .article__content h3 { font-size: 1.4rem; }
  .article__content h4 { font-size: 1.2rem; }

  .article__content a {
    color: var(--article-accent-color);
    text-decoration: underline;
    transition: color 0.2s ease;
  }

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

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

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

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

  .article__content blockquote {
    margin: 1.5rem 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-left: 4px solid var(--article-accent-color);
    color: #555;
    font-style: italic;
  }

  /* Comments */
  .article__comments {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid #eee;
  }

  .article__comments-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--article-title-color);
    margin: 0 0 1.5rem;
  }

  .article__comment {
    padding: 1.25rem 1.5rem;
    background: #f7f8fa;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .article__comment-author {
    font-weight: 600;
    color: var(--article-title-color);
    margin: 0;
  }

  .article__comment-date {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    margin: 0.15rem 0 0.75rem;
  }

  .article__comment-body {
    margin: 0;
    line-height: 1.7;
    color: #444;
  }

  .article__comments-pagination {
    margin: 1.5rem 0;
    text-align: center;
  }

  /* Comment form */
  .article__form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--article-title-color);
    margin: 2.5rem 0 1.5rem;
  }

  .article__form-row--split {
    display: flex;
    gap: 1.5rem;
  }

  .article__form-field {
    flex: 1 1 auto;
    margin-bottom: 1.25rem;
  }

  .article__form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.4rem;
  }

  .article__form-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    background: #fff;
    border: 1px solid #d8dbe2;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .article__form-input:focus {
    outline: none;
    border-color: var(--article-accent-color);
    box-shadow: 0 0 0 3px rgba(91, 107, 158, 0.15);
  }

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

  .article__form-submit {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--article-accent-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .article__form-submit:hover {
    background: #FFB800;
  }

  @media (max-width: 768px) {
    .article {
      padding: 3rem 1.5rem;
    }

    .article__title {
      font-size: 1.9rem;
    }

    .article__content {
      font-size: 1rem;
    }

    .article__form-row--split {
      flex-direction: column;
      gap: 0;
    }
  }
/* END_SECTION:article */

/* START_SECTION:blog (INDEX:4) */
.blog {
    padding: 4rem 2rem;
    background: var(--blog-background-color);
  }

  .blog__container {
    max-width: var(--blog-max-width);
    margin: 0 auto;
  }

  .blog__heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 3rem;
    color: var(--blog-heading-color);
  }

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

  .blog__article {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
  }

  .blog__list .blog__article:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .blog__article-image-link {
    flex: 0 0 280px;
    display: block;
    overflow: hidden;
    border-radius: 12px;
  }

  .blog__article-image {
    display: block;
    width: 280px;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .blog__article-image-link:hover .blog__article-image {
    transform: scale(1.04);
  }

  .blog__article-body {
    flex: 1 1 auto;
    min-width: 0;
  }

  .blog__article-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.75rem;
  }

  .blog__article-link {
    color: var(--blog-heading-color);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .blog__article-link:hover {
    color: #FFB800;
  }

  .blog__article-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin: 0 0 1rem;
  }

  .blog__article-excerpt {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 1rem;
  }

  .blog__article-readmore {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blog-accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .blog__article-readmore:hover {
    color: #FFB800;
  }

  .blog__pagination {
    margin-top: 3.5rem;
    text-align: center;
  }

  .blog__pagination .pagination,
  .blog__pagination ul {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .blog__pagination a,
  .blog__pagination span {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--blog-accent-color);
  }

  .blog__pagination a:hover {
    background: #f3f4f8;
  }

  .blog__pagination .current,
  .blog__pagination [aria-current] {
    background: var(--blog-accent-color);
    color: #fff;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .blog {
      padding: 3rem 1.5rem;
    }

    .blog__heading {
      font-size: 1.75rem;
      margin-bottom: 2rem;
    }

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

    .blog__article-image-link {
      flex: 0 0 auto;
      width: 100%;
    }

    .blog__article-image {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
    }

    .blog__article-title {
      font-size: 1.25rem;
    }
  }
/* END_SECTION:blog */

/* START_SECTION:collection-grid (INDEX:6) */
.collection-grid {
    padding: 2rem 2rem 4rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .collection-grid__container {
    width: 100%;
  }

  .collection-grid__items {
    display: grid;
    grid-template-columns: repeat({{ section.settings.columns_desktop }}, 1fr);
    gap: 2rem;
  }

  .collection-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background: white;
  }

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

  .collection-card__image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: #F5F5F5;
  }

  .collection-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collection-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collection-card__placeholder svg {
    width: 100%;
    height: 100%;
  }

  .collection-card__content {
    padding: 1.5rem;
  }

  .collection-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: #333;
  }

  .collection-card__count {
    font-weight: 400;
    color: #666;
  }

  @media (max-width: 1024px) {
    .collection-grid__items {
      grid-template-columns: repeat({{ section.settings.columns_tablet }}, 1fr);
      gap: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .collection-grid {
      padding: 1.5rem 1.5rem 3rem;
    }

    .collection-grid__items {
      grid-template-columns: repeat({{ section.settings.columns_mobile }}, 1fr);
      gap: 1.25rem;
    }

    .collection-card__content {
      padding: 1rem;
    }

    .collection-card__title {
      font-size: 1rem;
    }
  }
/* END_SECTION:collection-grid */

/* START_SECTION:collection-header (INDEX:7) */
.collection-header {
    padding: 1.5rem 2rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .collection-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .collection-header__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #333;
  }

  .collection-header__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }

  .collection-header__filter {
    position: relative;
    display: flex;
    align-items: center;
  }

  .collection-header__filter-select {
    appearance: none;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
    min-width: 180px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .collection-header__filter-select:focus {
    outline: none;
    border-color: #5B6B9E;
    box-shadow: 0 0 0 3px rgba(91, 107, 158, 0.1);
  }

  .collection-header__filter-icon {
    position: absolute;
    right: 0.75rem;
    pointer-events: none;
    color: #666;
  }

  .collection-header__search {
    flex-shrink: 0;
  }

  .collection-header__search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .collection-header__search-input {
    width: 280px;
    padding: 0.75rem 2.75rem 0.75rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .collection-header__search-input:focus {
    outline: none;
    border-color: #5B6B9E;
    box-shadow: 0 0 0 3px rgba(91, 107, 158, 0.1);
  }

  .collection-header__search-input::placeholder {
    color: #999;
  }

  .collection-header__search-icon {
    position: absolute;
    right: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .collection-header__search-status {
    display: none;
    font-size: 0.8125rem;
    color: #666;
    margin-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .collection-header {
      padding: 1rem 1.5rem;
    }

    .collection-header__container {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .collection-header__title {
      font-size: 1.5rem;
    }

    .collection-header__controls {
      width: 100%;
      flex-direction: column;
      gap: 0.75rem;
    }

    .collection-header__filter {
      width: 100%;
    }

    .collection-header__filter-select {
      width: 100%;
    }

    .collection-header__search {
      width: 100%;
    }

    .collection-header__search-input {
      width: 100%;
    }
  }
/* END_SECTION:collection-header */

/* START_SECTION:collection (INDEX:8) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections-list (INDEX:9) */
.collections-list {
    padding: 1.5rem 2rem 3rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

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

  .collections-list__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #333;
  }

  .collections-list__description {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
  }

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

  .collection-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }

  .collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .collection-card__image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
  }

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

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

  .collection-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
  }

  .collection-card__content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .collection-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
  }

  .collection-card__description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
  }

  .collection-card__count {
    font-size: 0.875rem;
    color: #5B6B9E;
    font-weight: 600;
  }

  .collection-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5B6B9E;
    font-weight: 600;
    margin-top: 1rem;
  }

  .collection-card__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }

  .collection-card:hover .collection-card__cta svg {
    transform: translateX(5px);
  }

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

  @media (max-width: 768px) {
    .collections-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .collections-list__title {
      font-size: 2rem;
    }

    .collections-list {
      padding: 1rem 1.5rem 2rem;
    }
  }
/* END_SECTION:collections-list */

/* START_SECTION:collections (INDEX:10) */
.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%;
  }
/* END_SECTION:collections */

/* START_SECTION:contact-form (INDEX:11) */
.contact-form {
    padding: 0 2rem 4rem;
  }

  .contact-form__container {
    margin: 0 auto;
  }

  .contact-form__success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .contact-form__success p {
    margin: 0;
  }

  .contact-form__errors {
    background: #fdecea;
    color: #b71c1c;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .contact-form__field {
    margin-bottom: 1.25rem;
  }

  .contact-form__label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
  }

  .contact-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    font-family: inherit;
  }

  .contact-form__input:focus {
    outline: none;
    border-color: #5B6B9E;
  }

  .contact-form__textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact-form__submit {
    display: inline-block;
    background: #FFB800;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.85rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin-top: 0.5rem;
  }

  .contact-form__submit:hover {
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    .contact-form {
      padding: 0 1.5rem 3rem;
    }
  }
/* END_SECTION:contact-form */

/* START_SECTION:course-list (INDEX:12) */
.course-list {
    padding: 4rem 2rem;
    background: {{ section.settings.background_color }};
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .course-list__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .course-list__heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem;
    color: {{ section.settings.heading_color }};
  }

  .course-list__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 3rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .course-list__item {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
  }

  .course-list__item::before {
    content: '•';
    color: {{ section.settings.bullet_color }};
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    padding-right: 0.5rem;
  }

  .course-name {
    font-weight: 600;
    color: {{ section.settings.course_name_color }};
  }

  .course-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
  }

  .course-link:hover .course-name {
    color: #FFB800;
    text-decoration: underline;
  }

  .course-translation {
    font-weight: 400;
    color: #666;
  }

  @media (max-width: 768px) {
    .course-list__grid {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }

    .course-list__heading {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:course-list */

/* START_SECTION:custom-section (INDEX:13) */
.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;
  }
/* END_SECTION:custom-section */

/* START_SECTION:footer (INDEX:14) */
.site-footer {
    background: linear-gradient(135deg, #5B6B9E 0%, #4A5578 100%);
    color: white;
  }

  .site-footer__top {
    padding: 3rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-footer__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .site-footer__columns {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 3rem;
  }

  .site-footer__column--logo {
    grid-column: 1;
  }

  .site-footer__logo {
    max-width: 180px;
    height: auto;
  }

  .site-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .footer-logo-icon {
    font-size: 2rem;
  }

  .footer-logo-text {
    display: flex;
    flex-direction: column;
  }

  .footer-logo-name {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .footer-logo-tagline {
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.2;
  }

  .site-footer__heading {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: white;
  }

  .site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-footer__links li {
    margin-bottom: 0.75rem;
  }

  .site-footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
  }

  .site-footer__link:hover {
    color: white;
  }

  .site-footer__bottom {
    padding: 1.5rem 2rem;
  }

  .site-footer__bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .site-footer__copyright {
    font-size: 0.875rem;
    opacity: 0.8;
  }

  .footer-language-btn {
    background: none;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.25rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .footer-language-btn:hover {
    opacity: 1;
  }

  .site-footer__legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
  }

  .site-footer__legal-link:hover {
    color: white;
  }

  .site-footer__social {
    display: flex;
    gap: 0.75rem;
  }

  .site-footer__social-link {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-footer__social-link:hover {
    opacity: 1;
  }

  @media (max-width: 1024px) {
    .site-footer__columns {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .site-footer__column--logo {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 768px) {
    .site-footer__top {
      padding: 2rem 1.5rem;
    }

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

    .site-footer__bottom {
      padding: 1.25rem 1.5rem;
    }

    .site-footer__bottom-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .site-footer__social {
      order: -1;
    }
  }

  @media (max-width: 480px) {
    .site-footer__columns {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:15) */
.announcement-bar {
    padding: 0.75rem 2rem;
    text-align: center;
    font-size: 0.875rem;
  }

  .announcement-bar__content {
    max-width: 1400px;
    margin: 0 auto;
  }

  .announcement-bar__text {
    margin: 0;
    font-weight: 500;
  }

  .site-header {
    background: white;
    border-bottom: 1px solid #E5E5E5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .site-header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .site-header__logo {
    flex-shrink: 0;
  }

  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }

  .logo-link img {
    max-height: 50px;
    width: auto;
  }

  .logo-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .logo-icon {
    font-size: 2rem;
  }

  .logo-text-content {
    display: flex;
    flex-direction: column;
  }

  .logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
  }

  .logo-tagline {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.2;
  }

  .site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
  }

  .nav-menu__item {
    position: relative;
  }

  .nav-menu__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
  }

  .nav-menu__link:hover,
  .nav-menu__link.active {
    color: #5B6B9E;
  }

  .nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 200px;
    display: none;
    z-index: 10;
  }

  .nav-menu__item:hover .nav-submenu {
    display: block;
  }

  .nav-submenu__item {
    padding: 0;
  }

  .nav-submenu__link {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-size: 0.875rem;
    transition: background 0.2s ease;
  }

  .nav-submenu__link:hover {
    background: #F5F5F5;
    color: #5B6B9E;
  }

  .site-header__icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }

  .header-icon {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    text-decoration: none;
    position: relative;
  }

  .header-icon:hover {
    color: #5B6B9E;
  }

  .header-icon svg {
    width: 24px;
    height: 24px;
  }

  .cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #FF6B6B;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1;
  }

  .mobile-menu-toggle {
    display: none;
  }

  @media (max-width: 1024px) {
    .site-header__nav {
      display: none;
    }

    .mobile-menu-toggle {
      display: flex;
    }

    .site-header__nav.active {
      display: block;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border-top: 1px solid #E5E5E5;
      padding: 1rem 0;
      z-index: 50;
    }

    .nav-menu {
      flex-direction: column;
      gap: 0;
    }

    .nav-menu__item {
      width: 100%;
    }

    .nav-menu__link {
      padding: 1rem 2rem;
    }

    .nav-submenu {
      position: static;
      border: none;
      box-shadow: none;
      background: #F5F5F5;
      display: none;
    }

    .nav-menu__item.active .nav-submenu {
      display: block;
    }
  }

  @media (max-width: 768px) {
    .site-header__container {
      padding: 1rem 1.5rem;
      gap: 1rem;
    }

    .announcement-bar {
      padding: 0.75rem 1.5rem;
      font-size: 0.8125rem;
    }

    .logo-name {
      font-size: 1rem;
    }

    .logo-tagline {
      font-size: 0.65rem;
    }

    .logo-icon {
      font-size: 1.5rem;
    }

    .logo-text {
      gap: 0.5rem;
    }

    .site-header__icons {
      gap: 0.5rem;
    }

    .header-icon {
      padding: 0.25rem;
    }

    .header-icon svg {
      width: 20px;
      height: 20px;
    }
  }

  @media (max-width: 480px) {
    .site-header__container {
      gap: 0.5rem;
    }

    .logo-tagline {
      display: none;
    }

    .site-header__icons {
      gap: 0.25rem;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:16) */
.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;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero-carousel (INDEX:17) */
.hero-carousel {
    position: relative;
    background: linear-gradient(135deg, #5B6B9E 0%, #4A5578 100%);
    color: white;
    overflow: hidden;
    border-radius: {{ section.settings.border_radius }}px;
    margin: {{ section.settings.section_margin }}px auto;
    max-width: {{ section.settings.max_width }}px;
  }

  .hero-carousel__wrapper {
    position: relative;
    min-height: 400px;
  }

  .hero-slide {
    display: none;
    padding: 3rem 2rem;
  }

  .hero-slide.active {
    display: block;
  }

  .hero-slide__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-slide__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
  }

  .hero-slide__description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    opacity: 0.9;
  }

  .hero-slide__button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #FFB800;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .hero-slide__button:hover {
    background: #FFA500;
    color: #000;
  }

  .hero-slide__rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .rating-stars {
    display: flex;
    gap: 0.25rem;
  }

  .star {
    color: rgba(255, 215, 0, 0.3);
    font-size: 1.5rem;
  }

  .star.filled {
    color: #FFD700;
  }

  .star.half {
    position: relative;
    color: rgba(255, 215, 0, 0.3);
  }

  .star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #FFD700;
  }

  .rating-text-hero {
    font-size: 0.875rem;
    color: white;
    opacity: 1;
  }

  .hero-slide__image {
    position: relative;
    min-height: 300px;
  }

  .hero-slide__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

  .hero-slide__img.active {
    opacity: 1;
  }

  /* First image stays in flow to set the container height;
     additional images stack on top and cross-fade. */
  .hero-slide__img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
  }

  .hero-slide__placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-slide__placeholder svg {
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .hero-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }

  .hero-carousel__nav:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .hero-carousel__nav--prev {
    left: 1rem;
  }

  .hero-carousel__nav--next {
    right: 1rem;
  }

  @media (max-width: 768px) {
    .hero-slide__content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .hero-slide__title {
      font-size: 2rem;
    }

    .hero-slide {
      padding: 2rem 1.5rem;
    }
  }
/* END_SECTION:hero-carousel */

/* START_SECTION:main-cart (INDEX:18) */
.cart-page {
    padding: 3rem 2rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .cart-page__header {
    margin-bottom: 2rem;
  }

  .cart-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #333;
  }

  .cart-page__empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .cart-page__empty-title {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #333;
  }

  .cart-page__empty-text {
    font-size: 1rem;
    color: #666;
    margin: 0 0 2rem;
  }

  .cart-page__continue-shopping {
    display: inline-block;
    padding: 1rem 2rem;
    background: #FFB800;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .cart-page__continue-shopping:hover {
    background: #FFA500;
  }

  .cart-page__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
  }

  .cart-items {
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E5E5;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E5E5;
    align-items: center;
  }

  .cart-item:last-child {
    border-bottom: none;
  }

  .cart-item__image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #F5F5F5;
  }

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

  .cart-item__details {
    flex: 1;
  }

  .cart-item__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #333;
  }

  .cart-item__title a {
    color: #333;
    text-decoration: none;
  }

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

  .cart-item__price {
    font-size: 1rem;
    color: #666;
    margin: 0 0 1rem;
  }

  .cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .cart-item__quantity-label {
    font-size: 0.875rem;
    color: #666;
    margin-right: 0.5rem;
  }

  .quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    overflow: hidden;
  }

  .quantity-button {
    background: white;
    border: none;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    transition: background 0.2s ease;
  }

  .quantity-button:hover {
    background: #F5F5F5;
  }

  .quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
    padding: 0.5rem;
    font-size: 1rem;
  }

  .cart-item__remove {
    background: none;
    border: none;
    color: #FF6B6B;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    margin-top: 0.5rem;
  }

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

  .cart-item__subtotal {
    text-align: right;
  }

  .cart-item__subtotal-label {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 0.25rem;
  }

  .cart-item__subtotal-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0;
  }

  .cart-summary {
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    padding: 2rem;
    position: sticky;
    top: 2rem;
  }

  .cart-summary__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: #333;
  }

  .cart-summary__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .cart-summary__label {
    color: #666;
  }

  .cart-summary__value {
    font-weight: 600;
    color: #333;
  }

  .cart-summary__total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid #E5E5E5;
    font-size: 1.25rem;
    font-weight: 700;
  }

  .cart-summary__checkout {
    width: 100%;
    padding: 1rem;
    background: #FFB800;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
  }

  .cart-summary__checkout:hover {
    background: #FFA500;
  }

  .cart-summary__note {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
  }

  @media (max-width: 968px) {
    .cart-page__content {
      grid-template-columns: 1fr;
    }

    .cart-summary {
      position: static;
    }
  }

  @media (max-width: 768px) {
    .cart-item {
      grid-template-columns: 80px 1fr;
      gap: 1rem;
    }

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

    .cart-item__subtotal {
      grid-column: 2;
      text-align: left;
      margin-top: 1rem;
    }

    .cart-page__title {
      font-size: 2rem;
    }
  }
/* END_SECTION:main-cart */

/* START_SECTION:main-collection (INDEX:19) */
.collection-page {
    padding: 3rem 2rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .collection-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .product-card__image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
  }

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

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

  .product-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF6B6B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
  }

  .product-card__content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
    line-height: 1.4;
  }

  .product-card__description {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 0.75rem;
  }

  .product-card__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .product-card__price-current {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
  }

  .product-card__price-compare {
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
  }

  .product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #FFB800;
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    margin-top: auto;
  }

  .product-card:hover .product-card__cta {
    background: #FFA500;
  }

  .collection-empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .collection-empty__title {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #333;
  }

  .collection-empty__text {
    font-size: 1rem;
    color: #666;
  }

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

  @media (max-width: 768px) {
    .collection-products {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .collection-page {
      padding: 1.5rem 1rem;
    }
  }

  @media (max-width: 480px) {
    .collection-products {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:main-collection */

/* START_SECTION:main-product (INDEX:20) */
.product {
    padding: 2rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .product__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .product__media-wrapper {
    position: sticky;
    top: 2rem;
  }

  .product__media {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

  .product__media img {
    width: 100%;
    height: auto;
    display: block;
  }

  .product__info {
    padding: 1rem 0;
  }

  .product__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #333;
  }

  .product__price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .product__price-current {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
  }

  .product__price-compare {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
  }

  .product__price-badge {
    background: #FF6B6B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
  }

  .product__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
  }

  .product__form {
    margin-bottom: 2rem;
  }

  .product__add-to-cart {
    width: 100%;
    padding: 1rem 2rem;
    background: #FFB800;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .product__add-to-cart:hover {
    background: #FFA500;
  }

  @media (max-width: 768px) {
    .product__grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .product__media-wrapper {
      position: static;
    }

    .product__title {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:main-product */

/* START_SECTION:main-search (INDEX:21) */
.search-page {
    padding: 1.5rem 2rem 3rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

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

  .search-header__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #333;
  }

  .search-header__form {
    flex-shrink: 0;
  }

  .search-header__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .search-header__input {
    width: 280px;
    padding: 0.75rem 2.75rem 0.75rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .search-header__input:focus {
    outline: none;
    border-color: #5B6B9E;
    box-shadow: 0 0 0 3px rgba(91, 107, 158, 0.1);
  }

  .search-header__input::placeholder {
    color: #999;
  }

  .search-header__button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
  }

  .search-header__button:hover {
    color: #5B6B9E;
  }

  .search-results-info {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
  }

  .search-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .product-card__image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
  }

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

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

  .product-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF6B6B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
  }

  .product-card__content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
    line-height: 1.4;
  }

  .product-card__description {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 0.75rem;
  }

  .product-card__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .product-card__price-current {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
  }

  .product-card__price-compare {
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
  }

  .product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #FFB800;
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    margin-top: auto;
  }

  .product-card:hover .product-card__cta {
    background: #FFA500;
  }

  .search-empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .search-empty__title {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #333;
  }

  .search-empty__text {
    font-size: 1rem;
    color: #666;
  }

  .search-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .search-pagination a,
  .search-pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 0.875rem;
  }

  .search-pagination a:hover {
    border-color: #5B6B9E;
    color: #5B6B9E;
  }

  .search-pagination span.current {
    background: #5B6B9E;
    border-color: #5B6B9E;
    color: white;
  }

  @media (max-width: 1024px) {
    .search-products {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .search-page {
      padding: 1rem 1.5rem 2rem;
    }

    .search-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .search-header__title {
      font-size: 1.5rem;
    }

    .search-header__form {
      width: 100%;
    }

    .search-header__input {
      width: 100%;
    }

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

  @media (max-width: 480px) {
    .search-products {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:main-search */

/* START_SECTION:package-upsell (INDEX:22) */
.package-upsell {
    padding: 3rem 2rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .package-upsell__container {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2.5rem;
  }

  .package-upsell__title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 0.5rem;
    color: #333;
  }

  .package-upsell__subtitle {
    text-align: center;
    color: #666;
    margin: 0 0 2rem;
    font-size: 1rem;
  }

  .package-upsell__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .package-card--gold {
    border-color: #FFB800;
  }

  .package-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #C0C0C0;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
  }

  .package-card__badge--gold {
    background: #FFB800;
    color: #000;
  }

  .package-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #F5F5F5;
  }

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

  .package-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .package-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #333;
    line-height: 1.3;
  }

  .package-card__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .package-card__price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
  }

  .package-card__price-compare {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
  }

  .package-card__savings {
    background: #FF6B6B;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    width: fit-content;
  }

  .package-card__cta {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #FFB800;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: auto;
  }

  .package-card__cta:hover {
    background: #FFA500;
  }

  @media (max-width: 768px) {
    .package-upsell {
      padding: 2rem 1.5rem;
    }

    .package-upsell__container {
      padding: 1.5rem;
    }

    .package-upsell__grid {
      grid-template-columns: 1fr;
    }

    .package-upsell__title {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:package-upsell */

/* START_SECTION:page-hero (INDEX:23) */
.page-hero {
    padding: 4rem 2rem;
    border-radius: {{ section.settings.border_radius }}px;
    margin: {{ section.settings.section_margin }}px auto;
    max-width: {{ section.settings.max_width }}px;
  }

  .page-hero__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
  }

  .page-hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    color: white;
  }

  .page-hero__description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    color: white;
  }

  .page-hero__description p {
    margin: 0 0 1rem;
  }

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

  @media (max-width: 768px) {
    .page-hero {
      padding: 3rem 1.5rem;
      margin: {{ section.settings.section_margin | divided_by: 2 }}px auto;
    }

    .page-hero__title {
      font-size: 2rem;
    }

    .page-hero__description {
      font-size: 0.9375rem;
    }
  }
/* END_SECTION:page-hero */

/* START_SECTION:page (INDEX:24) */
.page-content {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .page-content__container {
    max-width: 800px;
    margin: 0 auto;
  }

  .page-content__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 2rem;
    color: #5b6b9e;
  }

  .page-content__body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
  }

  .page-content__body h1 {
    display: none;
  }

  .page-content__body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5b6b9e;
    margin: 2.5rem 0 1rem;
  }

  .page-content__body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 0 0.75rem;
  }

  .page-content__body p {
    margin: 0 0 1.25rem;
  }

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

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

  .page-content__body li {
    margin-bottom: 0.5rem;
  }

  .page-content__body a {
    color: #5b6b9e;
    text-decoration: underline;
  }

  .page-content__body a:hover {
    color: #4a5578;
  }

  .page-content__body strong {
    color: #333;
  }

  @media (max-width: 768px) {
    .page-content {
      padding: 3rem 1.5rem;
    }

    .page-content__title {
      font-size: 1.75rem;
    }

    .page-content__body {
      font-size: 1rem;
    }

    .page-content__body h2 {
      font-size: 1.25rem;
    }
  }
/* END_SECTION:page */

/* START_SECTION:practice-test-list (INDEX:26) */
.ptl {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .ptl__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .ptl-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }

  .ptl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }

  .ptl-card__img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: #3d4f7c;
  }

  .ptl-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .ptl-card:hover .ptl-card__img img {
    transform: scale(1.05);
  }

  .ptl-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.875rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    color: #fff;
  }

  .ptl-card__trade {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .ptl-card__type {
    font-size: 0.8rem;
    opacity: 0.88;
  }

  .ptl-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .ptl-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.375rem;
    color: #222;
    line-height: 1.35;
  }

  .ptl-card__meta {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.75rem;
  }

  .ptl-card__free {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.75rem;
  }

  .ptl-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    background: #FFB800;
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: background 0.2s;
    margin-top: auto;
  }

  .ptl-card:hover .ptl-card__cta {
    background: #FFA500;
  }

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

  @media (max-width: 768px) {
    .ptl__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .ptl { padding: 1.5rem 1rem; }
  }

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

  .ptl__search-wrap {
    max-width: 420px;
    margin: 0 auto 2rem;
    position: relative;
  }

  .ptl__search {
    width: 100%;
    font: inherit;
    font-size: 1rem;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid #d8dae2;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
  }

  .ptl__search:focus {
    outline: none;
    border-color: #5b6b9e;
  }

  .ptl__search-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.1rem;
    height: 1.1rem;
    color: #9ca3af;
    pointer-events: none;
  }

  .ptl__empty {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: #777;
    font-size: 1rem;
  }
/* END_SECTION:practice-test-list */

/* START_SECTION:practice-test-picker (INDEX:27) */
.ptq-picker { padding: 3.5rem 1.25rem; background: var(--ptq-pk-bg, #f4f5f8); scroll-margin-top: 110px; }
  .ptq-picker__inner { max-width: 640px; margin: 0 auto; text-align: center; }
  .ptq-picker__badge {
    display: inline-block; font-size: 0.78rem; font-weight: 600;
    padding: 0.3rem 0.85rem; border-radius: 20px; margin-bottom: 0.9rem;
    background: rgba(91, 107, 158, 0.12); color: var(--ptq-pk-brand, #5b6b9e);
  }
  .ptq-picker__title { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 700; line-height: 1.2; margin: 0 0 0.6rem; }
  .ptq-picker__sub { font-size: 1.02rem; line-height: 1.6; color: #5f6573; margin: 0 auto 1.6rem; max-width: 30em; }
  .ptq-picker__controls { display: flex; gap: 0.6rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
  .ptq-picker__select {
    flex: 1; min-width: 200px; font: inherit; font-size: 1rem; padding: 0.8rem 0.9rem;
    border: 1px solid #d8dae2; border-radius: 12px; background: #fff; text-align: left;
  }
  .ptq-picker__select:focus-visible { outline: 2px solid var(--ptq-pk-brand, #5b6b9e); outline-offset: 1px; }
  .ptq-picker__btn {
    font: inherit; font-weight: 600; font-size: 1rem; white-space: nowrap;
    padding: 0.8rem 1.4rem; border: 1px solid transparent; border-radius: 12px; cursor: pointer;
    background: var(--ptq-pk-brand, #5b6b9e); color: #fff; transition: filter 0.15s ease;
  }
  .ptq-picker__btn:hover { filter: brightness(0.93); }
  .ptq-picker__popular { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; justify-content: center; }
  .ptq-picker__popular-label { font-size: 0.85rem; color: #8a8f9c; }
  .ptq-picker__chip {
    font-size: 0.88rem; text-decoration: none; color: #5f6573;
    border: 1px solid #d8dae2; border-radius: 20px; padding: 0.35rem 0.85rem; transition: border-color 0.15s ease, color 0.15s ease;
  }
  .ptq-picker__chip:hover { border-color: var(--ptq-pk-brand, #5b6b9e); color: var(--ptq-pk-brand, #5b6b9e); }
  .ptq-picker__chip--all { font-weight: 600; color: var(--ptq-pk-brand, #5b6b9e); }
  .ptq-picker__all-row { margin-top: 1rem; text-align: center; }
  .ptq-picker__all-link { font-size: 0.9rem; font-weight: 600; color: var(--ptq-pk-brand, #5b6b9e); text-decoration: none; }
  .ptq-picker__all-link:hover { text-decoration: underline; }

  /* Modal */
  .ptq-modal-overlay {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(15, 17, 25, 0.55); backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center; padding: 1rem;
    animation: ptq-fade-in 0.25s ease;
  }
  .ptq-modal-overlay[hidden] { display: none; }
  @keyframes ptq-fade-in { from { opacity: 0; } to { opacity: 1; } }
  .ptq-modal {
    background: #fff; border-radius: 20px;
    padding: 2.5rem 2rem 2rem; max-width: 480px; width: 100%;
    position: relative; text-align: center;
    animation: ptq-slide-up 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  }
  @keyframes ptq-slide-up { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  .ptq-modal__close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; font-size: 1.4rem; line-height: 1;
    cursor: pointer; color: #9ca3af; padding: 0.25rem 0.5rem; border-radius: 6px;
    transition: color 0.15s ease, background 0.15s ease;
  }
  .ptq-modal__close:hover { color: #374151; background: #f3f4f6; }
  .ptq-modal__title { font-size: 1.55rem; font-weight: 700; line-height: 1.2; margin: 0.3rem 0 0.6rem; }
  .ptq-modal__sub { font-size: 0.97rem; line-height: 1.6; color: #5f6573; margin: 0 0 1.5rem; }
  .ptq-modal__controls { max-width: 100%; justify-content: center; }
  .ptq-modal__skip {
    display: block; margin-top: 1rem; background: none; border: none;
    font: inherit; font-size: 0.88rem; color: #9ca3af; cursor: pointer;
    text-decoration: underline; padding: 0;
  }
  .ptq-modal__skip:hover { color: #6b7280; }
/* END_SECTION:practice-test-picker */

/* START_SECTION:pricing-cards (INDEX:29) */
.pricing-cards {
    padding: 4rem 2rem;
    background: {{ section.settings.background_color }};
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .pricing-cards__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .pricing-card {
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .pricing-card.featured {
    border-color: #FFB800;
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.2);
  }

  .pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFB800;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
  }

  .pricing-card__header {
    margin-bottom: 1.5rem;
  }

  .pricing-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
  }

  .pricing-card__subtitle {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
  }

  .pricing-card__price {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .pricing-card__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-top: 0.5rem;
  }

  .pricing-card__amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
  }

  .pricing-card__savings {
    background: #FF6B6B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
  }

  .pricing-card__description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .pricing-card__button {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid #333;
    color: #333;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
  }

  .pricing-card__button:hover {
    background: #333;
    color: white;
  }

  .pricing-card__button.featured {
    background: #FFB800;
    border-color: #FFB800;
    color: #000;
  }

  .pricing-card__button.featured:hover {
    background: #FFA500;
    border-color: #FFA500;
  }

  .pricing-card__features {
    flex-grow: 1;
  }

  .pricing-card__features-title {
    font-weight: 600;
    margin: 0 0 1rem;
    color: #333;
  }

  .pricing-card__features-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pricing-card__features-list li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .feature-icon {
    flex-shrink: 0;
    font-weight: 600;
    color: #5B6B9E;
    min-width: 30px;
  }

  .feature-text {
    flex: 1;
    line-height: 1.5;
  }

  .pricing-card__footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E5E5;
    text-align: center;
  }

  .pricing-card__details-link {
    color: #333;
    text-decoration: underline;
    font-size: 0.875rem;
    font-weight: 600;
  }

  .pricing-card__details-link:hover {
    color: #FFB800;
  }

  @media (max-width: 768px) {
    .pricing-cards__container {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:pricing-cards */

/* START_SECTION:search-bar (INDEX:31) */
.search-bar-section {
    padding: 0 2rem 1.5rem;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .search-bar-section__container {
    max-width: 300px;
    margin: 0 0 0 auto;
  }

  .search-bar__form {
    width: 100%;
  }

  .search-bar__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .search-bar__input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .search-bar__input:focus {
    outline: none;
    border-color: #5B6B9E;
    box-shadow: 0 0 0 3px rgba(91, 107, 158, 0.1);
  }

  .search-bar__input::placeholder {
    color: #999;
  }

  .search-bar__button {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
  }

  .search-bar__button:hover {
    color: #5B6B9E;
  }

  .search-bar__button svg {
    width: 20px;
    height: 20px;
  }

  @media (max-width: 768px) {
    .search-bar-section {
      padding: 0 1.5rem 1rem;
    }

    .search-bar-section__container {
      max-width: 100%;
    }

    .search-bar__input {
      padding: 0.75rem 2.75rem 0.75rem 1rem;
      font-size: 0.9375rem;
    }
  }
/* END_SECTION:search-bar */

/* START_SECTION:search (INDEX:32) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* START_SECTION:stats-banner (INDEX:33) */
.stats-banner {
    padding: 3rem 2rem;
    background: {{ section.settings.background_color }};
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .stats-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .stats-banner__heading {
    flex: 1;
    min-width: 250px;
  }

  .stats-banner__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    font-style: italic;
  }

  .stats-banner__subtitle {
    font-size: 1.125rem;
    margin: 0;
    color: #666;
  }

  .stats-banner__stats {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex: 1;
    justify-content: center;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .stat-item__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: {{ section.settings.icon_color }};
  }

  .stat-item__icon svg {
    width: 100%;
    height: 100%;
  }

  .stat-item__icon img {
    width: 100%;
    height: auto;
  }

  .stat-item__value {
    font-size: 2.5rem;
    font-weight: 700;
    color: {{ section.settings.value_color }};
    line-height: 1;
  }

  .stat-item__label {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
  }

  .stats-banner__badge {
    flex-shrink: 0;
  }

  .stats-banner__badge img {
    width: 100px;
    height: auto;
  }

  @media (max-width: 768px) {
    .stats-banner__content {
      flex-direction: column;
      text-align: center;
    }

    .stats-banner__stats {
      flex-direction: column;
      gap: 2rem;
    }

    .stats-banner__heading {
      text-align: center;
    }
  }
/* END_SECTION:stats-banner */

/* START_SECTION:testimonials (INDEX:34) */
.testimonials {
    padding: 4rem 2rem;
    background: {{ section.settings.background_color }};
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
    text-align: center;
  }

  .testimonials__heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 3rem;
    color: #333;
  }

  .testimonials__slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
  }

  .testimonials__track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-card__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }

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

  .testimonial-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
  }

  .testimonial-card__title {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 1rem;
  }

  .testimonial-card__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }

  .testimonials__controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .testimonials__nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #E5E5E5;
    background: white;
    color: #333;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .testimonials__nav:hover {
    background: #333;
    color: white;
    border-color: #333;
  }

  .testimonials__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
  }

  .rating-stars {
    display: flex;
    gap: 0.5rem;
  }

  .star {
    font-size: 2rem;
    color: #E5E5E5;
  }

  .star.filled {
    color: #FFD700;
  }

  .star.half {
    position: relative;
    color: #E5E5E5;
  }

  .star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #FFD700;
  }

  .rating-text {
    font-size: 1rem;
    color: #333;
    margin: 0;
  }

  .rating-text strong {
    font-size: 1.5rem;
    color: #333;
  }

  @media (max-width: 1024px) {
    .testimonial-card {
      flex: 0 0 calc(50% - 1rem);
    }
  }

  @media (max-width: 768px) {
    .testimonial-card {
      flex: 0 0 100%;
      min-width: auto;
    }

    .testimonials__track {
      flex-direction: column;
    }
  }
/* END_SECTION:testimonials */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:35) */
.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;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:36) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:38) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */