/* =========================================
    RESET & VARIABLES
    ========================================= */
    :root {
      --primary-yellow: #f7c600;
      --primary-yellow-hover: #e6b500;
      --primary-green: #2a9d8f;
      --primary-green-dark: #21867a;
      --primary-dark: #222;
      --primary-red: #e63946;
      --gray-light: #f6f6f6;
      --gray-medium: #777;
      --gray-border: #eee;
      --white: #ffffff;
      --footer-bg: #0f172a;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.12);
      --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --radius: 16px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      font-family: "Vazirmatn", sans-serif;
      background: linear-gradient(70deg, rgba(242, 198, 198, 0.74) 0%, rgb(249, 232, 125) 100%);
      color: var(--primary-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* =========================================
    ANIMATIONS
    ========================================= */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease-out;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* =========================================
    HEADER & NAVIGATION
    ========================================= */
    header {
      position: sticky;
      top: 0;
      background: linear-gradient(135deg, #FFF9E6 0%, #FFF9E6 100%);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid var(--gray-border);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .header-inner {
      max-width: 1300px;
      margin: auto;
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .productsUl {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 1rem;
    }

    .menu-btn {
      font-size: 1.8rem;
      width: 50px;
      cursor: pointer;
      background: none;
      border: none;
      color: var(--primary-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      transition: var(--transition);
    }

    .menu-btn:hover {
      background: var(--gray-light);
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary-green);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .search-box {
      flex: 1;
      position: relative;
      max-width: 600px;
    }

    .search-box input {
      width: 100%;
      padding: 0.9rem 3rem 0.9rem 1.2rem;
      border-radius: 50px;
      border: 1px solid var(--gray-border);
      background: var(--gray-light);
      font-family: "Vazirmatn", sans-serif;
      font-size: 1rem;
      transition: var(--transition);
    }

    .search-box input:focus {
      outline: none;
      border-color: var(--primary-yellow);
      box-shadow: 0 0 0 3px rgba(247, 198, 0, 0.2);
      background: #fff;
    }

    .search-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gray-medium);
      font-size: 1.2rem;
    }

    .cart-btn {
      background: var(--primary-yellow);
      border: none;
      padding: 0.8rem 1.2rem;
      border-radius: 50px;
      cursor: pointer;
      white-space: nowrap;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      color: var(--primary-dark);
      position: relative;
    }

    .cart-btn:hover {
      background: var(--primary-yellow-hover);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .cart-count {
      background: var(--primary-red);
      color: white;
      font-size: 0.8rem;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      position: absolute;
      top: -5px;
      right: -5px;
    }

    /* =========================================
    DROPDOWN MENU 
    ========================================= */
    .productsList {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
      justify-content: center;
    }

    .productsLi {
      font-weight: bold;
      color: #21867a;
      cursor: pointer;
      padding: 8px 16px;
      border-radius: 50px;
      transition: all 0.3s ease;
      position: relative;
      font-size: 1rem;
    }

    .productsLi:hover {
      background: rgba(247, 198, 0, 0.2);
      transform: translateY(-2px);
    }

    .productsLi::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 50%;
      width: 0;
      height: 2px;
      background: var(--primary-green);
      transition: all 0.3s ease;
    }

    .productsLi:hover::after {
      width: 80%;
      right: 10%;
    }

    /* Dropdown Overlay */
    .dropdown-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .dropdown-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Dropdown Menus - CENTERED */
    /* Dropdown Menus - کاملاً در مرکز */
    .dog-products1,
    .cat-products1,
    .parrot-products1,
    .rabbit-products1 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
      border-radius: 28px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      width: 70%;
      max-width: 1200px;
      height: 60vh;
      max-height: 85vh;
      overflow-y: auto;
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 1.5rem;
    }

    .dog-products1.active,
    .cat-products1.active,
    .parrot-products1.active,
    .rabbit-products1.active {
      opacity: 1;
      visibility: visible;
    }

    /* اسکرول بار اختصاصی */
    .dog-products1::-webkit-scrollbar,
    .cat-products1::-webkit-scrollbar,
    .parrot-products1::-webkit-scrollbar,
    .rabbit-products1::-webkit-scrollbar {
      width: 6px;
    }

    .dog-products1::-webkit-scrollbar-track,
    .cat-products1::-webkit-scrollbar-track,
    .parrot-products1::-webkit-scrollbar-track,
    .rabbit-products1::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }

    .dog-products1::-webkit-scrollbar-thumb,
    .cat-products1::-webkit-scrollbar-thumb,
    .parrot-products1::-webkit-scrollbar-thumb,
    .rabbit-products1::-webkit-scrollbar-thumb {
      background: var(--primary-green);
      border-radius: 10px;
    }

    /* Custom Scrollbar for Dropdowns */
    .dog-products1::-webkit-scrollbar,
    .cat-products1::-webkit-scrollbar,
    .parrot-products1::-webkit-scrollbar,
    .rabbit-products1::-webkit-scrollbar {
      width: 6px;
    }

    .dog-products1::-webkit-scrollbar-track,
    .cat-products1::-webkit-scrollbar-track,
    .parrot-products1::-webkit-scrollbar-track,
    .rabbit-products1::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }

    .dog-products1::-webkit-scrollbar-thumb,
    .cat-products1::-webkit-scrollbar-thumb,
    .parrot-products1::-webkit-scrollbar-thumb,
    .rabbit-products1::-webkit-scrollbar-thumb {
      background: var(--primary-green);
      border-radius: 10px;
    }

    .tozihat {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
      width: 100%;
    }

    .tozihat>ul {
      min-width: 160px;
      flex: 1 1 auto;
      background: rgba(255, 255, 255, 0.8);
      padding: 1rem;
      border-radius: 16px;
      transition: all 0.3s ease;
    }

    .tozihat>ul:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .label-index {
      font-weight: bold;
      color: #21867a;
      display: block;
      margin-bottom: 0.8rem;
      font-size: 1.1rem;
      border-bottom: 2px solid var(--primary-yellow);
      padding-bottom: 0.3rem;
    }

    .dogUL,
    .catUL,
    .parrotUL,
    .rabbitUL {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    li>a {
      text-decoration: none;
      color: #e6b500;
      transition: all 0.3s ease;
      display: block;
      padding: 0.3rem 0;
    }

    li>a:hover {
      color: var(--primary-green);
      transform: translateX(-5px);
    }

    .close-dropdown {
      margin-top: 1.5rem;
      padding: 12px 28px;
      background: linear-gradient(135deg, #e63946, #d62828);
      color: white;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .close-dropdown:hover {
      transform: scale(1.05);
      box-shadow: var(--shadow-md);
    }

    /* =========================================
    OVERLAY & SIDEBARS
    ========================================= */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
      z-index: 999;
    }

    .overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .side-menu {
      position: fixed;
      top: 0;
      right: -320px;
      width: 300px;
      height: 100%;
      background: #fff;
      border-radius: 0 0 0 30px;
      padding: 2rem 1.5rem;
      transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
      box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
    }

    .side-menu.active {
      right: 0;
    }

    .side-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--gray-border);
    }

    .side-menu h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-green);
    }

    .close-menu {
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: var(--primary-dark);
      line-height: 1;
    }

    .side-menu a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 1rem 1.2rem;
      border-radius: 14px;
      margin-bottom: 0.8rem;
      color: var(--primary-dark);
      font-weight: 500;
      transition: var(--transition);
    }

    .side-menu a:hover,
    .side-menu a.active {
      background: var(--primary-yellow);
      color: var(--primary-dark);
      transform: translateX(-5px);
    }

    /* CART SIDEBAR */
    .cart-sidebar {
      position: fixed;
      top: 0;
      left: -400px;
      width: 380px;
      max-width: 90%;
      height: 100%;
      background: #fff;
      border-radius: 0 0 30px 0;
      padding: 2rem 1.5rem;
      transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1001;
      box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
    }

    .cart-sidebar.active {
      left: 0;
    }

    .cart-items-container {
      flex: 1;
      overflow-y: auto;
      margin: 1rem 0;
      border-top: 1px solid var(--gray-border);
      border-bottom: 1px solid var(--gray-border);
    }

    .cart-item {
      display: flex;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      align-items: center;
    }

    .cart-item img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 8px;
    }

    .cart-item-info {
      flex: 1;
    }

    .cart-item-title {
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .cart-item-price {
      color: var(--primary-red);
      font-size: 0.9rem;
      font-weight: 600;
    }

    .remove-item {
      color: var(--primary-red);
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1.5rem;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .remove-item:hover {
      background: rgba(230, 57, 70, 0.1);
    }

    .cart-footer {
      margin-top: auto;
    }

    .cart-total {
      display: flex;
      justify-content: space-between;
      font-weight: 800;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    .checkout-btn {
      width: 100%;
      padding: 14px;
      background: var(--primary-green);
      color: white;
      border: none;
      border-radius: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
    }

    .checkout-btn:hover {
      background: var(--primary-green-dark);
      transform: translateY(-2px);
    }

    .empty-cart-msg {
      text-align: center;
      color: var(--gray-medium);
      margin-top: 2rem;
    }

    /* =========================================
    HERO SLIDER
    ========================================= */
    .hero-slider {
      max-width: 1300px;
      margin: 2rem auto;
      height: 450px;
      border-radius: 40px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-lg);
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
      z-index: 1;
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-content {
      position: absolute;
      bottom: 40px;
      right: 40px;
      color: white;
      text-align: right;
      max-width: 60%;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
      z-index: 2;
      padding: 20px;
      border-radius: 20px;
      background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4));
    }

    .hero-content h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 20px;
      font-weight: 300;
    }

    .hero-btn {
      background: var(--primary-yellow);
      color: var(--primary-dark);
      border: none;
      padding: 12px 28px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
    }

    .hero-btn:hover {
      background: var(--primary-yellow-hover);
      transform: translateX(5px);
    }

    .slider-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 3;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: var(--transition);
    }

    .dot.active {
      background: var(--primary-yellow);
      transform: scale(1.3);
    }

    /* =========================================
    PRODUCTS SECTIONS
    ========================================= */
    .section {
      max-width: 1400px;
      margin: 4rem auto;
      padding: 3rem 1.5rem;
      border-radius: 40px;
      background: linear-gradient(135deg, #ff7a18, #ffb347);
      position: relative;
      overflow: hidden;
    }

    .section-new {
      background: linear-gradient(135deg, #2a9d8f, #264653);
    }

    .section-offer {
      background: linear-gradient(135deg, #e63946, #d62828);
    }

    .section-amazing {
      background: linear-gradient(135deg, #f7c600, #fca311);
    }

    .section::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 100%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
      z-index: 0;
      pointer-events: none;
    }

    .section-title-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 800;
      color: white;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .slider-btn {
      background: rgba(255, 255, 255, 0.25);
      border: none;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      color: white;
      font-size: 1.4rem;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slider-btn:hover {
      background: rgba(255, 255, 255, 0.4);
      transform: scale(1.1);
    }

    .products {
      display: flex;
      overflow-x: auto;
      gap: 1.5rem;
      padding: 1rem;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
      position: relative;
      z-index: 1;
    }

    .products::-webkit-scrollbar {
      height: 6px;
    }

    .products::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.4);
      border-radius: 3px;
    }

    /* PRODUCT CARDS */
    .card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
      flex: 0 0 280px;
      min-width: 280px;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .card-image {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .card:hover .card-image img {
      transform: scale(1.1);
    }

    .badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--primary-red);
      color: white;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      z-index: 2;
    }

    .card-content {
      padding: 1.2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .card-content h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--primary-dark);
    }

    .price-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin: 10px 0;
      direction: ltr;
    }

    .price {
      color: var(--primary-red);
      font-size: 1.2rem;
      font-weight: 800;
    }

    .original-price {
      color: var(--gray-medium);
      text-decoration: line-through;
      font-size: 0.9rem;
      margin-left: 5px;
    }

    .btn-add {
      background: var(--primary-green);
      border: none;
      padding: 12px;
      border-radius: 14px;
      color: white;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: auto;
      width: 100%;
    }

    .btn-add:hover {
      background: var(--primary-green-dark);
      transform: scale(1.02);
    }

    /* =========================================
    FEATURES SECTION 
    ========================================= */
    .features-section {
      max-width: 1300px;
      margin: 4rem auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      padding: 0 1.5rem;
    }

    .feature-box {
      background: #fff;
      padding: 2rem;
      border-radius: 20px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--gray-border);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .feature-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-yellow), var(--primary-green));
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }

    .feature-box:hover::before {
      transform: translateX(0);
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .feature-icon {
      font-size: 3rem;
      color: var(--primary-green);
      margin-bottom: 1rem;
      transition: transform 0.3s ease;
    }

    .feature-box:hover .feature-icon {
      transform: scale(1.1) rotate(5deg);
    }

    .feature-box h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .feature-box p {
      color: var(--gray-medium);
      font-size: 0.9rem;
    }

    /* =========================================
    TESTIMONIALS
    ========================================= */
    .testimonials-section {
      background: var(--gray-light);
      padding: 4rem 1.5rem;
      margin: 4rem 0;
      border-radius: 40px;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1300px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: #fff;
      padding: 2rem;
      border-radius: 20px;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .stars {
      color: var(--primary-yellow);
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .client-info {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 15px;
    }

    .client-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary-yellow), var(--primary-green));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: white;
    }

    /* =========================================
    NEWSLETTER
    ========================================= */
    .newsletter-section {
      background: linear-gradient(135deg, #1e293b, #0f172a);
      padding: 4rem 1.5rem;
      text-align: center;
      color: white;
      border-radius: 40px;
      max-width: 1300px;
      margin: 4rem auto;
      position: relative;
      overflow: hidden;
    }

    .newsletter-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(247, 198, 0, 0.1), transparent);
      animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .newsletter-content {
      position: relative;
      z-index: 2;
    }

    .newsletter-form {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .newsletter-input {
      padding: 12px 20px;
      border-radius: 50px;
      border: none;
      width: 300px;
      font-family: "Vazirmatn";
      outline: none;
    }

    .newsletter-btn {
      padding: 12px 30px;
      border-radius: 50px;
      border: none;
      background: var(--primary-yellow);
      color: var(--primary-dark);
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
    }

    .newsletter-btn:hover {
      background: var(--primary-yellow-hover);
      transform: translateY(-2px);
    }

    /* =========================================
    MODAL
    ========================================= */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
      z-index: 2000;
      padding: 20px;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-card {
      background: #fff;
      width: 100%;
      max-width: 500px;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.4s ease;
    }

    .modal-overlay.active .modal-card {
      transform: translateY(0);
      opacity: 1;
    }

    .modal-header {
      padding: 1.5rem;
      background: linear-gradient(135deg, #ff7a18, #ffb347);
      color: white;
      text-align: center;
      position: relative;
    }

    .modal-close {
      position: absolute;
      left: 15px;
      top: 15px;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      color: white;
      font-size: 1.4rem;
      cursor: pointer;
      transition: var(--transition);
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.35);
      transform: rotate(90deg);
    }

    .modal-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .modal-body {
      padding: 2rem;
      text-align: center;
    }

    .modal-body h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: var(--primary-dark);
    }

    .modal-price {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary-red);
      margin: 15px 0;
      direction: ltr;
      display: block;
    }

    .modal-actions {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .modal-btn {
      flex: 1;
      padding: 14px;
      border-radius: 14px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      border: none;
    }

    .modal-add {
      background: var(--primary-green);
      color: white;
    }

    .modal-add:hover {
      background: var(--primary-green-dark);
    }

    .modal-buy {
      background: var(--primary-yellow);
      color: var(--primary-dark);
    }

    .modal-buy:hover {
      background: var(--primary-yellow-hover);
    }

    /* =========================================
    FAQ SECTION
    ========================================= */
    .faq-section {
      max-width: 800px;
      margin: 4rem auto;
      padding: 3rem 1.5rem;
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    .faq-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 2.5rem;
      color: var(--primary-dark);
    }

    .faq-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-yellow), var(--primary-green));
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .accordion-item {
      background: var(--white);
      margin: 15px auto;
      border-radius: 16px;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      border: 1px solid var(--gray-border);
      transition: var(--transition);
    }

    .accordion-item.active {
      border-color: var(--primary-green);
    }

    .accordion-header {
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 700;
      font-size: 1rem;
      color: var(--primary-dark);
      background: #fff;
      transition: var(--transition);
    }

    .accordion-header:hover {
      background: #f9f9f9;
    }

    .accordion-item.active .accordion-header {
      color: var(--primary-green);
    }

    .accordion-icon {
      transition: transform 0.3s ease;
      color: var(--primary-green);
    }

    .accordion-item.active .accordion-icon {
      transform: rotate(180deg);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      padding: 0 22px;
      color: var(--gray-medium);
      transition: all 0.3s ease;
      line-height: 1.8;
      font-size: 0.9rem;
    }

    .accordion-item.active .accordion-content {
      max-height: 200px;
      padding: 0 22px 22px 22px;
    }

    /* =========================================
    FOOTER
    ========================================= */
    footer {
      background: var(--footer-bg);
      color: #94a3b8;
      padding-top: 80px;
      margin-top: 4rem;
      position: relative;
    }

    .footer-wave {
      position: absolute;
      top: -1px;
      left: 0;
      width: 100%;
      line-height: 0;
    }

    .footer-inner {
      max-width: 1300px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      padding: 0 1.5rem 60px;
    }

    .footer-col h4 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: var(--white);
      position: relative;
      display: inline-block;
    }

    .footer-col h4::after {
      content: "";
      position: absolute;
      bottom: -8px;
      right: 0;
      width: 40px;
      height: 3px;
      background: var(--primary-yellow);
      border-radius: 3px;
    }

    .footer-col a {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #cbd5e1;
      text-decoration: none;
      margin: 0.8rem 0;
      transition: var(--transition);
    }

    .footer-col a:hover {
      color: var(--primary-yellow);
      transform: translateX(-5px);
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: var(--transition);
    }

    .social-btn:hover {
      background: var(--primary-yellow);
      transform: translateY(-3px);
    }

    .copy {
      text-align: center;
      padding: 2rem;
      background: #0a0f1a;
      font-size: 0.9rem;
    }

    /* =========================================
    GO TO TOP BUTTON
    ========================================= */
    .goToTopA {
      z-index: 1000;
      position: fixed;
      bottom: 2rem;
      left: 2rem;
    }

    .button {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: var(--primary-yellow);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0px 0px 0px 4px rgba(247, 198, 0, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
      overflow: hidden;
      position: relative;
    }

    .svgIcon {
      width: 20px;
      transition: all 0.3s ease;
    }

    .svgIcon path {
      fill: var(--primary-dark);
    }

    .button:hover {
      width: 140px;
      border-radius: 50px;
    }

    .button:hover .svgIcon {
      transform: translateY(-200%);
      opacity: 0;
    }

    .button::before {
      position: absolute;
      bottom: -20px;
      content: "بازگشت به بالا";
      color: var(--primary-dark);
      font-size: 0px;
      font-weight: 700;
      white-space: nowrap;
    }

    .button:hover::before {
      font-size: 13px;
      opacity: 1;
      bottom: unset;
      transition-duration: 0.3s;
    }

    /* =========================================
    MOBILE NAVBAR
    ========================================= */
    .mobileNavbar {
      display: none;
      position: fixed;
      left: 50%;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      border-top: 2px solid rgba(247, 198, 0, 0.3);
      border-radius: 20px 20px 0 0;
      z-index: 999;
      padding: 8px 0;
      box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    }

    .mobileUL {
      display: flex;
      justify-content: space-around;
      align-items: center;
      width: 100%;
      margin: 0;
      padding: 0;
    }

    .mobileUL li {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 8px;
      border-radius: 12px;
      transition: all 0.3s ease;
      flex: 1;
    }

    .mobileUL li:active {
      background: rgba(247, 198, 0, 0.2);
      transform: scale(0.95);
    }

    .mobileUL li i {
      font-size: 24px;
      color: #f7c600;
    }

    .mobileUL li p {
      font-size: 11px;
      margin-top: 4px;
      color: #fff;
      font-weight: 500;
    }

    /* =========================================
    RESPONSIVE DESIGN
    ========================================= */
    @media (max-width: 1024px) {
      .hero-slider {
        height: 380px;
      }
    }

    @media (max-width: 768px) {
      .header-inner {
        flex-wrap: wrap;
      }

      .menu-btn {
        order: 1;
      }

      .logo {
        order: 2;
        flex: 1;
        justify-content: center;
        font-size: 1.4rem;
      }

      .cart-btn {
        order: 3;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
      }

      .search-box {
        order: 4;
        width: 100%;
        margin-top: 0.8rem;
        max-width: 100%;
      }

      .hero-slider {
        height: 320px;
        margin: 1rem;
        border-radius: 24px;
      }

      .hero-content {
        bottom: 20px;
        right: 20px;
        max-width: 85%;
        padding: 12px;
      }

      .hero-content h2 {
        font-size: 1.5rem;
      }

      .hero-content p {
        display: none;
      }

      .hero-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
      }

      .section {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
        border-radius: 28px;
      }

      .section-title {
        font-size: 1.5rem;
      }

      .slider-btn {
        display: none;
      }

      .card {
        flex: 0 0 45%;
        min-width: 45%;
      }

      .card-image {
        height: 160px;
      }

      .card-content {
        padding: 0.8rem;
      }

      .card-content h3 {
        font-size: 0.9rem;
      }

      .price {
        font-size: 1rem;
      }

      .features-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

      .feature-box {
        padding: 1rem;
      }

      .feature-icon {
        font-size: 2rem;
      }

      .feature-box h3 {
        font-size: 0.9rem;
      }

      .feature-box p {
        font-size: 0.75rem;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .faq-section {
        margin: 2rem 1rem;
        padding: 1.5rem;
      }

      .productsList {
        gap: 0.5rem;
        flex-wrap: wrap;
      }

      .productsLi {
        font-size: 13px;
        padding: 6px 12px;
      }

      .dog-products1,
      .cat-products1,
      .parrot-products1,
      .rabbit-products1 {
        width: 95%;
        max-height: 90vh;
        padding: 1rem;
      }
    }

    @media (max-width: 480px) {
      .mobileNavbar {
        display: block;
      }

      .cart-sidebar {
        width: 90%;
        border-radius: 0;
      }

      .card {
        flex: 0 0 48%;
        min-width: 48%;
      }

      .card-image {
        height: 140px;
      }

      .card-content h3 {
        font-size: 0.8rem;
      }

      .price {
        font-size: 0.85rem;
      }

      .btn-add {
        padding: 6px;
        font-size: 0.7rem;
      }

      .hero-slider {
        height: 260px;
      }

      .hero-content h2 {
        font-size: 1.2rem;
      }

      .features-section {
        gap: 0.8rem;
      }

      .feature-box p {
        display: none;
      }

      .productsList {
        flex-direction: column;
        align-items: center;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        margin: 5px 10px;
      }

      .productsLi {
        width: 100%;
        text-align: center;
      }

      .tozihat {
        flex-direction: column;
      }

      .tozihat>ul {
        min-width: auto;
      }

      .goToTopA {
        bottom: 80px;
        left: 15px;
      }

      .button {
        width: 45px;
        height: 45px;
      }

      .dog-products1,
      .cat-products1,
      .parrot-products1,
      .rabbit-products1 {
        width: 98%;
        max-height: 92vh;
        padding: 0.8rem;
        border-radius: 20px;
      }
    }

    @media (min-width: 769px) {
      .mobileNavbar {
        display: none !important;
      }

      .productsList {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
      }
    }

    /* Utility Classes */
    .hide-in-small-device {
      display: inline;
    }

    @media (max-width: 480px) {
      .hide-in-small-device {
        display: none;
      }
    }

    .order-message {
      background: #d4edda;
      color: #155724;
      padding: 15px;
      text-align: center;
      font-weight: bold;
      position: fixed;
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1002;
      border-radius: 50px;
      box-shadow: var(--shadow-md);
      animation: slideDown 0.5s ease;
    }

    @keyframes slideDown {
      from {
        top: -50px;
        opacity: 0;
      }

      to {
        top: 80px;
        opacity: 1;
      }
    }

    #noResults {
      text-align: center;
      padding: 40px;
      font-weight: bold;
      color: var(--primary-red);
    }
    .badge{
      display: table;
    }