/*
Theme Name: Pup & Flock
Description: Custom WordPress theme for Pup & Flock dog toy company
Version: 1.0
Author: Your Name
*/

/* ===============================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ===============================
   Centralized color management - adjust these values to change colors site-wide
*/
:root {
    /* Primary Brand Colors */
    --primary-color: #343434;          /* Main brand blue */
    --primary-hover: #2a4d7a;          /* Darker blue for hover states */
    --secondary-color: #878787;        /* Light blue for gradients */
    --accent-color: #68557b;           /* Purple for gradients */
    
    /* Text Colors */
    --text-primary: #333;              /* Main text color */
    --text-secondary: #555;            /* Secondary text color */
    --text-muted: #666;                /* Muted text color */
    --text-light: #999;                /* Light text color */
    --text-white: #fff;                /* White text */
    
    /* Background Colors */
    --bg-white: #fff;                  /* White backgrounds */
    --bg-light: #e7e7e7;              /* Light blue background */
    --bg-card: #ffffff;               /* Card backgrounds */
    --bg-overlay: rgba(0,0,0,0.3);    /* Overlay backgrounds */
    
    /* Border Colors */
    --border-light: #eaeaea;          /* Light borders */
    --border-focus: var(--primary-color); /* Focus state borders */
    
    /* Status Colors */
    --color-success: #48bb78;          /* Success green */
    --color-warning: #ed8936;          /* Warning orange */
    --color-error: #e53e3e;           /* Error red */
    --color-info: #4299e1;            /* Info blue */
    
    /* Special Colors */
    --amazon-orange: #ff9500;          /* Amazon button color */
    --amazon-hover: #e68400;          /* Amazon button hover */
}

/* Import SF Pro Rounded fonts (requires font files to be available) */
@font-face {
    font-family: 'SF Pro Rounded';
    src: url('fonts/SFProRounded-Medium.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Rounded';
    src: url('fonts/SFProRounded-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Rounded';
    src: url('fonts/SFProRounded-Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Import Handelson Four font for logo */
@font-face {
    font-family: 'Handelson Four';
    src: url('fonts/Handelson-Four.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 200; /* Medium weight as default */
}

p, li {
    font-weight: 200; /* Ensure all paragraphs and list items use medium weight */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2.8rem;
    font-weight: normal; /* Use the natural weight of Handelson Four */
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Handelson Four', 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 200; /* Medium weight for nav links */
    transition: color 0.3s;
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Remove top margin for home page and inner page heroes to eliminate gap above hero */
.home main,
.page-template-default.page-id-2 main,
main:has(.about-hero-section),
main:has(.faq-hero-section),
main:has(.contact-hero-section) {
    margin-top: 0;
}

/* Add padding to hero to account for fixed header */
.home .hero,
.page-template-default.page-id-2 .hero {
    padding-top: calc(4rem + 80px);
}

.about-hero-section,
.faq-hero-section,
.contact-hero-section {
    padding-top: 80px;
}

.page-content {
    padding: 2rem 0;
}

/* Home Page Styles */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Hero Carousel Styles */
.hero-carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-carousel-slide.active {
    opacity: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900; /* Heavy weight for main hero title */
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-bar {
    background: #ffffff;
    padding: 1.25rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-bar p {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-secondary);
    font-weight: 200;
    line-height: 1.8;
    font-family: 'Handelson Four', 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-bar-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.hero-bar-buttons .btn-secondary {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: transparent;
}

.hero-bar-buttons .btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700; /* Bold weight for buttons */
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    margin: 0.5rem;
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn:hover {
    background: var(--text-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.btn-disabled {
    background: #999;
    color: #fff;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-disabled:hover {
    background: #999;
    transform: none;
}

/* Content Blocks - Alternating Image/Text Sections */
.content-block {
    display: flex;
    min-height: 500px;
}

.content-block-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-block-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-block-image-overlay h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-block-text {
    flex: 1;
    display: flex;
    align-items: stretch;
    padding: 3rem;
    background: var(--bg-white);
}

.content-block-text-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.content-block-text-body {
    display: flex;
    flex-direction: column;
}

.content-block-text-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-block-text-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-block-text-inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content-block-text-inner ul,
.content-block-text-inner ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-block-text-inner li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.content-block-buttons {
    padding-top: 1.5rem;
    text-align: center;
}

/* Reversed layout - image on right, text on left */
.content-block-reverse {
    flex-direction: row-reverse;
}

.content-block-reverse .content-block-text {
    background: var(--bg-light);
}

/* Meet Our Flock Section */
.meet-our-flock {
    padding: 4rem 0;
    background: var(--bg-white);
}

.meet-our-flock .section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

/* Products Display - Static (3 or fewer products) */
.products-static .products-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Products Display - Carousel (4+ products) */
.products-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 30px 60px;
}

.products-wrapper {
    overflow: hidden;
    padding: 15px;
    margin: -15px;
}

.products-carousel .products-grid-home {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.products-carousel .product-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--text-white);
    color: var(--primary-color);
    border: 2px solid var(--text-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-prev {
    left: 0;
    transform: translateY(-50%);
}

.carousel-prev::before {
    content: '‹';
    display: block;
    line-height: 1;
    margin-top: -4px;
}

.carousel-next {
    right: 0;
    transform: translateY(-50%);
}

.carousel-next::before {
    content: '›';
    display: block;
    line-height: 1;
    margin-top: -4px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot:hover {
    background: var(--secondary-color);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Customer Reviews Section */
.customer-reviews {
    padding: 4rem 0;
    background: var(--bg-light);
}

.customer-reviews .section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

/* Reviews Display - Static (3 or fewer reviews) */
.reviews-static .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Reviews Display - Carousel (4+ reviews) */
.reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 30px 60px;
}

.reviews-wrapper {
    overflow: hidden;
    padding: 15px;
    margin: -15px;
}

.reviews-carousel .reviews-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.reviews-carousel .review-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
}

/* Review Card Styles */
.review-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    max-height: 450px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.review-image {
    height: 120px;
    min-height: 120px;
    background: var(--bg-card);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

.review-content {
    padding: 0rem 1.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.review-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    -webkit-box-orient: vertical;
    text-align: justify;
}

.review-text p {
    margin-bottom: 0.5rem;
}

.review-text p:last-child {
    margin-bottom: 0;
}

/* Product Styles */
.product-header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900; /* Heavy weight for page titles */
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    overflow: hidden;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700; /* Bold weight for product names */
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-info p {
    font-weight: 200; /* Medium weight for product descriptions */
}

.product-price {
    font-size: 1.5rem;
    font-weight: 900; /* Heavy weight for prices */
    color: var(--color-error);
    margin: 0.5rem 0 0 0;
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.amazon-btn {
    background: var(--amazon-orange);
    color: var(--text-white);
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    border-radius: 5px;
    font-weight: 700; /* Bold weight for buttons */
    transition: background 0.3s;
    text-decoration: none;
    display: block;
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.amazon-btn:hover {
    background: var(--amazon-hover);
    color: var(--text-white);
}

.amazon-btn-disabled {
    background: #999;
    color: #fff;
    cursor: not-allowed;
    pointer-events: none;
}

.amazon-btn-disabled:hover {
    background: #999;
}

/* Page Styles */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900; /* Heavy weight for page titles */
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    font-weight: 200; /* Medium weight for body text */
}

/* FAQ Styles */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: #f5f5f5;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 700; /* Bold weight for FAQ questions */
    color: #1a1a1a;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-question:hover {
    background: #e0e0e0;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    font-weight: 200; /* Medium weight for FAQ answers */
    color: #1a1a1a;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

/* Contact Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form,
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-weight: 700; /* Bold weight for form headings */
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700; /* Bold weight for form labels */
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 200; /* Medium weight for form inputs */
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Contact Form 7 Styling */
.contact-form-wrapper .wpcf7 {
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-form-wrapper .wpcf7-form p {
    margin-bottom: 1.5rem;
}

.contact-form-wrapper .wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form input[type="url"],
.contact-form-wrapper .wpcf7-form textarea,
.contact-form-wrapper .wpcf7-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 200;
    background: var(--bg-white);
    color: var(--text-primary);
}

.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form textarea:focus,
.contact-form-wrapper .wpcf7-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form-wrapper .wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper .wpcf7-form input[type="submit"] {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-form-wrapper .wpcf7-form input[type="submit"]:hover {
    background: var(--text-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Form 7 validation messages */
.contact-form-wrapper .wpcf7-not-valid-tip {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-acceptance-missing {
    background: #fee;
    border: 2px solid var(--color-error);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    color: var(--color-error);
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 2px solid var(--color-success);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    color: #155724;
}

.contact-form-wrapper .wpcf7-spinner {
    margin-left: 10px;
}

/* Remove Contact Form 7 default margins */
.contact-form-wrapper .wpcf7-form p:last-child {
    margin-bottom: 0;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h2 {
    color: #2c5282;
    margin-bottom: 1.5rem;
    font-weight: 900; /* Heavy weight for section headings */
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9ff;
    border-radius: 10px;
}

.contact-item strong {
    font-weight: 700; /* Bold weight for contact labels */
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #2c5282;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

/* Footer */
footer {
    background: var(--bg-white);
    color: var(--text-primary);
    text-align: left;
    padding: 0;
    font-size: 13px;
    font-weight: 200;
    border-top: 0px solid var(--text-primary);
}

.footer-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 13px;
}

.footer-inner p {
    text-align: left;
    padding-bottom: 13px;
}

.footer-logo img {
    max-height: 125px;
    width: auto;
    display: block;
}

.section-title {
    text-align: center;
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 900; /* Heavy weight for section titles */
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

.text-center {
    text-align: center;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
}

h1 { font-weight: 900; } /* Heavy */
h2 { font-weight: 700; } /* Bold */
h3 { font-weight: 700; } /* Bold */
h4, h5, h6 { font-weight: 700; } /* Bold */

/* WordPress Specific */
.wp-block-group {
    margin-bottom: 2rem;
}

.aligncenter {
    text-align: center;
}

.wp-post-image {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 0;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Stack content blocks vertically on mobile */
    .content-block,
    .content-block-reverse {
        flex-direction: column;
        min-height: auto;
    }

    .content-block-image {
        min-height: 300px;
    }

    .content-block-text {
        padding: 2rem 1.5rem;
    }

    .content-block-image-overlay h2 {
        font-size: 1.8rem;
    }

    .content-block-text-inner h2 {
        font-size: 1.5rem;
    }

    .content-block-text-inner p {
        font-size: 1rem;
    }

    /* Mobile carousel adjustments */
    .products-carousel {
        padding: 0 40px;
    }

    .products-carousel .product-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .products-static .products-grid-home {
        grid-template-columns: 1fr;
    }

    .meet-our-flock .section-title {
        font-size: 2rem;
    }

    /* Mobile reviews adjustments */
    .reviews-carousel {
        padding: 0 40px 30px 40px;
    }

    .reviews-carousel .review-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .reviews-static .reviews-grid {
        grid-template-columns: 1fr;
    }

    .customer-reviews .section-title {
        font-size: 2rem;
    }
}

/* Blog Post Styles */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-info {
    padding: 1.5rem;
}

.post-info h2 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.post-info h2 a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 700;
}

.post-info h2 a:hover {
    color: #2a4d7a;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 200;
}

.post-excerpt {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 200;
}

.read-more {
    color: #2c5282;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2a4d7a;
}

/* Single Post Styles */
.single-post {
    max-width: 800px;
    margin: 0 auto;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-weight: 200;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    color: #2c5282;
    margin: 2rem 0 1rem 0;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #666;
    font-weight: 200;
}

.post-tags a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 700;
}

.post-tags a:hover {
    color: #2a4d7a;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.post-navigation a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border: 2px solid #2c5282;
    border-radius: 5px;
    transition: all 0.3s;
}

.post-navigation a:hover {
    background: #2c5282;
    color: white;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 3rem 0;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: white;
    color: #2c5282;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #2c5282;
    color: white;
    border-color: #2c5282;
}

.pagination .page-numbers.dots {
    border: none;
    background: none;
    color: #666;
}

/* WordPress Admin Bar Adjustments */
.admin-bar header {
    top: 32px; /* Adjust header position when admin bar is present */
}

@media screen and (max-width: 782px) { /* Adjust breakpoint for mobile */
    .admin-bar header {
        top: 46px; /* Adjust for mobile admin bar height */
    }
}

/* ===============================
   PRODUCT PAGE STYLES
   =============================== */

/* Product Card Link Wrapper */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-card-actions {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Product Hero Section */
.product-hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--bg-light);
    overflow: hidden;
}

.product-hero-slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.product-hero-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-hero-placeholder {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.placeholder-content {
    font-size: 2rem;
    color: var(--text-white);
    font-weight: 700;
}

/* Hero Controls */
.product-hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    pointer-events: all;
    background: var(--bg-overlay);
    color: var(--text-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

/* Hero Dots */
.product-hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--text-white);
    transform: scale(1.3);
}

/* Product Title Section */
.product-title-section {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 2px solid var(--border-light);
}

.product-title-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 900;
}

.product-price-large {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

/* Product Meet Section */
.product-meet-section {
    padding: 3rem 0;
    border-bottom: 2px solid var(--border-light);
    text-align: center;
}

.product-meet-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Product Description Section */
.product-description-section {
    padding: 3rem 0;
}

.product-description-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-description-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
}

.product-description-content h3,
.product-description-content h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-description-content p {
    margin-bottom: 0.0rem;
}

.product-description-content ul,
.product-description-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.product-description-content li {
    margin-bottom: 0.0rem;
}

.product-description-content strong {
    font-weight: 700;
}

.product-description-content em {
    font-style: italic;
}

.product-description-content u {
    text-decoration: underline;
}

/* Product Back Link */
.product-back-link {
    padding: 3rem 0;
    text-align: center;
}

.btn-secondary {
    background: var(--text-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Responsive Product Page */
@media (max-width: 768px) {
    .product-hero {
        height: 300px;
    }

    .product-title-section h1 {
        font-size: 2rem;
    }

    .product-price-large {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    .product-meet-section h2,
    .product-description-section h2 {
        font-size: 1.5rem;
    }

    .product-meet-section p,
    .product-description-content {
        font-size: 1rem;
    }

    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .product-hero-controls {
        padding: 0 1rem;
    }
}

/* ===============================
   ABOUT PAGE STYLES
   =============================== */

/* About Hero Section */
.about-hero-section,
.faq-hero-section,
.contact-hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-hero-section .hero-content,
.faq-hero-section .hero-content,
.contact-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero-section h1,
.faq-hero-section h1,
.contact-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Our Story Section */
.our-story-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.our-story-section .section-title {
    margin-bottom: 3rem;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content h2,
.story-content h3,
.story-content h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.story-content ul,
.story-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.story-content li {
    margin-bottom: 0.5rem;
}

.story-button-wrapper {
    text-align: center;
    margin-top: 2rem;
}

/* Story Blocks - Alternating Image/Text Paragraphs */
.story-block {
    display: flex;
    min-height: 500px;
}

.story-block-reverse {
    flex-direction: row-reverse;
}

.story-block-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.story-block-contain .story-block-image {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: var(--bg-white);
}

.story-block-contain.story-block-reverse .story-block-image {
    background-color: var(--bg-light);
}

.story-block-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--bg-white);
}

.story-block-reverse .story-block-text {
    background: var(--bg-light);
}

.story-block-text-inner {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-block-text-inner p {
    margin-bottom: 1.5rem;
}

.story-block-text-inner h2,
.story-block-text-inner h3,
.story-block-text-inner h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 900;
}

.story-block-text-only {
    padding: 2rem 0;
}

.story-block-text-only .container {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
}

.story-block-text-only .container p {
    margin-bottom: 1.5rem;
}

.story-block-text-only .container h2,
.story-block-text-only .container h3,
.story-block-text-only .container h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 900;
}

/* Meet Our Dogs Section */
.meet-dogs-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.meet-dogs-section .section-title {
    margin-bottom: 3rem;
}

.dogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.dog-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.dog-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 0px solid var(--primary-color);
}

.dog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 1rem;
}

.dog-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.dog-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: left;
}

.dog-description p {
    margin-bottom: 1rem;
}

.dog-description h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.dog-description ul,
.dog-description ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.dog-description li {
    margin-bottom: 0.5rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-section h1,
    .faq-hero-section h1,
    .contact-hero-section h1 {
        font-size: 2.5rem;
    }

    .about-hero-section,
    .faq-hero-section,
    .contact-hero-section {
        min-height: 450px;
    }

    .our-story-section,
    .meet-dogs-section {
        padding: 3rem 0;
    }

    .story-block,
    .story-block-reverse {
        flex-direction: column;
    }

    .story-block-image {
        min-height: 280px;
    }

    .story-block-text {
        padding: 2rem 1.5rem;
    }

    .dogs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dog-image {
        width: 150px;
        height: 150px;
    }

    .dog-name {
        font-size: 1.5rem;
    }
}
