/* All CSS from bird-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;
}

/* Add to existing .logo styles */
.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 Toys */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1583337130417-3346a1be7dee?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  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;
  text-align: center;
  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;
  border: 2px solid var(--pet-primary);
  color: var(--pet-primary);
}

.btn-outline:hover {
  background-color: var(--pet-primary);
  color: white;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: none;
}

.cookie-consent p {
  margin-bottom: 10px;
}

.cookie-consent button {
  background: var(--pet-primary);
  color: white;
  border: none;
  padding: 8px 20px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-consent button:hover {
  background: var(--pet-secondary);
}

/* 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;
}

/* Pet Toy Subcategory Badges */
.badge-dog-toys {
  background-color: #27ae60;
  color: white;
}

.badge-cat-toys {
  background-color: #9b59b6;
  color: white;
}

.badge-bird-toys {
  background-color: #2ecc71;
  color: white;
}

.badge-small-animal-toys {
  background-color: #e67e22;
  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;
}

.top-product-price .price {
  font-weight: 700;
  color: var(--pet-primary);
  font-size: 1rem;
}

.top-product-price .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;
}

/* Categories Section */
.categories-section {
  padding: 4rem 0;
  background-color: white;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.category-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border: 1px solid #eee;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-img {
  height: 200px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.category-card:hover .category-img img {
  transform: scale(1.05);
}

.category-info {
  padding: 25px;
}

.category-info h3 {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.category-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.category-info li {
  position: relative;
  padding-left: 20px;
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.category-info li:before {
  content: "\f54e"; /* Paw icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--pet-primary);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.category-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--pet-primary);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.category-info a:hover {
  background-color: var(--pet-secondary);
  gap: 12px;
  transform: translateX(5px);
}

/* Blog Posts Section */
.blog-posts-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.blog-post-card:hover {
  transform: translateY(-5px);
}

.blog-post-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-post-card:hover .blog-post-img img {
  transform: scale(1.1);
}

.blog-post-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--pet-primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-post-info {
  padding: 25px;
}

.blog-post-info h3 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-post-excerpt {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.blog-post-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pet-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.blog-post-link:hover {
  gap: 12px;
  color: var(--pet-secondary);
}

/* 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 span {
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 500;
}

.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: 1000px;
}

.faq-answer p {
  margin-bottom: 15px;
  text-align: left;
}

.faq-answer ul {
  padding-left: 20px;
  margin-bottom: 15px;
  text-align: left;
}

.faq-answer li {
  margin-bottom: 8px;
}

/* FAQ Links Styles */
.faq-links {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.faq-links h4 {
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: 1rem;
}

.faq-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f8f9fa;
  color: var(--pet-primary);
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 1px solid #e9ecef;
}

.faq-link:hover {
  background-color: var(--pet-primary);
  color: white;
  border-color: var(--pet-primary);
}

/* Newsletter Styles */
.newsletter {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--pet-primary) 0%,
    var(--pet-secondary) 100%
  );
  color: white;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  padding: 15px 30px;
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form button:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

.newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.benefit i {
  color: var(--accent);
}

/* Partner Links Styles */
.partner-links {
  padding: 3rem 0;
  text-align: center;
}

.partner-links h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.partner-links p {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.partner-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: var(--secondary);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #eee;
}

.partner-link:hover {
  border-color: var(--pet-primary);
  color: var(--pet-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Disclaimer Styles */
.disclaimer {
  padding: 25px;
  background-color: #fff8e1;
  border-left: 4px solid #ffc107;
  border-radius: 5px;
  margin: 2rem 0;
}

.disclaimer h3 {
  color: #d35400;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.disclaimer p {
  color: #666;
  line-height: 1.6;
}

/* 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: 0.5rem;
}

.page-header h2 {
  font-size: 1.5rem;
  color: var(--pet-primary);
  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 - 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;
}

.product-price .price {
  font-weight: 700;
  color: var(--pet-primary);
  font-size: 1.1rem;
}

.product-price .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;
  flex-wrap: wrap;
}

.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 Toys Blog Section */
.pet-toys-blog {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.pet-toys-blog h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  text-align: center;
}

.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);
  text-align: left;
}

.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;
  text-align: left;
}

.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;
}

/* 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: left;
}

.modal-product-price {
  font-size: 1.5rem;
  color: var(--pet-primary);
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
}

.modal-product-price .original-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}

.modal-product-description {
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: left;
}

.modal-product-features {
  margin-bottom: 20px;
  text-align: left;
}

.modal-product-features ul {
  list-style-type: none;
  padding-left: 0;
}

.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: flex-start;
}

/* Manual Partner Links in Modal */
.manual-partner-links {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: left;
}

.manual-partner-links h4 {
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: 1.1rem;
  text-align: left;
}

.manual-links-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: flex-start;
}

.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: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
}

.scroll-to-top:hover {
  background-color: var(--pet-secondary);
  transform: translateY(-3px);
}

/* Mobile-specific FAQ Resource Styles */
@media (max-width: 768px) {
  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;
  }

  .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;
  }

  /* Categories Section Mobile */
  .categories-grid,
  .blog-posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .category-info ul {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .partner-links-container {
    flex-direction: column;
    align-items: center;
  }

  .partner-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .faq-link-list {
    flex-direction: column;
    gap: 10px;
  }

  .faq-link {
    justify-content: center;
  }
}

@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: 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;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .manual-links-container {
    flex-direction: column;
    align-items: stretch;
  }

  .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;
  }

  /* Small Mobile for New Sections */
  .categories-grid,
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .category-info h3 {
    font-size: 1.2rem;
  }

  .blog-post-img {
    height: 180px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
