/* ============================================================
   PAWTNERS.IN - Main Stylesheet
   Warm, Playful, Trustworthy Pet Marketplace Design
   ============================================================ */

:root {
  --primary: #FF6B35;
  --primary-dark: #e55a25;
  --secondary: #2C3E50;
  --accent: #F7DC6F;
  --accent2: #27AE60;
  --light-bg: #FFF8F5;
  --card-bg: #FFFFFF;
  --text: #2C3E50;
  --text-muted: #7F8C8D;
  --border: #E8D5C8;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(255,107,53,0.10);
  --shadow-hover: 0 8px 40px rgba(255,107,53,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #ffffff;
  line-height: 1.7;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
h1, h2, h3 { font-family: var(--font-head); }
img { max-width: 100%; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--secondary);
  color: #ccc;
  font-size: 0.82rem;
  padding: 6px 0;
}
.topbar a { color: #ccc; }
.topbar a:hover { color: var(--accent); }
.topbar-social a {
  color: #ccc;
  margin-left: 10px;
  transition: color var(--transition);
}
.topbar-social a:hover { color: var(--primary); }
/* Hide topbar on mobile - too cramped */
@media(max-width:991px) { .topbar { display: none !important; } }

/* ---- NAVBAR ---- */
.main-navbar {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
  transition: all var(--transition);
}
.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 2rem; }
.logo-text { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.logo-dot { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--secondary); }
.logo-sub { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: -4px; }
.navbar-nav .nav-link {
  font-weight: 700;
  color: var(--secondary) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all var(--transition);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: var(--light-bg);
}
.nav-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--secondary);
  font-size: 1rem;
  transition: all var(--transition);
}
.nav-icon-btn:hover { background: var(--primary); color: #fff; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-list {
  background: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 0.85rem;
}
.btn-list:hover { background: var(--primary-dark); }
.mega-menu { border: none; border-radius: var(--radius); box-shadow: var(--shadow-hover); padding: 12px 0; min-width: 220px; }
.mega-menu .dropdown-item { padding: 8px 20px; font-weight: 600; transition: all var(--transition); border-radius: 8px; margin: 0 4px; }
.mega-menu .dropdown-item:hover { background: var(--light-bg); color: var(--primary); }

/* Hover dropdown - no click needed */
@media(min-width:992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
  .navbar-nav .dropdown > .dropdown-toggle:active { pointer-events: none; }
}

/* Logo - white bg blends with navbar */
.navbar-brand img {
  height: 44px;
  width: auto;
  background: #ffffff !important;
  border-radius: 6px;
  padding: 2px 6px;
}

/* ---- HERO SECTION ---- */
.hero-section {
  background: linear-gradient(135deg, #FFF8F5 0%, #FFE4D6 50%, #FFF0E8 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,107,53,0.07);
}
.hero-section::after {
  content: '🐾';
  position: absolute;
  font-size: 180px;
  opacity: 0.04;
  right: 5%;
  top: 10%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.12);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; color: var(--secondary); }
.hero-title span { color: var(--primary); }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 550px; margin-bottom: 30px; }
.hero-search-box {
  background: #fff;
  border-radius: 60px;
  padding: 8px 8px 8px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 40px rgba(255,107,53,0.15);
  max-width: 600px;
  gap: 8px;
}
.hero-search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text);
}
.hero-search-box select {
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  background: var(--light-bg);
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
}
.hero-search-box .btn-search {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.hero-search-box .btn-search:hover { background: var(--primary-dark); }
.hero-stats { display: flex; gap: 40px; margin-top: 30px; }
.hero-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--primary); display: block; }
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.hero-image-wrap { position: relative; }
.hero-image-wrap img { border-radius: 30px; box-shadow: 0 20px 60px rgba(255,107,53,0.2); }
.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatCard 3s ease-in-out infinite;
}
.hero-floating-card.card-1 { bottom: 40px; left: -20px; }
.hero-floating-card.card-2 { top: 40px; right: -20px; animation-delay: 1.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ---- SERVICE CATEGORY CARDS ---- */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media(max-width:991px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:575px) { .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* Swiper category slider */
.categorySwiper { width: 100%; overflow: hidden; }
.categorySwiper .swiper-slide { width: auto; height: auto; }
.categorySwiper .category-card { margin: 0; }
.cat-swiper-prev, .cat-swiper-next { transition: all 0.2s; }
.cat-swiper-prev:hover, .cat-swiper-next:hover { transform: translateY(-50%) scale(1.1) !important; }

.category-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--light-bg), #fff);
  z-index: 0;
  transition: opacity var(--transition);
}
.category-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.category-card:hover::before { opacity: 0; }
.category-card > * { position: relative; z-index: 1; }
.category-icon {
  width: 70px; height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), #ff8c5a);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: #fff;
  transition: all var(--transition);
}
.category-card:hover .category-icon { transform: scale(1.1) rotate(-5deg); }
.category-name { font-weight: 800; font-size: 1rem; color: var(--secondary); margin-bottom: 4px; }
.category-count { font-size: 0.82rem; color: var(--text-muted); }

/* ---- LISTING CARDS ---- */
.listing-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all var(--transition);
  height: 100%;
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.listing-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.listing-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.listing-card:hover .listing-card-img img { transform: scale(1.05); }
.listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.listing-badge.featured { background: var(--accent2); }
.listing-card-body { padding: 18px; }
.listing-category { font-size: 0.78rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.listing-name { font-weight: 800; font-size: 1.1rem; color: var(--secondary); margin-bottom: 6px; }
.listing-location { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
.listing-location i { color: var(--primary); }
.listing-rating { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; }
.listing-price { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }
.listing-price strong { color: var(--primary); }

/* ---- PRODUCT CARDS ---- */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--light-bg);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #E74C3C;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
}
.product-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
  border: none;
}
.product-wishlist:hover { background: #FFE8E0; color: var(--primary); }
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-weight: 800; font-size: 0.95rem; color: var(--secondary); margin-bottom: 8px; flex: 1; }
.product-price { display: flex; align-items: center; gap: 8px; }
.product-price .current { font-size: 1.2rem; font-weight: 900; color: var(--primary); }
.product-price .original { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.product-card-footer { padding: 0 16px 16px; }
.btn-add-cart {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-add-cart:hover { background: var(--primary-dark); transform: scale(1.02); }

/* ---- PET CARDS ---- */
.pet-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.pet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.pet-card-img { height: 220px; overflow: hidden; position: relative; }
.pet-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pet-card:hover .pet-card-img img { transform: scale(1.05); }
.pet-status {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}
.pet-card-body { padding: 18px; }
.pet-name { font-weight: 800; font-size: 1.1rem; color: var(--secondary); }
.pet-meta { display: flex; gap: 12px; flex-wrap: wrap; margin: 8px 0; }
.pet-tag {
  background: var(--light-bg);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}
.pet-location { font-size: 0.85rem; color: var(--text-muted); }
.pet-fee { font-size: 1rem; font-weight: 800; color: var(--primary); }

/* ---- HOW IT WORKS ---- */
.how-it-works { background: #f8f4ff; padding: 80px 0; }

/* Step Cards - each a different bold color */
.step-card {
  text-align: center;
  padding: 36px 24px 32px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.step-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

/* Colorful backgrounds */
.step-card-1 { background: linear-gradient(145deg, #FF6B6B, #FF8E53); color: #fff; }
.step-card-2 { background: linear-gradient(145deg, #4776E6, #8E54E9); color: #fff; }
.step-card-3 { background: linear-gradient(145deg, #11998e, #38ef7d); color: #fff; }
.step-card-4 { background: linear-gradient(145deg, #F7971E, #FFD200); color: #fff; }

/* Decorative circle in corner */
.step-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

/* Emoji icon */
.step-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}
.step-card:hover .step-emoji { transform: scale(1.2) rotate(-5deg); }

/* Number badge */
.step-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}

.step-title {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

/* Arrow between steps */
.step-arrow {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
  z-index: 10;
  font-weight: 900;
}
@media(max-width: 991px) { .step-arrow { display: none; } }

/* ---- BLOG CARDS ---- */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; }
.blog-cat { font-size: 0.78rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.blog-title { font-weight: 800; font-size: 1.05rem; color: var(--secondary); margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); }
.blog-read-more { color: var(--primary); font-weight: 700; font-size: 0.85rem; }

/* ---- REVIEWS ---- */
.reviews-section { background: var(--secondary); padding: 80px 0; position: relative; overflow: hidden; }
.reviews-section::before { content: '"'; position: absolute; font-size: 300px; opacity: 0.03; color: #fff; top: -50px; left: 20px; font-family: var(--font-head); }
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.review-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}
.reviewer-name { color: #fff; font-weight: 800; font-size: 0.95rem; }
.reviewer-designation { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ---- FAQ ---- */
.faq-section { padding: 80px 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; transition: all var(--transition); }
.faq-item.active { border-color: var(--primary); box-shadow: 0 4px 20px rgba(255,107,53,0.1); }
.faq-question {
  padding: 18px 24px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-item.active .faq-question { color: var(--primary); }
.faq-toggle { font-size: 1.2rem; transition: transform var(--transition); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 18px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; display: none; }
.faq-item.active .faq-answer { display: block; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before { content: '🐾'; position: absolute; font-size: 200px; opacity: 0.06; right: 5%; top: -20px; }
.cta-section .section-title { color: #fff; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.85); }
.btn-cta-white {
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 800;
  font-size: 1rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); color: var(--primary-dark); }
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 800;
  font-size: 1rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

/* ---- BUTTONS ---- */
.btn-primary { background: var(--primary); border-color: var(--primary); font-weight: 700; border-radius: 50px; padding: 10px 26px; }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline-primary { color: var(--primary); border-color: var(--primary); font-weight: 700; border-radius: 50px; padding: 10px 26px; }
.btn-outline-primary:hover { background: var(--primary); }

/* ---- SECTIONS ---- */
.section-pad { padding: 80px 0; }
.bg-light-warm { background: var(--light-bg); }

/* ---- FOOTER ---- */
.site-footer { background: #1a252f; }
.footer-top { padding: 60px 0 40px; }
.footer-brand { margin-bottom: 20px; }
.footer-logo { font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 14px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--primary); color: #fff; }
.footer-title { color: #fff; font-weight: 800; font-size: 0.95rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-links a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--primary); }

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 45px; height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); }

/* ---- FORMS ---- */
.form-control, .form-select {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}
.form-label { font-weight: 700; color: var(--secondary); font-size: 0.9rem; }

/* ---- CART / CHECKOUT ---- */
.cart-table { background: #fff; border-radius: var(--radius); overflow: hidden; }
.cart-item-img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; }
.qty-control { display: flex; align-items: center; gap: 0; border: 2px solid var(--border); border-radius: 50px; overflow: hidden; }
.qty-control button { background: none; border: none; padding: 6px 14px; cursor: pointer; font-size: 1rem; font-weight: 700; color: var(--secondary); transition: background var(--transition); }
.qty-control button:hover { background: var(--light-bg); }
.qty-control input { width: 50px; border: none; text-align: center; font-weight: 700; font-size: 0.9rem; outline: none; }

/* ---- ORDER SUMMARY ---- */
.order-summary {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
}
.order-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.9rem; }
.order-row.total { border-top: 2px solid var(--border); margin-top: 8px; padding-top: 16px; font-weight: 900; font-size: 1.15rem; color: var(--primary); }

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, #3d5a75 100%);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-header::after { content: '🐾'; position: absolute; font-size: 150px; opacity: 0.05; right: 5%; bottom: -20px; }
.page-header h1 { color: #fff; font-size: 2.4rem; font-weight: 800; }
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item.active { color: var(--primary); }

/* ---- ALERTS ---- */
.alert { border: none; border-radius: var(--radius-sm); font-weight: 600; }
.alert-success { background: #d4edda; color: #155724; }
.alert-danger { background: #f8d7da; color: #721c24; }
.alert-warning { background: #fff3cd; color: #856404; }

/* ---- BADGES ---- */
.badge-primary { background: var(--primary); }
.status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-approved { background: #d4edda; color: #155724; }
.status-rejected { background: #f8d7da; color: #721c24; }
.status-available { background: #d4edda; color: #155724; }
.status-adopted { background: #e2e3e5; color: #383d41; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ---- RESPONSIVE ---- */
@media(max-width: 767px) {
  .hero-stats { gap: 20px; }
  .hero-search-box { flex-wrap: wrap; border-radius: var(--radius); padding: 12px; }
  .hero-search-box select { width: 100%; }
  .hero-search-box .btn-search { width: 100%; justify-content: center; }
  .section-pad { padding: 50px 0; }
}
