  /* Collections store preview section on homepage */
  .collections-preview-section {
    padding: 56px 0;
    background: var(--surface-soft, #eef1f6);
    border-top: 1px solid var(--line, rgba(11, 19, 43, 0.07));
    border-bottom: 1px solid var(--line, rgba(11, 19, 43, 0.07));
  }
  .collections-preview-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .collections-preview-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
  }
  .collections-preview-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink, #0b132b);
    margin: 4px 0 6px;
    letter-spacing: -0.02em;
  }
  .collections-preview-sub {
    font-size: 0.9rem;
    color: var(--muted, #515866);
  }
  .collections-preview-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand, #2563eb);
    text-decoration: none;
    white-space: nowrap;
  }
  .collections-preview-link:hover { text-decoration: underline; }
  .collections-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 700px) {
    .collections-preview-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 900px) {
    .collections-preview-grid { grid-template-columns: repeat(2, 1fr); }
  }
  .cp-card {
    background: var(--surface-strong, #ffffff);
    border-radius: 14px;
    border: 1px solid var(--line, rgba(11, 19, 43, 0.07));
    overflow: hidden;
    text-decoration: none;
    color: var(--ink, #0b132b);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  }
  .cp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--brand-glow, rgba(37, 99, 235, 0.12));
    border-color: var(--brand, #2563eb);
  }
  .cp-cover {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    background: var(--surface-soft, #eef1f6);
  }
  .cp-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--brand-glow, rgba(37, 99, 235, 0.12));
    color: var(--brand, #2563eb);
    width: 100%;
    aspect-ratio: 4/3;
  }
  .cp-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
  .cp-cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand, #2563eb); }
  .cp-title { font-size: 0.95rem; font-weight: 700; line-height: 1.3; color: var(--ink, #0b132b); }
  .cp-count { font-size: 0.75rem; color: var(--brand, #2563eb); background: var(--brand-glow, rgba(37, 99, 235, 0.12)); padding: 2px 8px; border-radius: 999px; width: fit-content; font-weight: 700; }
  .cp-price { font-size: 0.85rem; color: var(--muted, #515866); margin-top: auto; padding-top: 4px; }
  .cp-price strong { color: var(--ink, #0b132b); }

  /* Value Propositions Grid */
  .features-grid-section {
    padding: 56px 0;
    background: var(--surface-strong, #ffffff);
    border-top: 1px solid var(--line, rgba(11, 19, 43, 0.07));
  }
  .features-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  @media (max-width: 768px) {
    .features-inner {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
  .feature-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .feature-icon {
    font-size: 1.6rem;
    line-height: 1;
    background: var(--brand-glow, rgba(37, 99, 235, 0.08));
    padding: 12px;
    border-radius: 12px;
    color: var(--brand, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink, #0b132b);
    margin-bottom: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .feature-desc {
    font-size: 0.88rem;
    color: var(--muted, #515866);
    line-height: 1.6;
  }

  /* Featured Callout Banner */
  .featured-banner-section {
    padding: 64px 0;
    background: var(--surface-soft, #eef1f6);
    border-top: 1px solid var(--line, rgba(11, 19, 43, 0.07));
    border-bottom: 1px solid var(--line, rgba(11, 19, 43, 0.07));
  }
  .featured-banner-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
  }
  @media (max-width: 768px) {
    .featured-banner-inner {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 28px;
    }
  }
  .featured-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  @media (max-width: 768px) {
    .featured-banner-content {
      align-items: center;
    }
  }
  .featured-banner-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand, #2563eb);
    background: var(--brand-glow, rgba(37, 99, 235, 0.12));
    padding: 4px 10px;
    border-radius: 99px;
    margin-bottom: 14px;
  }
  .featured-banner-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ink, #0b132b);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .featured-banner-desc {
    font-size: 0.95rem;
    color: var(--muted, #515866);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .featured-banner-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .featured-banner-secondary-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand, #2563eb);
    text-decoration: none;
  }
  .featured-banner-secondary-link:hover {
    text-decoration: underline;
  }
  .featured-banner-preview {
    display: flex;
    justify-content: center;
  }
  .mockup-card {
    background: var(--surface-strong, #ffffff);
    border: 1px solid var(--line, rgba(11, 19, 43, 0.07));
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .mockup-emoji {
    font-size: 3rem;
  }
  .mockup-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink, #0b132b);
    margin-bottom: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .mockup-info p {
    font-size: 0.8rem;
    color: var(--muted, #515866);
    margin: 0;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 56px 0;
    background: var(--surface-strong, #ffffff);
    border-bottom: 1px solid var(--line, rgba(11, 19, 43, 0.07));
  }
  .testimonials-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .testimonials-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink, #0b132b);
    text-align: center;
    margin: 4px 0 32px;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 768px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }
  .testimonial-card {
    background: var(--surface-soft, #f8fafc);
    border: 1px solid var(--line, rgba(11, 19, 43, 0.07));
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
  }
  .star-rating {
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
  .testimonial-text {
    font-size: 0.88rem;
    color: var(--ink, #0b132b);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
  }
  .testimonial-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted, #515866);
  }

  /* Unified Footer styling */
  .store-footer {
    background: var(--surface-strong, #ffffff);
    border-top: 1px solid var(--line, rgba(11, 19, 43, 0.07));
    padding: 56px 24px 40px;
    margin-top: 0;
  }
  .store-footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
  }
  .store-footer-brand { max-width: 320px; text-align: left; }
  .store-footer-logo { font-family: 'Instrument Serif', Georgia, serif; font-size: 1.5rem; color: var(--ink, #0b132b); text-decoration: none; font-weight: 400; letter-spacing: -0.02em; display: block; margin-bottom: 8px; }
  .store-footer-tagline { font-size: 0.85rem; color: var(--muted, #515866); line-height: 1.5; }
  .store-footer-links { display: flex; gap: 40px; }
  .store-footer-col { display: flex; flex-direction: column; gap: 12px; text-align: left; }
  .store-footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-soft, #737b88); }
  .store-footer-col a { font-size: 0.85rem; color: var(--muted, #515866); text-decoration: none; transition: color 0.15s; }
  .store-footer-col a:hover { color: var(--brand, #2563eb); }
  .store-footer-bottom { max-width: 960px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid var(--line, rgba(11, 19, 43, 0.07)); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted-soft, #737b88); flex-wrap: wrap; gap: 12px; }
  @media (max-width: 768px) {
    .store-footer-inner { flex-direction: column; align-items: stretch; }
    .store-footer-links { flex-wrap: wrap; gap: 24px; }
  }
  /* Collections Tab Card Styles */
  .col-tab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 16px;
  }
  .col-tab-card {
    background: var(--surface-strong, #ffffff);
    border-radius: 14px;
    border: 1px solid var(--line, rgba(11, 19, 43, 0.07));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s;
  }
  .col-tab-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--brand-glow, rgba(37, 99, 235, 0.12));
  }
  .col-tab-cover {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    background: var(--surface-soft, #eef1f6);
  }
  .col-tab-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--brand-glow, rgba(37, 99, 235, 0.12));
    color: var(--brand, #2563eb);
    width: 100%;
    aspect-ratio: 4/3;
  }
  .col-tab-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }
  .col-tab-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand, #2563eb);
  }
  .col-tab-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink, #0b132b);
  }
  .col-tab-count {
    font-size: 0.75rem;
    color: var(--brand, #2563eb);
    background: var(--brand-glow, rgba(37, 99, 235, 0.12));
    padding: 2px 8px;
    border-radius: 999px;
    width: fit-content;
    font-weight: 700;
  }
  .col-tab-desc {
    font-size: 0.82rem;
    color: var(--muted, #515866);
    line-height: 1.45;
  }
  .col-tab-notable {
    font-size: 0.78rem;
    color: var(--muted-soft, #737b88);
    line-height: 1.4;
    border-top: 1px dashed var(--line, rgba(11, 19, 43, 0.07));
    padding-top: 8px;
    margin-top: 4px;
  }
  .col-tab-footer {
    padding: 14px 18px;
    border-top: 1px solid var(--line, rgba(11, 19, 43, 0.07));
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-soft, #eef1f6);
  }
  .col-tab-price {
    font-size: 0.82rem;
    color: var(--muted, #515866);
    display: flex;
    flex-direction: column;
  }
  .col-tab-price strong {
    color: var(--ink, #0b132b);
    font-size: 1.05rem;
  }
  .col-tab-btn {
    background: var(--brand, #2563eb);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    font-family: inherit;
  }
  .col-tab-btn:hover:not(:disabled) {
    background: var(--brand-dark, #1d4ed8);
    transform: translateY(-1px);
  }
  .col-tab-btn:disabled {
    background: var(--muted-soft, #737b88);
    opacity: 0.6;
    cursor: not-allowed;
  }
  /* Simple modal styling */
  .confirm-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 19, 43, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
  }
  .confirm-modal-card {
    background: var(--surface-strong, #ffffff);
    border-radius: 16px;
    border: 1px solid var(--line, rgba(11, 19, 43, 0.07));
    padding: 24px;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(11, 19, 43, 0.15);
    text-align: center;
  }
  .confirm-modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ink, #0b132b);
  }
  .confirm-modal-text {
    font-size: 0.9rem;
    color: var(--muted, #515866);
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .confirm-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
  }
  .confirm-modal-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
  }
  .confirm-modal-btn--primary {
    background: var(--brand, #2563eb);
    color: white;
    border: none;
  }
  .confirm-modal-btn--primary:hover {
    background: var(--brand-dark, #1d4ed8);
  }
  .confirm-modal-btn--secondary {
    background: transparent;
    border: 1.5px solid var(--line, rgba(11, 19, 43, 0.07));
    color: var(--muted, #515866);
  }
  .confirm-modal-btn--secondary:hover {
    border-color: var(--brand, #2563eb);
    color: var(--brand, #2563eb);
  }
