/**
 * BlueRidge Huskies - Main Stylesheet
 */

:root {
    --primary: #1e3a5f;
    --primary-light: #3d7ea6;
    --primary-dark: #0d1b2a;
    --accent: #e8a838;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --font: 'Outfit', sans-serif;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 16px;
}

[data-theme="dark"] {
    --primary: #3d7ea6;
    --primary-light: #60a5fa;
    --primary-dark: #1e293b;
    --gray-50: #1e293b;
    --gray-100: #334155;
    --gray-200: #475569;
    --gray-300: #64748b;
    --gray-400: #94a3b8;
    --gray-500: #cbd5e1;
    --gray-600: #e2e8f0;
    --gray-700: #f1f5f9;
    --gray-800: #f8fafc;
    --gray-900: #ffffff;
    --white: #0f172a;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

a {
    color: var(--primary);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--gray-900);
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 900px;
}

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-link {
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-link:hover {
    color: var(--white);
}

.business-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
}

.social-link {
    color: var(--gray-400);
}

.social-link:hover {
    color: var(--accent);
}


.theme-toggle {
    background: none;
    border: none;
    color: var(--gray-300);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--white);
}

.theme-toggle .icon-moon {
    display: block;
}

.theme-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    color: var(--gray-700);
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-menu .nav-cta {
    background: var(--primary);
    color: var(--white) !important;
}

.nav-menu .nav-cta:hover {
    background: var(--primary-light);
}

.has-dropdown {
    position: relative;
}

.dropdown-trigger::after {
    content: '▾';
    margin-left: 0.25rem;
    font-size: 0.75rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Flash */
.flash-message {
    padding: 1rem;
    text-align: center;
}

.flash-success {
    background: #dcfce7;
    color: #166534;
}

.flash-error {
    background: #fee2e2;
    color: #991b1b;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero-bg.jpg') center 25%/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(30, 58, 95, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Puppy Cards */
.puppies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.puppy-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.2s;
}

.puppy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.puppy-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.puppy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.puppy-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-available {
    background: var(--success);
    color: var(--white);
}

.badge-reserved {
    background: var(--warning);
    color: var(--white);
}

.badge-sold {
    background: var(--gray-400);
    color: var(--white);
}

.puppy-featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.puppy-info {
    padding: 1.5rem;
}

.puppy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.puppy-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.puppy-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.puppy-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.puppy-colors {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.puppy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tag-lg {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.health-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--success);
}

/* Pet Detail */
.pet-detail {
    padding: 3rem 0;
}

.pet-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    border: 3px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--primary);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.pet-name {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.pet-tagline {
    color: var(--gray-500);
    font-size: 1.125rem;
}

.pet-price {
    text-align: right;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.price-note {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.pet-quick-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.fact {
    text-align: center;
}

.fact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.fact-value {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
}

.pet-temperament,
.pet-description,
.pet-parents {
    margin-bottom: 1.5rem;
}

.pet-temperament h3,
.pet-description h3,
.pet-parents h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.temperament-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pet-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius);
}

.status-reserved {
    background: #fef3c7;
    color: #92400e;
}

.status-sold {
    background: #dcfce7;
    color: #166534;
}

.pet-details-tabs {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: var(--radius) var(--radius) 0 0;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--primary);
    background: var(--white);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.health-item {
    display: flex;
    gap: 1rem;
}

.health-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.health-icon-success {
    background: #dcfce7;
    color: var(--success);
}

.included-list {
    display: grid;
    gap: 0.75rem;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.included-list svg {
    color: var(--success);
    flex-shrink: 0;
}

.guarantee-content ul {
    margin: 1rem 0 1rem 1.5rem;
    list-style: disc;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    position: relative;
}

.page-header-compact {
    padding: 3rem 0 2rem;
}

.page-header-image {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    background-image: none !important;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.9) 0%, rgba(30, 58, 95, 0.6) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--gray-300);
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--gray-400);
}

.breadcrumb span {
    color: var(--gray-500);
    margin: 0 0.5rem;
}

/* Stats */
.section-stats {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0;
}

.section-stats-overlap {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
}

/* About */
.section-about-preview {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.feature-list {
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-list svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-content {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-pet {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--gray-500);
}

/* CTA Banner */
.section-cta-banner {
    background: var(--gray-100);
    padding: 3rem 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-content h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--gray-300);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Filter */
.filter-section {
    padding: 2rem 0;
    background: var(--gray-50);
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: var(--gray-700);
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    color: var(--gray-600);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Info Cards */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.info-card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* FAQ */
.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.faq-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.faq-nav-link {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    color: var(--gray-700);
}

.faq-nav-link:hover {
    background: var(--primary);
    color: var(--white);
}

.faq-count {
    background: var(--white);
    color: var(--gray-600);
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
}

.faq-cta {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.faq-category {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.faq-category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    color: var(--gray-800);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    transition: transform 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--gray-600);
}

/* Reviews */
.reviews-stats {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stats-rating {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.rating-stars {
    color: var(--accent);
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.rating-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.stats-summary {
    display: flex;
    gap: 3rem;
}

.summary-item {
    text-align: center;
}

.summary-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.summary-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 500;
}

.review-rating {
    color: var(--accent);
    margin-bottom: 1rem;
}

.review-content {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.review-pet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-social {
    margin-top: 2rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    color: var(--success);
    margin-bottom: 1rem;
}

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 0.25rem;
}

/* Checkout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.summary-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
}

.summary-pet {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.summary-pet img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.summary-highlight {
    font-weight: 600;
    font-size: 1.125rem;
    border-top: 2px solid var(--gray-200);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.summary-note {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: #92400e;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.payment-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--gray-50);
}

.payment-option input[type="radio"] {
    margin-right: 1rem;
}

.payment-name {
    font-weight: 600;
}

.payment-network {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-left: 0.5rem;
}

.payment-address {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    display: none;
}

.payment-option:has(input:checked) .payment-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-address code {
    background: var(--gray-100);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    flex: 1;
    word-break: break-all;
}

.btn-copy {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.5rem;
    border-radius: var(--radius);
    cursor: pointer;
}

/* Confirmation */
.section-confirmation {
    padding: 5rem 0;
}

.confirmation-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-icon {
    width: 120px;
    height: 120px;
    background: #dcfce7;
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.confirmation-message {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.order-details {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.order-id {
    font-weight: 600;
}

.order-date {
    color: var(--gray-500);
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
}

.info-row .label {
    color: var(--gray-500);
}

.info-row .value {
    font-weight: 500;
}

.status-badge {
    background: var(--warning);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
}

.next-steps {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps ol {
    counter-reset: step;
    list-style: none;
}

.next-steps li {
    padding: 0.75rem 0 0.75rem 3rem;
    position: relative;
}

.next-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Content */
.content-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.content-body h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
}

.content-body h3 {
    font-size: 1.375rem;
    margin: 2rem 0 0.75rem;
}

.content-body p {
    margin-bottom: 1.25rem;
}

.content-body ul,
.content-body ol {
    margin: 1rem 0 1.5rem 2rem;
}

.content-body ul {
    list-style: disc;
}

.content-body ol {
    list-style: decimal;
}

.content-body li {
    margin-bottom: 0.5rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.highlight-card {
    text-align: center;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow);
    color: var(--primary);
}

/* Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.fact-card .fact-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.fact-card .fact-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.fact-card .fact-detail {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Pricing */
.pricing-card-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 2.5rem;
    text-align: center;
}

.pricing-header h2 {
    margin-bottom: 1rem;
    color: var(--white);
}

.price-range {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-from {
    font-size: 1rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-to {
    font-size: 1rem;
    opacity: 0.8;
}

.price-note {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.pricing-includes {
    padding: 2rem;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pricing-includes svg {
    color: var(--success);
    flex-shrink: 0;
}

.pricing-card .btn {
    margin: 0 2rem 2rem;
    width: calc(100% - 4rem);
}

/* Shipping */
.shipping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.shipping-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.shipping-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.shipping-card-featured {
    border: 2px solid var(--primary);
}

.shipping-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.shipping-icon {
    width: 72px;
    height: 72px;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.shipping-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.shipping-features {
    text-align: left;
}

.shipping-features li {
    padding: 0.5rem 0;
    border-top: 1px solid var(--gray-100);
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Legal */
.section-legal {
    padding: 3rem 0;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-content ul {
    list-style: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

.alert ul {
    margin: 0.5rem 0 0 1.5rem;
    list-style: disc;
}

/* Crypto Tabs */
.crypto-tabs {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.crypto-tabs-nav {
    display: flex;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-300);
    overflow-x: auto;
}

.crypto-tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
    transition: all 0.2s;
}

.crypto-tab-btn:hover {
    background: var(--gray-200);
}

.crypto-tab-btn.active {
    background: var(--white);
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.crypto-panel {
    display: none;
    padding: 1.5rem;
    background: var(--white);
}

.crypto-panel.active {
    display: block;
}

.crypto-details {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 600px) {
    .crypto-details {
        flex-direction: column;
        text-align: center;
    }
}

.address-box {
    background: var(--gray-100);
    padding: 0.75rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid var(--gray-300);
}

.address-box code {
    word-break: break-all;
    font-size: 0.9rem;
    color: var(--primary);
}

.crypto-note {
    font-size: 0.85rem;
    color: #e63946;
    margin-top: 0.5rem;
}

.crypto-qr img {
    border: 1px solid var(--gray-200);
    padding: 0.5rem;
    border-radius: var(--radius);
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: var(--gray-300);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo .logo-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--gray-400);
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-400);
}

/* Responsive */
@media (max-width: 1024px) {

    .pet-detail-grid,
    .checkout-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .process-steps,
    .values-grid,
    .info-cards-grid,
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shipping-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-right {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-cta {
        flex-direction: column;
    }

    .pet-quick-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo,
    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .stats-grid,
    .process-steps,
    .values-grid,
    .info-cards-grid,
    .highlights-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner,
    .reviews-stats {
        flex-direction: column;
        text-align: center;
    }

    .stats-summary {
        flex-direction: column;
        gap: 1rem;
    }
}