    /* petshop.css — صفحه اصلی (base.css را نیز بارگذاری کنید) */

    /* ===== AUTOCOMPLETE ===== */
    .autocomplete-box {
      position: absolute; top: calc(100% + 8px); right: 0; left: 0;
      background: white; border-radius: var(--radius); box-shadow: 0 12px 40px rgba(0,0,0,.14);
      border: 1px solid var(--border); z-index: 1200; max-height: 420px; overflow-y: auto; display: none;
    }
    .ac-item {
      padding: 10px 16px; display: flex; align-items: center; gap: 12px;
      cursor: pointer; border-bottom: 1px solid var(--border);
      color: var(--navy); font-size: .86rem; transition: background .12s;
    }
    .ac-item:last-child { border-bottom: none; }
    .ac-item:hover { background: var(--teal-pale,#e8fafb); }
    .ac-item i { color: var(--teal); width: 18px; text-align: center; flex-shrink: 0; }
    .ac-badge { margin-right: auto; font-size: .7rem; background: var(--teal-pale); color: var(--teal); padding: 2px 9px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
    .ac-highlight { background: #b2eff1; border-radius: 3px; padding: 0 2px; font-weight: 700; }
    /* product rows */
    .ac-prod { padding: 9px 14px; }
    .ac-prod-thumb { width: 46px; height: 46px; border-radius: 10px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; font-size: 1.5rem; border: 1px solid var(--border); }
    .ac-prod-thumb img.ac-prod-img { width: 100%; height: 100%; object-fit: cover; border-radius: 9px; }
    .ac-prod-info { flex: 1; min-width: 0; }
    .ac-prod-name { font-size: .83rem; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
    .ac-prod-meta { display: flex; gap: 8px; font-size: .7rem; color: var(--text-muted); }
    .ac-prod-meta span::before { content: ''; }
    .ac-prod-meta span + span::before { content: '·'; margin-left: 4px; }
    .ac-prod-price { text-align: left; flex-shrink: 0; }
    .ac-price-main { font-size: .82rem; font-weight: 800; color: var(--teal-dark); display: block; }
    .ac-price-old  { font-size: .7rem; color: var(--text-muted); text-decoration: line-through; display: block; }
    .ac-see-all { background: var(--bg,#f8fafc); justify-content: flex-start; color: var(--teal); font-weight: 600; font-size: .82rem; gap: 10px; }
    .ac-see-all i { font-size: .8rem; }

    /* ===== HERO ===== */
    .hero { margin: 28px 0 0; }
    .hero-slider-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
    .hero-slides { display: flex; transition: transform 0.55s cubic-bezier(.77,0,.18,1); }
    .hero-slide {
      min-width: 100%;
      padding: 48px 52px;
      display: flex; align-items: center;
      justify-content: space-between;
      gap: 30px;
      position: relative;
      overflow: hidden;
    }
    .slide-1 { background: linear-gradient(120deg, #d5f5f6 0%, #eafcff 60%, #c8f0f1 100%); }
    .slide-2 { background: linear-gradient(120deg, #ffeee5 0%, #fff5ef 60%, #ffddd0 100%); }
    .slide-3 { background: linear-gradient(120deg, #e8f0ff 0%, #f0f4ff 60%, #dde8ff 100%); }
    .hero-slide::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.4) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-text { position: relative; z-index: 1; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(14,159,165,0.12);
      color: var(--teal-dark);
      padding: 5px 14px; border-radius: 50px;
      font-size: 0.78rem; font-weight: 700;
      margin-bottom: 14px;
    }
    .hero-text h2 { font-size: 2rem; font-weight: 800; line-height: 1.35; margin-bottom: 12px; color: var(--navy); }
    .hero-text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
    .hero-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      color: white; text-decoration: none;
      padding: 13px 30px; border-radius: 50px;
      font-weight: 700; font-size: 0.92rem;
      box-shadow: 0 6px 20px rgba(14,159,165,0.35);
      transition: all 0.25s;
    }
    .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(14,159,165,0.42); }
    .hero-cta-alt {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--accent), #e55a28);
      color: white; text-decoration: none;
      padding: 13px 30px; border-radius: 50px;
      font-weight: 700; font-size: 0.92rem;
      box-shadow: 0 6px 20px rgba(255,107,53,0.35);
      transition: all 0.25s;
    }
    .hero-cta-alt:hover { transform: translateY(-2px); }
    .hero-img-wrap { position: relative; z-index: 1; flex-shrink: 0; }
    .hero-img-wrap img { width: 180px; height: 180px; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.12)); animation: floatAnim 3s ease-in-out infinite; }
    @keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
    .hero-deco { position: absolute; border-radius: 50%; background: rgba(14,159,165,0.07); pointer-events: none; }
    .hero-deco-1 { width: 200px; height: 200px; bottom: -60px; left: 40%; }
    .hero-deco-2 { width: 100px; height: 100px; top: -30px; left: 20%; }

    .slider-nav {
      position: absolute; bottom: 18px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 8px; z-index: 10;
    }
    .slider-dot {
      width: 8px; height: 8px;
      border-radius: 50%; background: rgba(14,159,165,0.3);
      cursor: pointer; transition: all 0.3s;
      border: none;
    }
    .slider-dot.active { width: 24px; border-radius: 4px; background: var(--teal); }
    .slider-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: white; border: none; cursor: pointer;
      width: 38px; height: 38px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-md); color: var(--teal);
      font-size: 0.9rem; z-index: 10;
      transition: all 0.2s;
    }
    .slider-arrow:hover { transform: translateY(-50%) scale(1.1); }
    .slider-prev { right: 16px; }
    .slider-next { left: 16px; }

    /* ===== STATS ===== */
    .stats-bar {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin: 24px 0;
      box-shadow: var(--shadow-sm);
    }
    .stat-item { background: white; padding: 18px 16px; display: flex; align-items: center; gap: 14px; }
    .stat-icon {
      width: 46px; height: 46px;
      border-radius: 14px;
      background: var(--teal-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--teal); flex-shrink: 0;
    }
    .stat-label { font-size: 0.75rem; color: var(--text-muted); }
    .stat-val { font-size: 0.92rem; font-weight: 700; color: var(--navy); }

    /* ===== SECTION HEADER ===== */
    .section-header {
      display: flex; align-items: center;
      justify-content: space-between;
      margin: 40px 0 20px;
    }
    .section-title {
      font-size: 1.4rem; font-weight: 800; color: var(--navy);
      display: flex; align-items: center; gap: 10px;
    }
    .section-title-bar {
      width: 4px; height: 26px;
      background: linear-gradient(to bottom, var(--teal), var(--teal-dark));
      border-radius: 4px;
    }
    .see-all {
      font-size: 0.82rem; color: var(--teal); text-decoration: none;
      display: flex; align-items: center; gap: 4px;
      font-weight: 600;
      transition: gap 0.2s;
    }
    .see-all:hover { gap: 8px; }

    /* ===== CATEGORIES ===== */
    .cats-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
      margin-bottom: 36px;
    }
    .cat-card {
      background: white;
      border-radius: var(--radius);
      padding: 20px 10px 16px;
      text-align: center;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.25s;
      box-shadow: var(--shadow-sm);
      text-decoration: none;
      color: var(--text);
    }
    .cat-card:hover, .cat-card.active-cat { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .cat-card.active-cat { background: var(--teal-pale); }
    .cat-icon {
      width: 54px; height: 54px;
      border-radius: 50%; margin: 0 auto 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      transition: transform 0.2s;
    }
    .cat-card:hover .cat-icon { transform: scale(1.1); }
    .cat-name { font-size: 0.82rem; font-weight: 600; }

    /* ===== FILTER BAR ===== */
    .filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
    .filter-btn {
      padding: 7px 18px; border-radius: 50px;
      border: 2px solid var(--border);
      background: white; cursor: pointer;
      font-family: 'Vazir', sans-serif;
      font-size: 0.82rem; font-weight: 600;
      color: var(--text-muted);
      transition: all 0.2s;
    }
    .filter-btn:hover { border-color: var(--teal); color: var(--teal); }
    .filter-btn.active { background: var(--teal); border-color: var(--teal); color: white; }

    /* ===== PRODUCT GRID ===== */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
      margin-bottom: 32px;
    }
    .product-card {
      background: white; border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
      display: flex; flex-direction: column;
      transition: all 0.28s;
      position: relative;
      box-shadow: var(--shadow-sm);
      animation: fadeInUp 0.4s ease both;
    }
    @keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
    .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
    .prod-img-wrap {
      background: var(--teal-pale);
      height: 145px;
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem; color: var(--teal-dark);
      position: relative; overflow: hidden;
    }
    .prod-img-wrap::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 120%, rgba(14,159,165,0.08), transparent 70%);
    }
    .prod-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }

    .search-status {
      text-align: center; padding: 14px 20px;
      background: white; border-radius: var(--radius);
      color: var(--teal-dark); font-size: 0.88rem;
      border: 1px solid var(--border);
      margin-bottom: 20px; display: none;
    }

    /* ===== DISCOUNT BANNER ===== */
    .discount-banner {
      background: linear-gradient(120deg, var(--teal-dark) 0%, #0b6b6e 40%, #094e51 100%);
      border-radius: var(--radius-lg);
      padding: 32px 40px;
      display: flex; align-items: center;
      justify-content: space-between;
      gap: 24px; flex-wrap: wrap;
      margin: 10px 0 40px;
      position: relative; overflow: hidden;
    }
    .discount-banner::before { content: ''; position: absolute; top: -40px; left: 10%; width: 200px; height: 200px; background: rgba(255,255,255,0.04); border-radius: 50%; }
    .discount-banner::after  { content: ''; position: absolute; bottom: -60px; right: 5%; width: 260px; height: 260px; background: rgba(255,255,255,0.04); border-radius: 50%; }
    .banner-content { position: relative; z-index: 1; }
    .banner-content h3 { color: white; font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
    .banner-content p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
    .banner-timer { display: flex; gap: 10px; position: relative; z-index: 1; }
    .timer-box { background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 10px 14px; text-align: center; min-width: 58px; }
    .timer-num { font-size: 1.5rem; font-weight: 800; color: white; line-height: 1; }
    .timer-label { font-size: 0.62rem; color: rgba(255,255,255,0.6); margin-top: 3px; }
    .timer-sep { color: rgba(255,255,255,0.5); font-size: 1.4rem; font-weight: 800; align-self: center; padding-bottom: 10px; }
    .banner-btn {
      background: white; color: var(--teal-dark);
      border: none; cursor: pointer;
      padding: 12px 28px; border-radius: 50px;
      font-family: 'Vazir', sans-serif;
      font-weight: 700; font-size: 0.9rem;
      position: relative; z-index: 1;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }
    .banner-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

    /* ===== BLOG ===== */
    .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-bottom: 40px; }
    .blog-card { background: white; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: all 0.25s; box-shadow: var(--shadow-sm); }
    .blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
    .blog-cover { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
    .blog-cover::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6)); }
    .blog-body { padding: 18px 20px 22px; }
    .blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 0.72rem; color: var(--text-muted); }
    .blog-meta span { display: flex; align-items: center; gap: 5px; }
    .blog-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.45; }
    .blog-excerpt { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
    .blog-read-more { display: inline-flex; align-items: center; gap: 5px; color: var(--teal); font-weight: 700; font-size: 0.82rem; text-decoration: none; transition: gap 0.2s; }
    .blog-read-more:hover { gap: 9px; }

    /* ===== FOOTER ===== */
    footer { background: var(--navy); color: #b8dde5; margin-top: 60px; padding: 50px 0 28px; border-radius: 40px 40px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand h4 { color: white; font-size: 1.2rem; margin-bottom: 12px; }
    .footer-brand p { font-size: 0.83rem; line-height: 1.7; color: #8ab5bf; }
    .social-row { display: flex; gap: 10px; margin-top: 18px; }
    .soc-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #b8dde5; font-size: 1rem; text-decoration: none; transition: all 0.2s; }
    .soc-btn:hover { background: var(--teal); color: white; transform: translateY(-2px); }
    .footer-col h4 { color: #7ecdd8; font-size: 0.9rem; margin-bottom: 16px; font-weight: 700; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a { color: #8ab5bf; text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
    .footer-col a:hover { color: white; }
    .footer-col li.contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; }
    .footer-col li.contact-item i { color: var(--teal); margin-top: 2px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 0.75rem; color: #6a9aaa; }
    .trust-icons { display: flex; gap: 12px; }
    .trust-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.06); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #7ecdd8; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .cats-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .hero-slide { padding: 28px 24px; }
      .hero-text h2 { font-size: 1.4rem; }
      .hero-img-wrap img { width: 120px; height: 120px; }
      .cats-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .discount-banner { padding: 24px; }
      .banner-timer { gap: 6px; }
      .timer-box { min-width: 48px; padding: 8px 10px; }
    }