
        /* All existing CSS from dog-products.html remains the same */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #27ae60;      /* Natural green */
            --secondary: #2c3e50;    /* Keep dark blue */
            --accent: #e67e22;       /* Warm accent */
            --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 {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        /* Add to existing .logo styles */
        .logo img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }

        .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 Dog Training Tools */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1568393691622-c7ba131d63b4?q=80&w=1031&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-subtitle {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .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;
            border: 2px solid var(--pet-primary);
            color: var(--pet-primary);
            transition: all 0.3s;
        }
        
        .btn-outline:hover {
            background-color: var(--pet-primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* 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;  /* Hide scrollbar for IE and Edge */
            scrollbar-width: none;  /* Hide scrollbar for Firefox */
        }
        
        /* Hide scrollbar for Chrome, Safari and Opera */
        .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;
        }
        
        /* Dog Training Subcategory Badges */
        .badge-clickers {
            background-color: #9b59b6;
            color: white;
        }
        
        .badge-treat-pouches {
            background-color: #3498db;
            color: white;
        }
        
        .badge-training-leads {
            background-color: #2ecc71;
            color: white;
        }
        
        .badge-remote-trainers {
            background-color: #e67e22;
            color: white;
        }
        
        .badge-agility {
            background-color: #1abc9c;
            color: white;
        }
        
        .badge-training-dummies {
            background-color: #34495e;
            color: white;
        }
        
        .badge-whistles {
            background-color: #d35400;
            color: white;
        }
        
        .badge-training-books {
            background-color: #8e44ad;
            color: white;
        }
        
        .badge-target-sticks {
            background-color: #16a085;
            color: white;
        }
        
        .badge-behavior-aids {
            background-color: #7f8c8d;
            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 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 - Interactive */
        .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;
        }
        
        .btn-small {
            padding: 8px 15px;
            font-size: 0.85rem;
            width: 100%;
        }
        
        .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;
        }
        
        /* Loading State */
        .loading {
            text-align: center;
            padding: 2rem;
            color: #666;
        }
        
        /* No Results State */
        .no-results {
            text-align: center;
            padding: 3rem;
            grid-column: 1 / -1;
        }
        
        .no-results i {
            font-size: 3rem;
            color: #ddd;
            margin-bottom: 1rem;
        }
        
        /* Dog Training Blog Section */
        .dog-training-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: 600px;
        }
        
        .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);
        }
        
        .faq-resources ul {
            list-style: none;
            padding-left: 0;
        }
        
        .faq-resources li {
            margin-bottom: 8px;
        }
        
        .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;
        }
        
        .resource-link:hover {
            color: var(--pet-secondary);
            gap: 8px;
        }
        
        /* 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;
        }
        
        .resource-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--pet-primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .resource-link:hover {
            gap: 12px;
        }
        
        /* 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);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .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;
            }
            
            /* Tablet mobile menu */
            .mobile-menu {
                display: block;
            }
            
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a252f;
                padding: 1rem;
                box-shadow: var(--shadow);
                z-index: 100;
                gap: 1.2rem;
            }
            
            nav ul.show {
                display: flex;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .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;
            }
        }
        
        @media (max-width: 576px) {
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }
            
            .modal-content {
                padding: 20px;
            }
            
            .modal-product-info h2 {
                font-size: 1.5rem;
            }
            
            .hero {
                padding: 3rem 0;
            }
            
            .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;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }
