:root {
      --white: #FAFAF8;
      --black: #0E0E0E;
      --grey-light: #F2F0EC;
      --grey-mid: #C8C4BC;
      --grey-text: #6E6A62;
      --green: #2E8B57;
      --green-bright: #3CAF6E;
      --blue: #1A237E;
      --font-display: 'Syncopate', sans-serif;
      --font-serif: 'Cormorant Garamond', serif;
      --font-body: 'DM Sans', sans-serif;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--black);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.6;
      cursor: none;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    button { cursor: none; border: none; background: none; font-family: inherit; }

    /* Cursor */
    #cursor {
      position: fixed; width: 8px; height: 8px;
      background: var(--green); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .2s var(--ease-out), height .2s var(--ease-out), background .2s;
      mix-blend-mode: multiply;
    }
    #cursor.hover { width: 40px; height: 40px; background: rgba(46,139,87,.15); border: 1px solid var(--green); }
    #cursor-follower {
      position: fixed; width: 30px; height: 30px;
      border: 1px solid var(--grey-mid); border-radius: 50%;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform .15s var(--ease-out);
    }

    /* Header */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 24px 48px 18px;
      display: flex; flex-direction: column; align-items: center; gap: 14px;
      background: var(--white);
      border-bottom: 1px solid transparent;
      transition: border-color .3s, box-shadow .3s;
    }
    header.scrolled { border-color: var(--grey-light); box-shadow: 0 1px 20px rgba(0,0,0,.04); }

    /* Logo — SVG tree mark inline */
    .logo-wrap { 
      display: flex;
       align-items: center;
       justify-content: center;
        gap: 0;
         cursor: none;
         }
    .logo-mark { height: 38px; width: auto; display: block; }

    nav { display: flex; align-items: center; gap: 32px; }
    .nav-icons { display: flex; gap: 16px; align-items: center; }
    .nav-icon { width: 18px; height: 18px; stroke: var(--black); fill: none; stroke-width: 1.4; transition: stroke .2s; }
    .nav-icon:hover { stroke: var(--green); }
    .nav-link {
      font-family: var(--font-display); font-size: 9px;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--grey-text); transition: color .2s; cursor: none;
    }
    .nav-link:hover { color: var(--black); }
    .nav-divider { width: 1px; height: 14px; background: var(--grey-mid); }

    /* Hero */
    .hero { margin-top: 116px; }
    .hero-inner {
      position: relative; height: 65vh; min-height: 480px;
      background: var(--black); overflow: hidden;
    }
    .hero-img {
      width: 100%; height: 100%; object-fit: cover;
      opacity: .78; transform: scale(1.05);
      transition: transform 8s var(--ease-out), opacity 1s;
    }
    .hero-img.loaded { transform: scale(1); }
    .hero-content { position: absolute; bottom: 48px; left: 64px; color: var(--white); }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
      opacity: 0; transform: translateY(10px);
      animation: fadeUp .8s .4s var(--ease-out) forwards;
    }
    .hero-eyebrow svg { width: 10px; height: 10px; fill: var(--green-bright); }
    .hero-eyebrow span { font-family: var(--font-display); font-size: 9px; letter-spacing: .2em; color: var(--green-bright); }
    .hero-title {
      font-family: var(--font-display); font-size: clamp(22px, 3vw, 36px);
      font-weight: 700; letter-spacing: .08em; line-height: 1.1;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp .8s .6s var(--ease-out) forwards;
    }
    .hero-sub {
      margin-top: 8px; font-family: var(--font-display); font-size: 9px;
      letter-spacing: .18em; color: var(--grey-mid);
      opacity: 0; transform: translateY(10px);
      animation: fadeUp .8s .8s var(--ease-out) forwards;
    }
    .hero-cta {
      margin-top: 28px; display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-display); font-size: 9px; letter-spacing: .18em;
      color: var(--white); border-bottom: 1px solid rgba(255,255,255,.3);
      padding-bottom: 4px; opacity: 0;
      animation: fadeUp .8s 1s var(--ease-out) forwards;
      transition: border-color .2s, gap .2s; cursor: none;
    }
    .hero-cta:hover { border-color: var(--white); gap: 16px; }
    .hero-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

    /* Catalog */
    .catalog { padding: 80px 48px 100px; }
    .catalog-header {
      display: flex; align-items: baseline; justify-content: space-between;
      margin-bottom: 56px; padding-bottom: 20px; border-bottom: 1px solid var(--grey-light);
    }
    .section-label { font-family: var(--font-display); font-size: 8.5px; letter-spacing: .22em; color: var(--grey-text); }
    .catalog-title { font-family: var(--font-serif); font-size: 13px; font-style: italic; color: var(--grey-text); font-weight: 300; }

    .collection-block { margin-bottom: 80px; }
    .collection-name {
      font-family: var(--font-display); font-size: 8px; letter-spacing: .28em;
      color: var(--grey-mid); margin-bottom: 40px;
      display: flex; align-items: center; gap: 20px;
    }
    .collection-name::after { content: ''; flex: 1; height: 1px; background: var(--grey-light); }

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

    /* Product cards */
    .product-card { position: relative; overflow: hidden; background: var(--white); cursor: none; }
    .product-card.coming-soon { pointer-events: none; }

    .product-img-wrap {
      position: relative; aspect-ratio: 3/4; overflow: hidden;
      background: var(--grey-light);
      display: flex; align-items: center; justify-content: center;
    }
    /* Coming soon cards — black background per design */
    .product-card.coming-soon .product-img-wrap { background: var(--black); }

    .product-img {
      width: 75%; height: 85%; object-fit: contain;
      transition: transform .7s var(--ease-out), opacity .4s;
    }
    .product-card:hover .product-img { transform: scale(1.04); }

    /* Coming soon: silhouette effect — dark image on black bg */
    .product-card.coming-soon .product-img {
      filter: brightness(0) invert(0);
      opacity: 0.18;
    }

    .product-overlay {
      position: absolute; inset: 0; background: rgba(14,14,14,0);
      display: flex; align-items: flex-end; padding: 24px;
      transition: background .4s var(--ease-out);
    }
    .product-card:hover .product-overlay { background: rgba(14,14,14,.06); }
    .overlay-cta {
      font-family: var(--font-display); font-size: 8.5px; letter-spacing: .2em;
      color: var(--white); background: var(--black); padding: 10px 18px;
      transform: translateY(8px); opacity: 0;
      transition: opacity .3s, transform .3s var(--ease-out);
    }
    .product-card:hover .overlay-cta { opacity: 1; transform: translateY(0); }

    .coming-badge {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      font-family: var(--font-display); font-size: 8px; letter-spacing: .24em;
      color: var(--white); opacity: .5; white-space: nowrap;
    }

    .product-info { padding: 18px 4px 28px; }
    .product-name { font-family: var(--font-display); font-size: 10px; letter-spacing: .16em; font-weight: 700; margin-bottom: 4px; }
    .product-collection { font-family: var(--font-display); font-size: 8px; letter-spacing: .14em; color: var(--grey-mid); }

    /* Product Modal */
    .modal-backdrop {
      position: fixed; inset: 0; background: rgba(14,14,14,.7); z-index: 200;
      opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-out);
      backdrop-filter: blur(4px);
    }
    .modal-backdrop.open { opacity: 1; pointer-events: all; }

    /* ─── Modal: side-by-side layout to fit in one screen ─── */
    .modal {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: min(900px, 100vw); background: var(--white); z-index: 201;
      transform: translateX(100%); transition: transform .5s var(--ease-out);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 100vh;
    }
    .modal.open { transform: translateX(0); }

    .modal-close {
      position: absolute; top: 20px; right: 24px;
      width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
      cursor: none; z-index: 2;
    }
    .modal-close svg { width: 18px; height: 18px; stroke: var(--black); fill: none; stroke-width: 1.2; }
    .modal-close:hover svg { stroke: var(--green); }

    /* Left column: gallery */
    .modal-gallery {
      position: relative; background: var(--grey-light);
      display: flex; flex-direction: column;
      height: 100vh; overflow: hidden;
    }
    .modal-main-img-wrap {
      flex: 1; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      min-height: 0;
    }
    .modal-main-img {
      max-width: 85%; max-height: 85%; object-fit: contain; transition: opacity .3s;
    }
    .modal-thumbs { display: flex; gap: 2px; padding: 2px; flex-shrink: 0; }
    .thumb {
      width: 72px; height: 72px; overflow: hidden; background: var(--grey-light);
      cursor: none; border: 2px solid transparent; transition: border-color .2s; flex-shrink: 0;
    }
    .thumb.active { border-color: var(--black); }
    .thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transition: opacity .2s; }
    .thumb.active img, .thumb:hover img { opacity: 1; }

    /* Right column: info */
    .modal-body {
      padding: 48px 36px 32px;
      overflow-y: auto;
      height: 100vh;
      display: flex; flex-direction: column;
    }
    .modal-collection { font-family: var(--font-display); font-size: 8px; letter-spacing: .24em; color: var(--green); margin-bottom: 10px; }
    .modal-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: .06em; line-height: 1.1; margin-bottom: 14px; }
    .modal-desc { font-family: var(--font-serif); font-size: 14px; font-weight: 300; line-height: 1.55; color: var(--grey-text); margin-bottom: 24px; font-style: italic; }
    .modal-section-title {
      font-family: var(--font-display); font-size: 7.5px; letter-spacing: .22em;
      color: var(--grey-mid); margin-bottom: 10px; padding-bottom: 8px;
      border-bottom: 1px solid var(--grey-light);
    }

    .colors-row { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
    .color-swatch { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: none; }
    .color-dot {
      width: 22px; height: 22px; border-radius: 50%; border: 2px solid transparent;
      transition: border-color .2s, transform .2s; box-shadow: 0 1px 4px rgba(0,0,0,.15);
    }
    .color-swatch.active .color-dot { border-color: var(--black); transform: scale(1.15); }
    .color-swatch:hover .color-dot { transform: scale(1.1); }
    .color-label { font-family: var(--font-display); font-size: 7px; letter-spacing: .1em; color: var(--grey-text); white-space: nowrap; }

    .dims-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1px; background: var(--grey-light); border: 1px solid var(--grey-light); margin-bottom: 20px;
    }
    .dim-item { background: var(--white); padding: 10px 14px; }
    .dim-label { font-family: var(--font-display); font-size: 7px; letter-spacing: .14em; color: var(--grey-mid); margin-bottom: 4px; text-transform: uppercase; }
    .dim-value { font-family: var(--font-serif); font-size: 15px; font-weight: 400; }

    .materials-list { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
    .material-tag { font-family: var(--font-display); font-size: 7.5px; letter-spacing: .1em; padding: 6px 10px; border: 1px solid var(--grey-light); color: var(--grey-text); }

    .inquiry-btn {
      width: 100%; padding: 14px; background: var(--black); color: var(--white);
      font-family: var(--font-display); font-size: 8.5px; letter-spacing: .18em;
      cursor: none; transition: background .2s; margin-top: auto;
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .inquiry-btn:hover { background: var(--green); }
    .inquiry-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; }

    /* Inquiry / Contact Modal */
    .contact-modal {
      position: fixed; inset: 0; background: rgba(14,14,14,.8); z-index: 300;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity .3s;
    }
    .contact-modal.open { opacity: 1; pointer-events: all; }
    .contact-box {
      background: var(--white); padding: 52px 48px; width: min(520px, 90vw);
      transform: translateY(20px); transition: transform .4s var(--ease-out);
    }
    .contact-modal.open .contact-box { transform: translateY(0); }
    .contact-box h3 { font-family: var(--font-display); font-size: 13px; letter-spacing: .14em; margin-bottom: 6px; }
    .contact-box p { font-family: var(--font-serif); font-size: 16px; font-style: italic; color: var(--grey-text); margin-bottom: 32px; line-height: 1.5; }
    .form-field { margin-bottom: 20px; }
    .form-field label { display: block; font-family: var(--font-display); font-size: 8px; letter-spacing: .18em; color: var(--grey-text); margin-bottom: 8px; }
    .form-field input, .form-field textarea {
      width: 100%; padding: 12px 16px; border: 1px solid var(--grey-light);
      background: var(--white); font-family: var(--font-body); font-size: 13px;
      font-weight: 300; color: var(--black); outline: none; transition: border-color .2s;
    }
    .form-field input:focus, .form-field textarea:focus { border-color: var(--green); }
    .form-field textarea { height: 100px; resize: vertical; }
    .form-actions { display: flex; gap: 12px; margin-top: 28px; }
    .btn-submit {
      flex: 1; padding: 14px; background: var(--black); color: var(--white);
      font-family: var(--font-display); font-size: 9px; letter-spacing: .18em; cursor: none; transition: background .2s;
    }
    .btn-submit:hover { background: var(--green); }
    .btn-cancel {
      padding: 14px 20px; border: 1px solid var(--grey-light); color: var(--grey-text);
      font-family: var(--font-display); font-size: 9px; letter-spacing: .14em; cursor: none; transition: border-color .2s;
    }
    .btn-cancel:hover { border-color: var(--black); color: var(--black); }

    /* Footer */
    footer {
      padding: 32px 48px; border-top: 1px solid var(--grey-light);
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-insta {
      display: flex; align-items: center; gap: 8px;
      font-family: var(--font-display); font-size: 8.5px; letter-spacing: .14em;
      color: var(--grey-text); transition: color .2s;
    }
    .footer-insta:hover { color: var(--black); }
    .footer-insta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.4; }
    .footer-right { text-align: right; }
    /* ← رنگ آبی برند برای "Parsa Ghobadi" */
    .footer-credit { font-family: var(--font-serif); font-size: 13px; font-style: italic; color: var(--grey-text); }
    .footer-credit span { color: var(--blue); font-weight: 500; }
    .footer-phone {
      display: flex; align-items: center; justify-content: flex-end; gap: 6px; margin-top: 4px;
      font-family: var(--font-display); font-size: 8.5px; letter-spacing: .1em; color: var(--grey-text);
    }
    .footer-phone svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.4; }

    /* Pages */
    .page { display: none; min-height: calc(100vh - 120px); }
    .page.active { display: block; }
    #page-home { display: block; }

    .about-section { padding: 100px 48px; max-width: 900px; margin: 0 auto; }
    .about-section h2 { font-family: var(--font-display); font-size: 11px; letter-spacing: .2em; color: var(--grey-mid); margin-bottom: 32px; }
    .about-text { font-family: var(--font-serif); font-size: 22px; font-weight: 300; line-height: 1.65; font-style: italic; color: var(--grey-text); }
    .about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; background: var(--grey-light); }
    .about-value { background: var(--white); padding: 40px 32px; }
    .about-value h4 { font-family: var(--font-display); font-size: 9px; letter-spacing: .2em; margin-bottom: 16px; }
    .about-value p { font-family: var(--font-serif); font-size: 15px; font-style: italic; color: var(--grey-text); line-height: 1.6; }

    .contact-section { padding: 100px 48px; max-width: 640px; margin: 0 auto; }
    .contact-section h2 { font-family: var(--font-display); font-size: 11px; letter-spacing: .2em; color: var(--grey-mid); margin-bottom: 32px; }

    .stores-section { padding: 100px 48px; max-width: 900px; margin: 0 auto; }
    .stores-section h2 { font-family: var(--font-display); font-size: 11px; letter-spacing: .2em; color: var(--grey-mid); margin-bottom: 48px; }
    .store-list { display: flex; flex-direction: column; gap: 1px; background: var(--grey-light); }
    .store-item { background: var(--white); padding: 32px 40px; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: start; gap: 40px; }
    .store-city { font-family: var(--font-display); font-size: 10px; letter-spacing: .16em; }
    .store-address { font-family: var(--font-serif); font-size: 16px; font-style: italic; color: var(--grey-text); line-height: 1.5; }
    .store-hours { font-family: var(--font-display); font-size: 8px; letter-spacing: .12em; color: var(--grey-mid); text-align: right; line-height: 2; }

    /* Animations */
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    .fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* Toast */
    .toast {
      position: fixed; bottom: 40px; left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--black); color: var(--white);
      font-family: var(--font-display); font-size: 9px; letter-spacing: .16em;
      padding: 14px 28px; opacity: 0;
      transition: opacity .3s, transform .3s var(--ease-out);
      z-index: 400; pointer-events: none;
      white-space: nowrap;
    }
    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

    /* No hamburger menu - nav always visible below logo */

    /* Tablet: 768px – 1024px */
    @media (max-width: 1024px) {
      header { padding: 18px 32px 14px; }
      .catalog { padding: 60px 32px 80px; }
      .about-section, .contact-section, .stores-section { padding: 80px 32px; }
      .modal-body { padding: 32px 36px 48px; }
      .hero-content { left: 48px; bottom: 40px; }
      footer { padding: 28px 32px; }
    }

    /* Mobile: ≤ 640px */
    @media (max-width: 640px) {

      /* Hide custom cursor on touch devices */
      #cursor, #cursor-follower { display: none; }
      body { cursor: auto; }
      button, a { cursor: pointer; }

      /* ── Header: always column, logo centered ── */
      header {
        padding: 12px 16px 10px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
      }
      .logo-mark { height: 28px; }
      nav {
        gap: 14px;
        flex-wrap: nowrap;
        justify-content: center;
      }
      .nav-divider { display: none; }
      .nav-icons { gap: 10px; }
      .nav-icon { width: 15px; height: 15px; }
      .nav-link { font-size: 8px; letter-spacing: .1em; }

      /* ── Hero ── */
      .hero { margin-top: 90px; }
      .hero-inner { height: 55vh; min-height: 340px; }
      .hero-content { left: 24px; bottom: 28px; right: 24px; }
      .hero-title { font-size: clamp(16px, 5vw, 24px); }
      .hero-sub { font-size: 8px; letter-spacing: .14em; }
      .hero-cta { margin-top: 18px; font-size: 8px; }

      /* ── Catalog ── */
      .catalog { padding: 40px 16px 60px; }
      .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 36px;
      }
      .collection-block { margin-bottom: 52px; }
      .collection-name { margin-bottom: 24px; font-size: 7.5px; }
      .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1px; }
      .product-info { padding: 8px 2px 14px; }
      .product-name { font-size: 7px; letter-spacing: .10em; }
      .product-collection { font-size: 6.5px; letter-spacing: .08em; }

      /* Always show overlay CTA on mobile (no hover) */
      .product-card:not(.coming-soon) .product-overlay { background: rgba(14,14,14,.04); }
      .product-card:not(.coming-soon) .overlay-cta { display: none; }

      /* ── Product Modal: single column scroll on mobile ── */
      .modal {
        top: auto;
        right: 0; left: 0; bottom: 0;
        width: 100%;
        height: 92vh;
        max-height: 92vh;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        grid-template-rows: unset;
        overflow: hidden;
      }
      .modal.open { transform: translateY(0); }
      .modal-gallery {
        height: auto;
        flex-shrink: 0;
        max-height: 42vh;
      }
      .modal-main-img-wrap { flex: 1; min-height: 0; }
      .modal-main-img { max-width: 75%; max-height: 90%; }
      .modal-thumbs .thumb { width: 56px; height: 56px; }
      .modal-close { top: 14px; right: 16px; }
      .modal-body {
        padding: 20px 20px 32px;
        height: auto;
        flex: 1;
        overflow-y: auto;
      }
      .modal-title { font-size: 15px; }
      .modal-desc { font-size: 13px; margin-bottom: 18px; }
      .modal-section-title { font-size: 7px; margin-bottom: 8px; }
      .dims-grid { grid-template-columns: repeat(2, 1fr); }
      .dim-value { font-size: 14px; }
      .inquiry-btn { padding: 14px; font-size: 8px; margin-top: 16px; }

      /* ── Inquiry / Contact Modal ── */
      .contact-box { padding: 36px 24px; }
      .contact-box h3 { font-size: 11px; }
      .contact-box p { font-size: 14px; margin-bottom: 24px; }
      .form-actions { flex-direction: column; }
      .btn-cancel { text-align: center; }

      /* ── About Page ── */
      .about-section { padding: 60px 20px 48px; }
      .about-text { font-size: 18px; }
      .about-values { grid-template-columns: 1fr; }
      .about-value { padding: 28px 24px; }

      /* ── Contact Page ── */
      .contact-section { padding: 60px 20px; }

      /* ── Stores Page ── */
      .stores-section { padding: 60px 20px; }
      .store-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 20px;
      }
      .store-hours { text-align: left; }

      /* ── Footer: insta left, name+phone right ── */
      footer {
        padding: 20px 20px 28px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }
      .footer-right { text-align: right; }
      .footer-phone { justify-content: flex-end; }

      /* ── Toast ── */
      .toast {
        white-space: normal;
        text-align: center;
        width: calc(100% - 48px);
        bottom: 24px;
      }
    }

    /* Very small screens: ≤ 380px */
    @media (max-width: 380px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-title { font-size: 14px; }
      .product-name { font-size: 6px; }
      .product-collection { display: none; }
    }
