/* All existing CSS from the first blog post remains the same */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      }

      :root {
        --primary: #27ae60;
        --secondary: #2c3e50;
        --accent: #e67e22;
        --pet-primary: #27ae60;
        --pet-secondary: #219653;
        --deal-color: #e74c3c;
        --bestseller-color: #f39c12;
        --light: #ecf0f1;
        --dark: #171a1d;
        --success: #27ae60;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      body {
        background-color: #f9f9f9;
        color: #333;
        line-height: 1.6;
        overflow-x: hidden;
        scroll-behavior: smooth;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      /* Header Styles */
      header {
        background: #1a252f;
        color: white;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        position: sticky;
        top: 0;
        z-index: 1000;
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        border-radius: 5px;
        transition: transform 0.3s ease;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: white;
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .logo:hover {
        transform: scale(1.05);
      }

      .logo:hover i {
        transform: rotate(15deg);
        color: var(--primary);
      }

      .logo i {
        font-size: 2rem;
        color: white;
        transition: all 0.3s ease;
      }

      .logo h1 {
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
      }

      .logo span {
        color: var(--primary);
      }

      nav ul {
        display: flex;
        list-style: none;
        gap: 2rem;
      }

      nav a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
        display: flex;
        align-items: center;
        gap: 5px;
      }

      nav a:hover,
      nav a.active {
        color: var(--primary);
      }

      .mobile-menu {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
      }

      /* Hero Section for Pet Food */
      .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
          url("https://images.unsplash.com/photo-1608408891486-f5cade977d19?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
        background-size: cover;
        background-position: center;
        color: white;
        padding: 5rem 0;
        text-align: center;
      }

      .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-align: center;
      }

      .hero h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
      }

      .hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 2rem;
      }

      .btn {
        display: inline-block;
        background-color: var(--pet-primary);
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        text-align: center;
      }

      .btn:hover {
        background-color: var(--pet-secondary);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }

      .btn-outline {
        background-color: transparent;
        color: var(--pet-primary);
        border: 2px solid var(--pet-primary);
      }

      .btn-outline:hover {
        background-color: var(--pet-primary);
        color: white;
      }

      /* Top Products Section - Single Line Slider */
      .top-products {
        padding: 3rem 0;
        background-color: white;
        position: relative;
      }

      .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 10px;
        border-bottom: 2px solid #eee;
      }

      .section-title {
        font-size: 1.5rem;
        color: var(--secondary);
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .section-title i {
        color: var(--pet-primary);
      }

      .view-all {
        color: var(--pet-primary);
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s;
      }

      .view-all:hover {
        gap: 10px;
      }

      .top-products-slider {
        position: relative;
        overflow: hidden;
        padding: 0 50px;
      }

      .top-products-track {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding: 10px 5px 20px;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
      }

      .top-products-track::-webkit-scrollbar {
        display: none;
      }

      .top-product-card {
        flex: 0 0 280px;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: transform 0.3s;
        position: relative;
      }

      .top-product-card:hover {
        transform: translateY(-5px);
      }

      .product-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 2;
      }

      .badge-deal {
        background-color: var(--deal-color);
        color: white;
      }

      .badge-bestseller {
        background-color: var(--bestseller-color);
        color: white;
      }

      .badge-sale {
        background-color: var(--pet-primary);
        color: white;
      }

      .badge-dog-food {
        background-color: #9b59b6;
        color: white;
      }

      .badge-cat-food {
        background-color: #3498db;
        color: white;
      }

      .badge-other-food {
        background-color: #2ecc71;
        color: white;
      }

      .top-product-img {
        height: 180px;
        overflow: hidden;
        position: relative;
      }

      .top-product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }

      .top-product-card:hover .top-product-img img {
        transform: scale(1.1);
      }

      .top-product-info {
        padding: 15px;
      }

      .top-product-info h3 {
        font-size: 1rem;
        margin-bottom: 8px;
        min-height: 40px;
      }

      .top-product-info p {
        color: #666;
        margin-bottom: 10px;
        font-size: 0.8rem;
        min-height: 32px;
      }

      .top-product-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
      }

      .price {
        font-weight: 700;
        color: var(--pet-primary);
        font-size: 1rem;
      }

      .original-price {
        text-decoration: line-through;
        color: #999;
        font-size: 0.8rem;
        margin-left: 5px;
      }

      .rating {
        color: #f1c40f;
        display: flex;
        justify-content: center;
        font-size: 0.8rem;
      }

      .top-product-actions {
        display: flex;
        gap: 10px;
        justify-content: center;
      }

      .btn-small {
        padding: 6px 12px;
        font-size: 0.8rem;
        width: 100%;
      }

      .slider-controls {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
      }

      .slider-btn {
        background-color: #eee;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
      }

      .slider-btn.prev-btn {
        left: 0;
      }

      .slider-btn.next-btn {
        right: 0;
      }

      .slider-btn:hover {
        background-color: var(--pet-primary);
        color: white;
      }

      /* Product Page Specific Styles */
      .product-page {
        padding: 3rem 0;
      }

      .page-header {
        margin-bottom: 2rem;
        text-align: center;
      }

      .page-header h1 {
        font-size: 2.5rem;
        color: var(--secondary);
        margin-bottom: 1rem;
      }

      .page-header h2 {
        font-size: 1.8rem;
        color: #555;
        margin-bottom: 1rem;
        font-weight: 400;
      }

      .page-header p {
        font-size: 1.1rem;
        color: #666;
        max-width: 800px;
        margin: 0 auto;
      }

      .product-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 30px;
      }

      /* Sidebar Filter Styles */
      .sidebar {
        background: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: var(--shadow);
        height: fit-content;
        position: sticky;
        top: 100px;
      }

      .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
      }

      .filter-header h2 {
        font-size: 1.3rem;
        color: var(--secondary);
      }

      .reset-filters {
        background: none;
        border: none;
        color: var(--pet-primary);
        font-size: 0.9rem;
        cursor: pointer;
        text-decoration: underline;
        transition: all 0.3s;
      }

      .reset-filters:hover {
        color: var(--pet-secondary);
      }

      .filter-group {
        margin-bottom: 25px;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
      }

      .filter-group-header {
        padding: 15px;
        background: #f9f9f9;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s;
      }

      .filter-group-header:hover {
        background: #f0f0f0;
      }

      .filter-group-header h3 {
        font-size: 1.1rem;
        color: var(--secondary);
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
      }

      .filter-group-header i {
        color: var(--pet-primary);
        transition: transform 0.3s;
      }

      .filter-group-header.active i {
        transform: rotate(180deg);
      }

      .filter-options {
        list-style: none;
        padding: 15px;
        transition: all 0.3s;
        overflow: visible;
        max-height: none;
      }

      .filter-group.collapsed .filter-options {
        display: none;
      }

      .filter-options li {
        margin-bottom: 10px;
      }

      .filter-option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-size: 0.95rem;
        padding: 8px 12px;
        border-radius: 5px;
        transition: all 0.3s;
      }

      .filter-option:hover {
        background-color: #f0f0f0;
      }

      .filter-option.active {
        background-color: var(--pet-primary);
        color: white;
      }

      .filter-option .count {
        color: #999;
        font-size: 0.8rem;
      }

      .filter-option.active .count {
        color: rgba(255, 255, 255, 0.8);
      }

      .price-range {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
      }

      .price-inputs {
        display: flex;
        gap: 10px;
      }

      .price-inputs input {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
      }

      .apply-filters {
        width: 100%;
        margin-top: 10px;
      }

      /* Product Grid Styles */
      .product-grid-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
      }

      .sort-options {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .sort-options select {
        padding: 8px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background: white;
      }

      .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
      }

      .product-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: transform 0.3s;
        position: relative;
      }

      .product-card:hover {
        transform: translateY(-5px);
      }

      .product-img {
        height: 200px;
        overflow: hidden;
        position: relative;
      }

      .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }

      .product-card:hover .product-img img {
        transform: scale(1.1);
      }

      .product-info {
        padding: 20px;
      }

      .product-info h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        min-height: 40px;
      }

      .product-info p {
        color: #666;
        margin-bottom: 15px;
        font-size: 0.9rem;
        min-height: 40px;
      }

      .product-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
      }

      .price {
        font-weight: 700;
        color: var(--pet-primary);
        font-size: 1.1rem;
      }

      .original-price {
        text-decoration: line-through;
        color: #999;
        font-size: 0.9rem;
        margin-left: 5px;
      }

      .rating {
        color: #f1c40f;
        display: flex;
        font-size: 0.8rem;
      }

      .product-actions {
        display: flex;
        gap: 10px;
      }

      .pagination {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        gap: 10px;
      }

      .pagination a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        background: white;
        color: var(--secondary);
        text-decoration: none;
        font-weight: 600;
        box-shadow: var(--shadow);
        transition: all 0.3s;
      }

      .pagination a.active,
      .pagination a:hover {
        background: var(--pet-primary);
        color: white;
      }

      /* Pet Nutrition Blog Section */
      .pet-nutrition-blog {
        padding: 4rem 0;
        background-color: #f8f9fa;
      }

      .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 25px;
        margin-bottom: 3rem;
      }

      .blog-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: transform 0.3s;
      }

      .blog-card:hover {
        transform: translateY(-5px);
      }

      .blog-img {
        height: 200px;
        overflow: hidden;
        position: relative;
      }

      .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }

      .blog-card:hover .blog-img img {
        transform: scale(1.1);
      }

      .blog-info {
        padding: 20px;
      }

      .blog-info h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--secondary);
      }

      .blog-meta {
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 15px;
      }

      .blog-excerpt {
        margin-bottom: 15px;
        line-height: 1.5;
      }

      .blog-info a {
        color: var(--pet-primary);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .blog-info a:hover {
        gap: 10px;
      }
  
      a {
            color: #27ae60;
            text-decoration: none;
            transition: color 0.3s;
            }
            
      /* FAQ Section */
      .faq-section {
        padding: 4rem 0;
        background-color: white;
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-item {
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
      }

      .faq-question {
        padding: 20px;
        background: #f9f9f9;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s;
      }

      .faq-question:hover {
        background: #f0f0f0;
      }

      .faq-question h3 {
        font-size: 1.1rem;
        margin: 0;
        color: var(--secondary);
      }

      .faq-question i {
        color: var(--pet-primary);
        transition: transform 0.3s;
      }

      .faq-item.active .faq-question i {
        transform: rotate(180deg);
      }

      .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s;
      }

      .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 650px;
      }

      .faq-answer p {
        margin-bottom: 15px;
      }

      .faq-answer ul {
        padding-left: 20px;
        margin-bottom: 15px;
      }

      .faq-answer li {
        margin-bottom: 8px;
      }

      /* FAQ Resources */
      .faq-resources {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px dashed #ddd;
      }

      .faq-resources p {
        margin-bottom: 10px;
        font-weight: 600;
        color: var(--secondary);
        text-align: left;
      }

      .faq-resources ul {
        list-style: none;
        padding-left: 0;
      }

      .faq-resources li {
        margin-bottom: 8px;
        text-align: left;
      }

      .resource-link {
        color: var(--pet-primary);
        text-decoration: none;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 0.9rem;
        word-break: break-word;
        padding: 8px 12px;
        border-radius: 5px;
        border: 1px solid transparent;
        width: 100%;
        justify-content: flex-start;
      }

      .resource-link:hover {
        color: var(--pet-secondary);
        gap: 8px;
        background-color: #f9f9f9;
        border-color: #eee;
      }

      /* External Resources Section */
      .external-resources {
        padding: 4rem 0;
        background-color: #f8f9fa;
      }

      .resources-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
      }

      .resource-card {
        background: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: var(--shadow);
        transition: transform 0.3s;
        text-align: center;
      }

      .resource-card:hover {
        transform: translateY(-5px);
      }

      .resource-icon {
        font-size: 2.5rem;
        color: var(--pet-primary);
        margin-bottom: 15px;
      }

      .resource-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--secondary);
      }

      .resource-card p {
        margin-bottom: 20px;
        color: #666;
      }

      /* Footer */
      footer {
        background-color: var(--dark);
        color: white;
        padding: 3rem 0 1rem;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-bottom: 2rem;
      }

      .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 10px;
        text-align: center;
      }

      .footer-column h3:after {
        content: "";
        position: absolute;
        width: 40px;
        height: 2px;
        background-color: var(--pet-primary);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
      }

      .footer-column ul {
        list-style: none;
      }

      .footer-column ul li {
        margin-bottom: 10px;
        text-align: center;
      }

      .footer-column a {
        color: #bbb;
        text-decoration: none;
        transition: color 0.3s;
      }

      .footer-column a:hover {
        color: var(--pet-primary);
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
        justify-content: center;
      }

      .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s;
      }

      .social-links a:hover {
        background-color: white;
        transform: translateY(-5px);
      }

      .copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #bbb;
        font-size: 0.9rem;
      }

      /* Modal Styles */
      .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        justify-content: center;
        align-items: center;
        padding: 20px;
      }

      .modal-content {
        background-color: white;
        border-radius: 10px;
        width: 100%;
        max-width: 800px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        padding: 30px;
      }

      .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        cursor: pointer;
        color: #999;
        transition: color 0.3s;
        z-index: 10;
      }

      .close-modal:hover {
        color: var(--pet-primary);
      }

      .modal-product {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }

      .modal-product-img {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
      }

      .modal-product-img img {
        width: 100%;
        height: auto;
        display: block;
      }

      .modal-product-info h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: center;
      }

      .modal-product-price {
        font-size: 1.5rem;
        color: var(--pet-primary);
        font-weight: 700;
        margin-bottom: 15px;
        text-align: center;
      }

      .modal-product-description {
        margin-bottom: 20px;
        line-height: 1.7;
      }

      .modal-product-features {
        margin-bottom: 20px;
      }

      .modal-product-features ul {
        list-style-type: none;
      }

      .modal-product-features li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 25px;
      }

      .modal-product-features li:before {
        content: "\f00c";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: var(--success);
        position: absolute;
        left: 0;
      }

      .modal-actions {
        display: flex;
        gap: 15px;
        margin-top: 25px;
        justify-content: center;
      }

      /* Manual Partner Links in Modal */
      .manual-partner-links {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
      }

      .manual-partner-links h4 {
        margin-bottom: 15px;
        color: var(--secondary);
        font-size: 1.1rem;
        text-align: center;
      }

      .manual-links-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
        justify-content: center;
      }

      .manual-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background-color: var(--pet-primary);
        color: white;
        padding: 10px 15px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s;
        border: 1px solid var(--pet-primary);
      }

      .manual-link:hover {
        background-color: white;
        color: var(--pet-primary);
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      }

      /* Scroll to Top Button */
      .scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: var(--pet-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      }

      .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
      }

      .scroll-to-top:hover {
        background-color: var(--pet-secondary);
        transform: translateY(-3px);
      }

      /* Loading States */
      .loading {
        opacity: 0.6;
        pointer-events: none;
      }

      .loading-spinner {
        display: none;
        text-align: center;
        padding: 2rem;
      }

      .loading-spinner.active {
        display: block;
      }

      /* Responsive Design - Mobile and Tablet */
      @media (max-width: 992px) {
        .product-layout {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        
        .sidebar {
          position: static;
          margin-bottom: 30px;
        }
        
        .top-products-slider {
          padding: 0 40px;
        }
        
        .blog-grid {
          grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
      }

      @media (max-width: 768px) {
        nav ul {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background: #1a252f; /* Updated mobile nav background */
          padding: 1rem;
          box-shadow: var(--shadow);
          z-index: 100;
          gap: 1.2rem;
        }

        nav ul.show {
          display: flex;
        }

        .mobile-menu {
          display: block;
        }

        .hero h1 {
          font-size: 2rem;
        }
        
        .hero h2 {
          font-size: 1.5rem;
        }

        .hero p {
          font-size: 1rem;
        }

        .product-grid-header {
          flex-direction: column;
          gap: 15px;
          align-items: flex-start;
        }

        .product-grid {
          grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }

        .modal-actions {
          flex-direction: column;
        }

        .blog-grid,
        .resources-grid {
          grid-template-columns: 1fr;
        }

        .top-products-slider {
          padding: 0 30px;
        }

        .slider-btn {
          width: 35px;
          height: 35px;
        }

        .scroll-to-top {
          bottom: 20px;
          right: 20px;
          width: 45px;
          height: 45px;
        }

        /* Mobile FAQ Resources */
        .faq-resources {
          margin-top: 15px;
          padding-top: 10px;
        }

        .faq-resources p {
          font-size: 1rem;
          text-align: center;
        }

        .faq-resources ul {
          display: flex;
          flex-direction: column;
          gap: 8px;
        }

        .faq-resources li {
          margin-bottom: 0;
        }

        .resource-link {
          display: flex;
          width: 100%;
          padding: 10px 15px;
          font-size: 0.85rem;
          background-color: #f8f9fa;
          border: 1px solid #e9ecef;
          border-radius: 8px;
          justify-content: flex-start;
          text-align: left;
        }

        .resource-link i {
          min-width: 16px;
          text-align: center;
        }

        .resource-link span {
          flex: 1;
        }
      }

      @media (max-width: 576px) {
        .product-layout {
          grid-template-columns: 1fr;
        }

        .sidebar {
          position: static;
        }

        .modal-product {
          grid-template-columns: 1fr;
        }

        .blog-grid,
        .resources-grid {
          grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }

        .top-products-slider {
          padding: 0 40px;
        }

        .product-grid {
          grid-template-columns: 1fr;
        }

        .modal-content {
          padding: 20px;
        }

        .modal-product-info h2 {
          font-size: 1.5rem;
        }

        .hero {
          padding: 3rem 0;
        }
        
        .hero h1 {
          font-size: 1.8rem;
        }
        
        .hero h2 {
          font-size: 1.3rem;
        }

        .footer-content {
          grid-template-columns: 1fr;
        }

        .manual-links-container {
          flex-direction: column;
          align-items: center;
        }

        .manual-link {
          width: 100%;
          justify-content: center;
        }

        .top-products-slider {
          padding: 0 20px;
        }

        .slider-btn {
          width: 30px;
          height: 30px;
        }

        .scroll-to-top {
          bottom: 15px;
          right: 15px;
          width: 40px;
          height: 40px;
        }

        /* Small Mobile FAQ Resources */
        .faq-resources p {
          font-size: 0.95rem;
        }

        .resource-link {
          padding: 8px 12px;
          font-size: 0.8rem;
        }

        .faq-answer {
          padding: 0 15px;
        }

        .faq-item.active .faq-answer {
          padding: 15px;
        }
      }
      
      @media (max-width: 375px) {
        .logo h1 {
          font-size: 1.2rem;
        }
        
        .hero h1 {
          font-size: 1.6rem;
        }
        
        .hero h2 {
          font-size: 1.2rem;
        }
        
        .section-title {
          font-size: 1.3rem;
        }
        
        .page-header h1 {
          font-size: 2rem;
        }
        
        .page-header h2 {
          font-size: 1.5rem;
        }
      }