  .home-wrapper {
    padding: 0;
    overflow-x: hidden;
  }

  /* Hero Banner */
  .hero-banner {
    margin: 12px 16px 0;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a2e1b 0%, #2D3E2E 40%, #3a5239 100%);
    aspect-ratio: 2 / 1;
    width: calc(100% - 32px);
  }
  .hero-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
  }
  .hero-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
  }
  .hero-slide.hero-slide-nooverlay::before {
    display: none;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 24px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 4px 10px;
    width: fit-content;
    margin-bottom: 12px;
  }
  .hero-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .hero-badge span {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
  }
  .hero-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
  }
  .hero-title em {
    font-style: italic;
    color: #A8D08D;
  }
  .hero-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin: 0;
  }
  .hero-image {
    display: none;
  }
  .hero-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
  }
  .hero-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: background 0.3s;
  }
  .hero-dots span.active {
    background: #fff;
  }
  .hero-arrow {
    display: none;
  }

  @media (max-width: 400px) {
    .hero-banner {
      margin: 12px 10px 0;
      width: calc(100% - 20px);
      border-radius: 14px;
    }
    .hero-title { font-size: 18px; }
    .hero-content { padding: 14px 12px 12px; }
    .hero-sub { font-size: 11px; }
  }
  @media (min-width: 769px) {
    .hero-banner {
      margin: 12px 24px 0;
      width: calc(100% - 48px);
    }
    .hero-title { font-size: 26px; }
    .hero-content { padding: 28px 28px 24px; }
  }

  /* Search */
  .home-search {
    padding: 16px 16px 0;
  }
  .home-search .search-wrap {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
  }
  .home-search .search-wrap .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    stroke: #8B9B7A;
  }
  .home-search .search-wrap input {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    background: #fff;
    padding: 0 16px 0 44px;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-dark);
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  }
  .home-search .search-wrap input::placeholder {
    color: #9A9A8A;
  }
  .home-search .search-wrap input:focus {
    border-color: var(--color-warm-green);
    box-shadow: 0 0 0 3px rgba(107,127,78,0.12);
  }

  /* Category Chips */
  .cat-chips-wrap {
    padding: 14px 0 0;
    max-width: 600px;
    margin: 0 auto;
  }
  .cat-chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 4px;
  }
  .cat-chips::-webkit-scrollbar { display: none; }
  .cat-chip {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
  }
  .cat-chip:hover, .cat-chip.active {
    background: var(--color-sage-light);
    border-color: var(--color-warm-green);
    color: var(--color-forest);
  }
  .cat-chip .chip-icon {
    font-size: 16px;
    line-height: 1;
  }

  /* Section Header */
  /* Fast Track Section */
  .ft-section {
    margin: 20px 16px 0;
  }
  .ft-section h2 {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-forest);
    margin: 0 0 4px;
    letter-spacing: -0.02em;
  }
  .ft-section .ft-sub {
    font-size: 12px;
    color: #888;
    margin: 0 0 12px;
  }
  .ft-card {
    min-width: 160px;
    max-width: 160px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.2s;
    border: 2px solid #2D3E2E;
    flex-shrink: 0;
  }
  .ft-card:active { transform: scale(0.97); }
  .ft-card-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    position: relative;
  }
  .ft-card-img-placeholder {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2e1b 0%, #2D3E2E 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
  }
  .ft-card-body {
    padding: 10px 12px 12px;
  }
  .ft-card-body .ft-badge {
    display: inline-block;
    background: #2D3E2E;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
  }
  .ft-card-body .ft-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-forest);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ft-card-body .ft-price {
    font-size: 11px;
    color: #888;
  }
  .ft-card-body .ft-price strong {
    color: #2D3E2E;
    font-size: 14px;
    font-weight: 800;
  }

  /* Features Row */
  .features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 20px 8px;
    margin: 16px 16px 0;
    background: var(--color-sage-light);
    border-radius: 16px;
  }
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    position: relative;
    padding: 0 8px;
  }
  .feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(45, 62, 46, 0.2);
  }
  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-forest);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
  }
  .feature-item .feat-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-forest);
    line-height: 1.25;
  }
  .feature-item .feat-desc {
    font-size: 10px;
    color: #888;
    line-height: 1.35;
  }

  /* Testimonials */
  .testimonial-card {
    flex-shrink: 0;
    width: 260px;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .testimonial-card .t-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .testimonial-card .t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-sage-light);
  }
  .testimonial-card .t-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-forest);
  }
  .testimonial-card .t-loc {
    font-size: 11px;
    color: #999;
  }
  .testimonial-card .t-stars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 6px;
  }
  .testimonial-card .t-quote {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
  }

  /* Promo Banner */
  .promo-banner {
    margin: 20px 16px 24px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #2D3E2E 0%, #3a5239 100%);
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
    min-height: 130px;
  }
  .promo-content {
    flex: 1;
    z-index: 1;
  }
  .promo-label {
    font-size: 10px;
    font-weight: 700;
    color: #A8D08D;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .promo-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 4px;
  }
  .promo-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 12px;
  }
  .promo-code {
    display: inline-block;
    padding: 6px 16px;
    border: 1.5px dashed rgba(255,255,255,0.5);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
  }
  .promo-code:active {
    transform: scale(0.95);
    background: rgba(255,255,255,0.1);
  }
  .promo-code.copied {
    border-color: #A8D08D;
    background: rgba(168,208,141,0.15);
  }
  .promo-gift {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  }

  /* Request / Rating cards (existing functionality) */
  .home-requests-section {
    padding: 0 16px;
  }
  .home-requests-scroll {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    max-height: 210px;
    padding-right: 4px;
  }
  .home-requests-scroll::-webkit-scrollbar { width: 4px; }
  .home-requests-scroll::-webkit-scrollbar-thumb { background: var(--color-sage-mid); border-radius: 4px; }
  .home-req-card {
    flex-shrink: 0;
    width: 100%;
    background: linear-gradient(135deg, #F5E6C8 0%, #E8D5A3 100%);
    border-radius: 14px;
    padding: 14px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
    box-sizing: border-box;
  }
  .home-req-card:hover {
    transform: translateY(-2px);
  }
  .home-req-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 0 14px 0 10px;
    border: 1px solid;
  }
  .home-req-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-forest);
    line-height: 1.35;
    margin: 0 0 6px;
  }
  .home-req-meta {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #888;
    overflow: hidden;
  }
  .home-req-meta span {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .home-rating-card {
    flex-shrink: 0;
    width: 100%;
    background: linear-gradient(135deg, #D4EDDA 0%, #C8E6C9 100%);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }
  .home-rating-card .star-rating {
    font-size: 26px;
    cursor: pointer;
    color: #ccc;
    letter-spacing: 4px;
  }
  .home-rating-card .rating-comment-wrap {
    width: 100%;
    display: none;
    margin-top: 8px;
  }
  .home-rating-card .rating-comment {
    border-radius: 8px;
    font-size: 11px;
    resize: none;
    background: #FAF8F3;
    border-color: #ddd;
  }
  .home-rating-card .rating-submit-btn {
    font-size: 10px;
    border-radius: 8px;
    margin-top: 6px;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 20px 16px 10px;
  }
  .section-label .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
  }
  .section-label h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-forest);
    margin: 0;
  }

  .home-bottom-pad {
    height: 20px;
  }
