  :root {
    --bg: #fdfaf6;          /* warm cream */
    --bg-soft: #f7f1e8;     /* slightly darker cream */
    --surface: #ffffff;
    --ink: #1f1d1b;
    --ink-soft: #4a4640;
    --ink-muted: #8c8579;
    --line: #ebe2d2;
    --line-soft: #f1ead9;
    --orange: #ed6a26;       /* warm friendly orange */
    --orange-soft: #f59658;
    --orange-light: #fef0e6;
    --gold: #d4a574;
    --serif: 'Frank Ruhl Libre', Georgia, serif;
    --sans: 'Heebo', -apple-system, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  ::selection { background: var(--orange-light); color: var(--ink); }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ============================================
     GENDER SPLIT
     ============================================ */
  .gender-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 420px;
    overflow: hidden;
    border-radius: 24px;
    gap: 4px;
  }
  .gender-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gender-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gender-card:hover img { transform: scale(1.06); }
  .gender-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.72) 100%);
    z-index: 1;
    transition: opacity .3s;
  }
  .gender-card:hover .gender-card-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0) 10%, rgba(0,0,0,0.78) 100%);
  }
  .gender-card-content {
    position: relative;
    z-index: 2;
    padding: 32px 36px;
    width: 100%;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
  }
  .gender-card-title {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }
  .gender-card-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    margin-top: 6px;
  }
  .gender-card-btn {
    background: #fff;
    color: var(--ink);
    border-radius: 100px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
  }
  .gender-card-btn svg { width: 14px; height: 14px; }
  .gender-card:hover .gender-card-btn {
    background: var(--orange);
    color: #fff;
  }
  .gender-card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
  }
  .gender-card-for {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  /* ============================================
     SLIDER COMMON
     ============================================ */
  .slider-section {
    padding: 72px 0;
    overflow: hidden;
  }
  .slider-section .section-head {
    text-align: right;
    margin: 0 0 32px;
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .slider-section .section-head > div { flex: 1; }

  .slider-nav {
    display: flex;
    gap: 8px;
  }
  .slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
  }
  .slider-btn:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: scale(1.05);
  }
  .slider-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
  }
  .slider-btn svg { width: 18px; height: 18px; }

  .slider-track-wrap {
    overflow: hidden;
    position: relative;
  }
  .slider-track {
    display: flex;
    gap: 20px;
    transition: transform .45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .slider-track .product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
  }

  /* ============================================
     OCCASIONS SLIDER
     ============================================ */
  .occasions-track {
    display: flex;
    gap: 16px;
    transition: transform .45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .occasion-card {
    flex: 0 0 200px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform .3s;
  }
  .occasion-card:hover { transform: translateY(-6px); }
  .occasion-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
  }
  .occasion-card:hover img { transform: scale(1.06); }
  .occasion-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
  }
  .occasion-card-content {
    position: absolute;
    bottom: 20px;
    left: 18px; right: 18px;
    color: #fff;
    z-index: 2;
  }
  .occasion-card-emoji {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }
  .occasion-card-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.3px;
  }
  .occasion-card-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin-top: 3px;
    font-weight: 500;
  }

  /* Gradient placeholders for occasion cards */
  .occ-birthday { background: linear-gradient(145deg, #f4a261, #e76f51); }
  .occ-wedding { background: linear-gradient(145deg, #dce8e8, #9dc8c8); }
  .occ-baby { background: linear-gradient(145deg, #ffd6e0, #ffb3c6); }
  .occ-anniversary { background: linear-gradient(145deg, #c9b8e8, #9b72cf); }
  .occ-housewarming { background: linear-gradient(145deg, #b7e4c7, #52b788); }
  .occ-graduation { background: linear-gradient(145deg, #fce4a8, #f4a135); }
  .occ-thanks { background: linear-gradient(145deg, #fad4c0, #f4845f); }
  .occ-business { background: linear-gradient(145deg, #c8d6df, #6b8f9e); }

  /* Product card slider variant */
  .product-slider-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 260px;
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
    transition: all .3s;
    cursor: pointer;
    border: 1px solid var(--line-soft);
    position: relative;
  }
  .product-slider-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -16px rgba(0,0,0,0.12);
    border-color: var(--orange);
  }
  .product-slider-card .product-image {
    aspect-ratio: 1;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
    border-radius: 0;
  }
  .product-slider-card .product-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
  }
  .product-slider-card:hover .product-image img { transform: scale(1.05); }

  .product-sold-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    z-index: 2;
  }
  .product-sold-badge .dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    margin-left: 6px;
    vertical-align: middle;
    animation: blink 1.5s ease-in-out infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* ============================================
     ANNOUNCE BAR
     ============================================ */
  .announce {
    background: var(--ink);
    color: var(--bg);
    padding: 10px 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  .announce strong { color: var(--orange-soft); font-weight: 700; }

  /* ============================================
     HEADER
     ============================================ */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 250, 246, 0.95);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--line-soft);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 24px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .logo-svg {
    width: 38px; height: 38px;
    flex-shrink: 0;
  }
  .logo-name {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--ink);
    line-height: 1;
  }
  .logo-sub {
    font-size: 10px;
    color: var(--ink-muted);
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 3px;
    display: block;
  }

  .nav {
    display: flex;
    gap: 4px;
    flex: 1;
    justify-content: center;
  }
  .nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 8px;
    transition: all .15s;
  }
  .nav-link:hover { color: var(--ink); background: var(--bg-soft); }
  .nav-link.active { color: var(--orange); font-weight: 600; }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }
  .icon-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    color: var(--ink);
    display: grid; place-items: center;
    transition: all .15s;
    cursor: pointer;
    position: relative;
  }
  .icon-btn:hover { background: var(--bg-soft); }
  .icon-btn svg { width: 18px; height: 18px; }
  .cart-count {
    position: absolute;
    top: 4px; right: 4px;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    display: grid; place-items: center;
  }

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

  /* ============================================
     HERO - Warm, friendly
     ============================================ */
  .hero {
    padding: 56px 0 80px;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 20px;
  }
  .hero-eyebrow .heart {
    color: var(--orange);
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .hero-title .accent {
    color: var(--orange);
    font-style: italic;
    font-weight: 500;
    position: relative;
    display: inline-block;
  }
  .hero-title .accent svg {
    position: absolute;
    bottom: -10px;
    left: 0; right: 0;
    width: 100%;
    height: 12px;
    color: var(--orange);
    opacity: 0.5;
  }

  .hero-desc {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 28px;
    max-width: 480px;
  }

  .hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .btn {
    padding: 14px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid transparent;
  }
  .btn svg { width: 16px; height: 16px; transition: transform .2s; }
  .btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 14px rgba(237,106,38,0.3);
  }
  .btn-primary:hover {
    background: #d85a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237,106,38,0.4);
  }
  .btn-primary:hover svg { transform: translateX(-3px); }
  .btn-secondary {
    background: var(--surface);
    color: var(--ink);
    border-color: var(--line);
  }
  .btn-secondary:hover {
    border-color: var(--ink);
  }

  .hero-trust {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .hero-trust-stars {
    display: flex;
    gap: 2px;
    color: var(--orange);
  }
  .hero-trust-stars svg {
    width: 14px; height: 14px;
    fill: currentColor;
  }
  .hero-trust-item strong { color: var(--ink); font-weight: 700; }

  /* HERO VISUAL */
  .hero-visual {
    position: relative;
    aspect-ratio: 1.05;
  }
  .hero-images {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 100%;
  }
  .hero-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }
  .hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
  }
  .hero-img:hover img { transform: scale(1.05); }
  .hero-img.large {
    grid-row: span 2;
  }

  .hero-floating-card {
    position: absolute;
    background: var(--surface);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
  }
  .hero-floating-card.bottom {
    bottom: -16px;
    right: -16px;
  }
  .hero-floating-card .emoji {
    width: 36px; height: 36px;
    background: var(--orange-light);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 18px;
  }
  .hero-floating-card .text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
  }
  .hero-floating-card .text span {
    font-size: 11px;
    color: var(--ink-muted);
  }

  /* ============================================
     TRUST BAR
     ============================================ */
  .trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 28px 0;
  }
  .trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
  }
  .trust-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
  }
  .trust-bar-item:not(:last-child) {
    border-left: 1px solid var(--line-soft);
  }
  .trust-bar-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--orange-light);
    color: var(--orange);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .trust-bar-icon svg { width: 20px; height: 20px; }
  .trust-bar-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
  }
  .trust-bar-text span {
    font-size: 12px;
    color: var(--ink-muted);
  }

  /* ============================================
     SECTION TITLES
     ============================================ */
  section { padding: 72px 0; }
  .section-head {
    text-align: center;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-head.right {
    text-align: right;
    margin: 0 0 32px;
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .section-head.right > div { flex: 1; }
  .section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .section-title .accent {
    color: var(--orange);
    font-style: italic;
    font-weight: 500;
  }
  .section-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  /* ============================================
     CATEGORIES - Clean grid with images
     ============================================ */
  .cats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .cat {
    text-align: center;
    cursor: pointer;
    transition: transform .2s;
  }
  .cat:hover { transform: translateY(-4px); }
  .cat-img {
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--line-soft);
    display: grid;
    place-items: center;
    font-size: 36px;
    margin-bottom: 12px;
    transition: all .25s;
    overflow: hidden;
    position: relative;
  }
  .cat:hover .cat-img {
    border-color: var(--orange);
    background: var(--orange-light);
    transform: rotate(-5deg);
  }
  .cat-img img {
    width: 65%;
    height: 65%;
    object-fit: cover;
    border-radius: 50%;
  }
  .cat-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }
  .cat-count {
    font-size: 11px;
    color: var(--ink-muted);
    margin-top: 2px;
  }

  /* ============================================
     PRODUCTS - Hero of the page
     ============================================ */
  .view-all {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
    flex-shrink: 0;
  }
  .view-all:hover { gap: 12px; }
  .view-all svg { width: 14px; height: 14px; }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .product-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    transition: all .25s;
    cursor: pointer;
    border: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .product-card:hover {
    border-color: var(--line);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.06);
  }

  .product-image {
    aspect-ratio: 1;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
  }
  .product-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }
  .product-card:hover .product-image img {
    transform: scale(1.04);
  }

  .product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ink);
    color: var(--bg);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
  }
  .product-badge.hot {
    background: var(--orange);
    color: #fff;
  }
  .product-badge.sale {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--ink);
  }

  .product-fav {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    color: var(--ink-muted);
    display: grid; place-items: center;
    z-index: 2;
    transition: all .15s;
    cursor: pointer;
  }
  .product-fav:hover {
    background: #fff;
    color: var(--orange);
  }
  .product-fav svg { width: 16px; height: 16px; }

  .product-design-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    color: var(--bg);
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .product-design-strip svg { width: 14px; height: 14px; }
  .product-card:hover .product-design-strip {
    transform: translateY(0);
  }

  .product-info {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
  }
  .product-name {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    flex: 1;
  }
  .product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 500;
  }
  .product-rating svg { width: 12px; height: 12px; color: var(--orange); fill: var(--orange); }
  .product-rating .reviews {
    color: var(--ink-muted);
    margin-right: 4px;
  }
  .product-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
  }
  .product-price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .product-price-old {
    text-decoration: line-through;
    color: var(--ink-muted);
    font-size: 13px;
    font-weight: 500;
  }
  .product-price {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1;
  }
  .product-price .currency {
    font-size: 14px;
    color: var(--ink-muted);
    font-weight: 600;
    margin-left: 2px;
  }
  .product-add-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--ink);
    display: grid; place-items: center;
    transition: all .15s;
    flex-shrink: 0;
  }
  .product-add-btn:hover {
    background: var(--orange);
    color: #fff;
    transform: scale(1.08);
  }
  .product-add-btn svg { width: 16px; height: 16px; }

  /* ============================================
     EDITOR PREVIEW - Soft & inviting
     ============================================ */
  .editor-section {
    background: var(--bg-soft);
  }
  .editor-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .editor-content { padding-right: 12px; }
  .editor-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0 28px;
  }
  .editor-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    transition: all .2s;
  }
  .editor-feature:hover {
    border-color: var(--orange);
    transform: translateX(-4px);
  }
  .editor-feature-icon {
    width: 38px; height: 38px;
    background: var(--orange-light);
    border-radius: 10px;
    display: grid; place-items: center;
    color: var(--orange);
    flex-shrink: 0;
  }
  .editor-feature-icon svg { width: 18px; height: 18px; }
  .editor-feature-text strong {
    display: block;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
  }
  .editor-feature-text span {
    font-size: 13px;
    color: var(--ink-muted);
  }

  .editor-mockup {
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  }
  .mockup-bar {
    height: 36px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 6px;
  }
  .mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
  }
  .mockup-dot.r { background: #ff5f57; }
  .mockup-dot.y { background: #febc2e; }
  .mockup-dot.g { background: #28c840; }
  .mockup-content {
    height: calc(100% - 36px);
    display: grid;
    grid-template-columns: 64px 1fr 180px;
  }
  .mockup-rail {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 4px;
  }
  .mockup-rail-tab {
    width: 42px; height: 42px;
    border-radius: 8px;
    display: grid; place-items: center;
    color: rgba(255,255,255,0.5);
  }
  .mockup-rail-tab.active {
    background: var(--orange);
    color: #fff;
  }
  .mockup-rail-tab svg { width: 18px; height: 18px; }
  .mockup-canvas {
    background: var(--bg);
    background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.05) 1px, transparent 0);
    background-size: 18px 18px;
    display: grid;
    place-items: center;
    padding: 24px;
  }
  .mockup-product {
    width: 78%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #c9b291, #8a6d4a);
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    display: grid; place-items: center;
    position: relative;
    overflow: hidden;
  }
  .mockup-product::before {
    content: '';
    position: absolute;
    inset: 14%;
    border: 1.5px dashed rgba(0,0,0,0.18);
    border-radius: 4px;
  }
  .mockup-product::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(92deg, transparent 0px, rgba(101,67,33,0.1) 2px, transparent 4px);
    pointer-events: none;
  }
  .mockup-text {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 700;
    color: #2a1810;
    z-index: 1;
    position: relative;
  }
  .mockup-info {
    background: var(--surface);
    border-right: 1px solid var(--line-soft);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .mockup-info-head {
    font-size: 9px;
    font-weight: 700;
    color: var(--ink-muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .mockup-layer {
    background: var(--bg-soft);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mockup-layer.active {
    background: var(--orange-light);
    border: 1px solid var(--orange);
  }
  .mockup-layer-dot {
    width: 18px; height: 18px;
    background: var(--surface);
    border-radius: 4px;
    display: grid; place-items: center;
    color: var(--orange);
  }
  .mockup-layer-dot svg { width: 10px; height: 10px; }

  /* ============================================
     OCCASIONS - simple chips
     ============================================ */
  .occasions {
    background: var(--surface);
    padding: 48px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .occasions-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .occasion-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-soft);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: all .15s;
    border: 1.5px solid transparent;
  }
  .occasion-chip:hover {
    background: var(--orange-light);
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
  }
  .occasion-chip .emoji { font-size: 16px; }

  /* ============================================
     PROMO BANNER - Soft gentle
     ============================================ */
  .promo-banner {
    background: linear-gradient(135deg, var(--orange-light) 0%, #fef6ed 100%);
    border-radius: 24px;
    padding: 48px;
    margin: 24px;
    max-width: 1232px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
  }
  .promo-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237,106,38,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .promo-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
  }
  .promo-eyebrow {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .promo-title {
    font-family: var(--serif);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--ink);
  }
  .promo-title .accent {
    color: var(--orange);
    font-style: italic;
    font-weight: 500;
  }
  .promo-desc {
    font-size: 15px;
    color: var(--ink-soft);
    margin-bottom: 24px;
    max-width: 440px;
    line-height: 1.55;
  }
  .promo-code {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 2px dashed var(--orange);
    padding: 10px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  .promo-code-label {
    font-size: 12px;
    color: var(--ink-muted);
  }
  .promo-code-val {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 2px;
  }
  .promo-discount {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .promo-discount-circle {
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--surface);
    box-shadow: 0 20px 40px rgba(237,106,38,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid var(--orange);
  }
  .promo-discount-percent {
    font-family: var(--serif);
    font-size: 72px;
    color: var(--orange);
    line-height: 1;
    font-weight: 700;
  }
  .promo-discount-text {
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ============================================
     HOW IT WORKS - simple
     ============================================ */
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
  }
  .how-step {
    text-align: center;
    padding: 32px 20px;
  }
  .how-step-icon {
    width: 64px; height: 64px;
    background: var(--orange-light);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--orange);
    margin: 0 auto 18px;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    border: 2px dashed var(--orange);
    transition: transform .3s;
  }
  .how-step:hover .how-step-icon {
    transform: rotate(360deg);
  }
  .how-step h3 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .how-step p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
    max-width: 260px;
    margin: 0 auto;
  }

  /* ============================================
     TESTIMONIALS
     ============================================ */
  .testimonials {
    background: var(--bg-soft);
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .testimonial {
    background: var(--surface);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--line-soft);
    transition: all .25s;
  }
  .testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  }
  .testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
    color: var(--orange);
  }
  .testimonial-stars svg {
    width: 16px; height: 16px;
    fill: currentColor;
  }
  .testimonial-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
  }
  .testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--orange);
    display: grid; place-items: center;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .testimonial-name {
    font-weight: 700;
    color: var(--ink);
    font-size: 13px;
  }
  .testimonial-product {
    font-size: 11px;
    color: var(--ink-muted);
    margin-top: 1px;
  }
  .testimonial-verified {
    margin-right: auto;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: var(--orange);
    font-weight: 600;
  }
  .testimonial-verified svg { width: 11px; height: 11px; }

  /* ============================================
     NEWSLETTER
     ============================================ */
  .newsletter {
    text-align: center;
    padding: 64px 24px;
  }
  .newsletter-inner {
    max-width: 540px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    padding: 40px;
    position: relative;
  }
  .newsletter-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange-light);
    color: var(--orange);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .newsletter h2 {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.15;
    color: var(--ink);
  }
  .newsletter h2 .accent {
    color: var(--orange);
    font-style: italic;
    font-weight: 500;
  }
  .newsletter p {
    color: var(--ink-soft);
    margin-bottom: 22px;
    font-size: 14px;
  }
  .newsletter-form {
    display: flex;
    gap: 6px;
    background: var(--bg-soft);
    border-radius: 100px;
    padding: 5px;
    max-width: 420px;
    margin: 0 auto;
  }
  .newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 18px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
    outline: none;
  }
  .newsletter-form input::placeholder { color: var(--ink-muted); }
  .newsletter-form button {
    background: var(--orange);
    color: #fff;
    border-radius: 100px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 13px;
    transition: all .15s;
  }
  .newsletter-form button:hover {
    background: #d85a1a;
  }

  /* ============================================
     FOOTER
     ============================================ */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.85);
    padding: 64px 0 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .logo-name { color: #fff; }
  .footer-brand .logo-sub { color: var(--orange-soft); }
  .footer-brand p {
    margin: 18px 0;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.65;
    max-width: 320px;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }
  .footer-contact a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .15s;
  }
  .footer-contact a:hover { color: var(--orange-soft); }
  .footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange-soft); }

  .footer-col h4 {
    font-family: var(--serif);
    font-size: 16px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .footer-col a {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    transition: all .15s;
  }
  .footer-col a:hover { color: var(--orange-soft); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom p {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
  }
  .footer-payments {
    display: flex;
    gap: 6px;
  }
  .footer-payment {
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .footer-social {
    display: flex;
    gap: 6px;
  }
  .footer-social a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: grid; place-items: center;
    color: rgba(255,255,255,0.7);
    transition: all .15s;
  }
  .footer-social a:hover {
    background: var(--orange);
    color: #fff;
  }
  .footer-social svg { width: 14px; height: 14px; }

  /* ============================================
     MOBILE
     ============================================ */
  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .editor-grid { grid-template-columns: 1fr; gap: 40px; }
    .promo-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .promo-banner { padding: 36px 28px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .cats-grid { grid-template-columns: repeat(4, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .trust-bar-item:not(:last-child) { border-left: none; }
    .trust-bar-item:nth-child(odd) { border-left: 1px solid var(--line-soft); }
    .how-grid { grid-template-columns: 1fr; gap: 12px; }
  }

  @media (max-width: 768px) {
    section { padding: 56px 0; }
    .container { padding: 0 16px; }
    .nav { display: none; }
    .mobile-menu-btn {
      display: grid;
      place-items: center;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--bg-soft);
      color: var(--ink);
    }
    .mobile-menu-btn svg { width: 20px; height: 20px; }
    .header-inner { padding: 12px 16px; }
    .logo-sub { display: none; }

    .hero { padding: 32px 0 56px; }
    .hero-cta-row { flex-direction: column; }
    .hero-cta-row .btn { justify-content: center; }
    .hero-floating-card.bottom { right: 0; bottom: -8px; padding: 8px 12px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-info { padding: 14px 14px; }
    .product-name { font-size: 14px; }
    .product-price { font-size: 18px; }
    .product-design-strip { transform: translateY(0); padding: 8px 10px; font-size: 11px; }
    .product-fav { width: 30px; height: 30px; }

    .cats-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .cat-img { font-size: 28px; }

    .promo-banner { margin: 0 16px; padding: 28px 20px; border-radius: 18px; }
    .promo-discount-circle { width: 160px; height: 160px; }
    .promo-discount-percent { font-size: 56px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .trust-bar { padding: 20px 0; }
    .trust-bar-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .trust-bar-item { gap: 10px; padding: 8px 0; }
    .trust-bar-icon { width: 36px; height: 36px; }
    .trust-bar-text strong { font-size: 13px; }
    .trust-bar-text span { font-size: 11px; }

    .editor-mockup-content { grid-template-columns: 56px 1fr; }
    .mockup-info { display: none; }

    .newsletter-inner { padding: 28px 20px; }
    .newsletter-form { flex-direction: column; border-radius: 14px; padding: 6px; gap: 6px; }
    .newsletter-form input { text-align: center; padding: 14px; }
    .newsletter-form button { border-radius: 10px; padding: 12px; }

    .section-head.right { flex-direction: column; align-items: stretch; text-align: right; }
    .section-head { margin-bottom: 28px; }

    .testimonial { padding: 24px; }
  }

