
    .page-789pet-com {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* Floating Buttons */
    .page-789pet-com__floating-buttons {
      position: fixed;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-789pet-com__floating-button {
      background-color: #e50000; /* Red */
      color: #fff;
      padding: 12px 20px;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      text-decoration: none;
      display: block;
      white-space: nowrap;
    }

    .page-789pet-com__floating-button:hover {
      background-color: #ff3333;
      transform: scale(1.05);
    }

    .page-789pet-com__floating-button--login {
      background-color: #007bff; /* Blue */
    }

    .page-789pet-com__floating-button--login:hover {
      background-color: #0056b3;
    }

    /* Hero Section */
    .page-789pet-com__hero-section {
      position: relative;
      width: 100%;
      height: 500px; /* Adjust height for mobile first */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 10px 20px;
      box-sizing: border-box;
    }

    .page-789pet-com__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6);
    }

    .page-789pet-com__hero-content {
      max-width: 900px;
      color: #fff;
      z-index: 1;
    }

    .page-789pet-com__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #ffd700; /* Gold */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789pet-com__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Section General Styles */
    .page-789pet-com__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #2a2a2a;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      text-align: center;
    }

    .page-789pet-com__section-title {
      font-size: 2.5em;
      color: #ffd700; /* Gold */
      margin-bottom: 30px;
      text-align: center;
      font-weight: bold;
    }

    .page-789pet-com__section-description {
      font-size: 1.1em;
      color: #ccc;
      max-width: 800px;
      margin: 0 auto 40px auto;
    }

    /* Product Grid */
    .page-789pet-com__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-items: center; /* Center grid items */
    }

    .page-789pet-com__product-card {
      background-color: #3a3a3a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 350px; /* Max width for cards */
      width: 100%;
      box-sizing: border-box;
    }

    .page-789pet-com__product-card:hover {
      transform: translateY(-5px);
    }

    .page-789pet-com__product-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }

    .page-789pet-com__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-789pet-com__product-info {
      padding: 20px;
    }

    .page-789pet-com__product-title {
      font-size: 1.6em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-789pet-com__product-description {
      font-size: 1em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-789pet-com__button {
      background-color: #e50000;
      color: #fff;
      padding: 10px 25px;
      border: none;
      border-radius: 20px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-789pet-com__button:hover {
      background-color: #ff3333;
    }

    /* Promotions & News List */
    .page-789pet-com__list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 800px;
    }

    .page-789pet-com__list-item {
      background-color: #3a3a3a;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-789pet-com__list-item-title {
      font-size: 1.4em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-789pet-com__list-item-date {
      font-size: 0.9em;
      color: #888;
      margin-bottom: 10px;
    }

    .page-789pet-com__list-item-description {
      font-size: 1em;
      color: #ccc;
    }

    /* Payment & Providers Grid */
    .page-789pet-com__partner-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
      justify-items: center;
    }

    .page-789pet-com__partner-item {
      background-color: #3a3a3a;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 120px;
      width: 100%;
      box-sizing: border-box;
    }

    .page-789pet-com__partner-item:hover {
      transform: translateY(-3px);
    }

    .page-789pet-com__partner-logo {
      max-width: 100%;
      max-height: 80px;
      height: auto;
      object-fit: contain;
      margin-bottom: 5px;
    }

    .page-789pet-com__partner-name {
      font-size: 1.1em;
      color: #fff;
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-789pet-com__faq-section {
      padding: 40px 20px;
      background-color: #2a2a2a;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      max-width: 900px;
      margin: 40px auto;
    }

    .page-789pet-com__faq-title {
      font-size: 2.5em;
      color: #ffd700;
      margin-bottom: 30px;
      text-align: center;
      font-weight: bold;
    }

    .page-789pet-com__faq-item {
      background-color: #3a3a3a;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-789pet-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #4a4a4a;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-789pet-com__faq-question:hover {
      background-color: #5a5a5a;
    }

    .page-789pet-com__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

    .page-789pet-com__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-789pet-com__faq-item.active .page-789pet-com__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar, or just rotate */
    }

    .page-789pet-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #3a3a3a;
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

    .page-789pet-com__faq-item.active .page-789pet-com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-789pet-com__hero-section {
        height: 400px;
        padding: 10px;
      }

      .page-789pet-com__hero-title {
        font-size: 2em;
      }

      .page-789pet-com__hero-subtitle {
        font-size: 1.2em;
      }

      .page-789pet-com__section-title {
        font-size: 2em;
      }

      .page-789pet-com__product-grid {
        grid-template-columns: 1fr;
      }

      .page-789pet-com__product-card {
        max-width: 100%;
      }

      .page-789pet-com__list-item,
      .page-789pet-com__partner-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-789pet-com__list {
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-789pet-com__partner-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        padding: 0 10px;
      }

      .page-789pet-com__floating-buttons {
        right: 10px;
        gap: 10px;
      }

      .page-789pet-com__floating-button {
        padding: 10px 15px;
        font-size: 14px;
      }

      .page-789pet-com__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-789pet-com__faq-answer {
        padding: 15px 15px !important;
      }

      .page-789pet-com__section, .page-789pet-com__faq-section {
        padding: 30px 15px;
        margin: 20px auto;
      }
    }

    @media (max-width: 480px) {
      .page-789pet-com__hero-title {
        font-size: 1.8em;
      }

      .page-789pet-com__hero-subtitle {
        font-size: 1em;
      }

      .page-789pet-com__section-title {
        font-size: 1.8em;
      }
    }
  